2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-09-13 14:41:33 +00:00

Merge branch '1.0.0-release' of github.com:inventree/inventree-website into 1.0.0-release

This commit is contained in:
Oliver Walters
2025-09-12 10:37:46 +10:00

View File

@@ -125,7 +125,7 @@ We have refactored our authentication framework significantly, both to support t
These changes should not affect most users, as we have endeavored to maintain compatibility with existing authentication methods. However, users who have implemented custom authentication mechanisms may need to review their code to ensure compatibility with the new framework.
In particular we have updated our [django-allauth framework](https://github.com/inventree/InvenTree/pull/6293) to align with changes to that library.
In particular we have updated our usage of [django-allauth framework](https://github.com/inventree/InvenTree/pull/6293) to align with changes to that library. Due to major improvements in upstream allauth we now mostly rely on build-in mechanisms - especially for multi factor.
### Bulk Update Mixin
@@ -164,7 +164,9 @@ Refer to [PR #9574](https://github.com/inventree/InvenTree/pull/9574) for more i
### Remove django-import-export
In [#8685](https://github.com/inventree/InvenTree/pull/8685) we removed the [django-import-export](https://django-import-export.readthedocs.io/en/latest/) framework, which is what was previously used for data import and export. This has been replaced with a [custom API driven solution](https://github.com/inventree/InvenTree/issues/8686) which is more flexible and easier to use. Our new framework runs in the background worker, allowing for processing of large datasets without blocking the user interface (or causing the web server to timeout).
In [#8685](https://github.com/inventree/InvenTree/pull/8685) we removed the [django-import-export](https://django-import-export.readthedocs.io/en/latest/) framework, which is what was previously used for data import and export. This has been replaced with a [custom API driven solution](https://github.com/inventree/InvenTree/issues/8686) which fits our data modelling better is more flexible and easier to use.
Our new framework runs in the background worker, allowing for processing of large datasets without blocking the user interface (or causing the web server to timeout). This enhancement only works with backgroud workers configured, there is a fallback.
### Stock Return
@@ -182,7 +184,7 @@ There are a number of new features and improvements in this release, many of whi
We have made significant performance improvements across the board, particularly in areas such as data loading and rendering. The new UI framework is designed to be more efficient, which should result in a smoother experience for users, especially when dealing with large datasets.
The API has also been optimized to reduce response times and improve overall performance.
The API has also been optimized to reduce response times and improve overall performance. This is an ongoing effort.
### Dashboard
@@ -200,7 +202,7 @@ We have [reimplemented calendar views](https://github.com/inventree/InvenTree/pu
### Email Enhancements
[PR #9608](https://github.com/inventree/InvenTree/pull/9608) enhances email support capabilities, including plugin support for sending and receiving emails.
[PR #9608](https://github.com/inventree/InvenTree/pull/9608) enhances email support capabilities, including plugin support for sending and receiving emails. A number of modern ESP providers can now be used out of the box, support for SMTP continues.
### Order Start Dates