2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-07-29 08:41:45 +00:00

Merge branch 'master' of github.com:inventree/inventree-docs into manufacturer_part

This commit is contained in:
eeintech
2021-04-14 09:49:57 -04:00
25 changed files with 981 additions and 323 deletions

View File

@@ -4,7 +4,7 @@ title: Release 0.1.8
## Release 0.1.8
[Release 0.1.8](https://github.com/inventree/InvenTree/releases/tag/0.1.8) (WIP) provides a number of major new features and improvements, as well as some crucial bug fixes:
[Release 0.1.8](https://github.com/inventree/InvenTree/releases/tag/0.1.8) provides a number of major new features and improvements, as well as some crucial bug fixes:
## New Features
@@ -46,4 +46,7 @@ manufacturer data directly in purchase orders.
| --- | --- |
| [#1407](https://github.com/inventree/InvenTree/pull/1407) | Fixes unncessary column requirement when importing BOM |
| [#1430](https://github.com/inventree/InvenTree/pull/1430) | Fixes error thrown when migrating from very old data set |
| [#1441](https://github.com/inventree/InvenTree/pull/1441) | Fixes template rendering error if git not available on system path |
| [#1446](https://github.com/inventree/InvenTree/pull/1446) | Fixes bug exporting BOM to YAML format |
| [#1449](https://github.com/inventree/InvenTree/pull/1449) | Fixes bug which prevented transfer of serialized stock items |

34
docs/releases/0.2.0.md Normal file
View File

@@ -0,0 +1,34 @@
---
title: Release 0.2.0
---
## Release 0.2.0
[Release 0.2.0](https://github.com/inventree/InvenTree/releases/tag/0.2.0) introduces some major new features!
## Background Worker
This release adds a "background worker" - a separately managed process which allows long-running or asynchronous tasks to be handled separately to web server requests.
This feature is critical for the InvenTree development path, allowing (in future releases) for complex tasks to be handled, such as email support, automatic report generation, and integration with third party services.
For more information on the background worker, refer to the [background tasks documentation](../../admin/tasks).
!!! info "Installation"
Instructions for managing the background worker process are included in the [installation guide](../../start/install).
!!! warning "Upgrading"
If you are upgrading your InvenTree installation from an older version, you will need to ensure that you are also now running the background worker process!
## Docker
The other major feature that `0.2.0` introduces is an officical docker installation guide.
The addition of the *Background Worker* process significantly increases the complexity of an InvenTree installation. Further, a robust *production grade* server requires a lot of work.
To simplify this, an official InvenTree docker image is available on [DockerHub](https://hub.docker.com/r/inventree/inventree).
!!! success "Docker Is the Way"
Docker is now the recommended way to install InvenTree
Refer to the [docker setup guide](../../start/docker) for further information!

22
docs/releases/0.2.1.md Normal file
View File

@@ -0,0 +1,22 @@
---
title: Release 0.2.1
---
## Release 0.2.1
[Release 0.2.1](https://github.com/inventree/InvenTree/releases/tag/0.2.1) provides a number of major new features and improvements, as well as some crucial bug fixes:
## New Features
### Email Support
[#1304](https://github.com/inventree/InvenTree/pull/1304) adds support for email support. Initially, this is used for sending users emails to perform a password reset
!!! warning "Configuration Required"
Refer to the [email configuration options](../../start/config/#email-settings).
## Major Bug Fixes
| PR | Description |
| --- | --- |
| [#1453](https://github.com/inventree/InvenTree/pull/1453) | Adds *detail* API endpoint for the `PartParameter` model, which was previously missing. |

View File

@@ -8,7 +8,9 @@ For information on the latest and greatest InvenTree features, refer to the rele
| Release | Date |
| ------- | ---- |
| [0.1.8](../0.1.8) | *In Development* |
| [0.2.1](../0.2.1) | *In Development* |
| [0.2.0](../0.2.0) | April 2021 |
| [0.1.8](../0.1.8) | April 2021 |
| [0.1.7](../0.1.7) | March 2021 |
| [0.1.6](../0.1.6) | February 2021 |
| [0.1.5](../0.1.5) | January 2021 |