2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-10-14 21:22:20 +00:00

add-minimum-stock-to-brief-part-serializer (#10497)

* add-minimum-stock-to-brief-part-serializer

* Remove unnecesary lines

* Update version.py

* Update version.py

* Update api_version.py
This commit is contained in:
Neil Beukes
2025-10-07 08:02:32 -04:00
committed by GitHub
parent 835e9e2556
commit fff0d67791
2 changed files with 5 additions and 1 deletions

View File

@@ -1,12 +1,15 @@
"""InvenTree API version information."""
# InvenTree API version
INVENTREE_API_VERSION = 403
INVENTREE_API_VERSION = 404
"""Increment this API version number whenever there is a significant change to the API that any clients need to know about."""
INVENTREE_API_TEXT = """
v404 -> 2025-10-06: https://github.com/inventree/InvenTree/pull/10497
- Add minimum_stock to PartBrief api response
v403 -> 2025-10-06: https://github.com/inventree/InvenTree/pull/10499
- Adds ability to partially scrap a build output
- Adds ability to partially complete a build output

View File

@@ -336,6 +336,7 @@ class PartBriefSerializer(InvenTree.serializers.InvenTreeModelSerializer):
'locked',
'assembly',
'component',
'minimum_stock',
'is_template',
'purchaseable',
'salable',