From 293d6f005b67c4bd4cb3bfeda31c95b5d257b439 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 12 Feb 2021 19:58:44 +1100 Subject: [PATCH 1/5] Update 0.1.6.md --- docs/releases/0.1.6.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/releases/0.1.6.md b/docs/releases/0.1.6.md index a832f1b..60b06e3 100644 --- a/docs/releases/0.1.6.md +++ b/docs/releases/0.1.6.md @@ -29,3 +29,4 @@ Refer to the [report documentation](../../report/report) for further information | --- | --- | | [#1258](https://github.com/inventree/InvenTree/pull/1258) | Fixes bug causing part images to sometimes be deleted | | [#1267](https://github.com/inventree/InvenTree/pull/1267) | Fixes issue with legacy migration file when upgrading from very old installation | +| [#1288](https://github.com/inventree/InvenTree/pull/1288) | Fixes bug which caused errors with table search | From f56feba0b882c563bb78fdc4761791ce80c50453 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 12 Feb 2021 20:01:58 +1100 Subject: [PATCH 2/5] Update 0.1.6.md --- docs/releases/0.1.6.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/releases/0.1.6.md b/docs/releases/0.1.6.md index 60b06e3..5c631cc 100644 --- a/docs/releases/0.1.6.md +++ b/docs/releases/0.1.6.md @@ -30,3 +30,4 @@ Refer to the [report documentation](../../report/report) for further information | [#1258](https://github.com/inventree/InvenTree/pull/1258) | Fixes bug causing part images to sometimes be deleted | | [#1267](https://github.com/inventree/InvenTree/pull/1267) | Fixes issue with legacy migration file when upgrading from very old installation | | [#1288](https://github.com/inventree/InvenTree/pull/1288) | Fixes bug which caused errors with table search | +| [#1289](https://github.com/inventree/InvenTree/pull/1289) | Fixes display bug when a part "units" field is empty | From c31afca977587742ee9b290f4d64357896daddc5 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 12 Feb 2021 20:14:00 +1100 Subject: [PATCH 3/5] Update 0.1.6.md --- docs/releases/0.1.6.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/releases/0.1.6.md b/docs/releases/0.1.6.md index 5c631cc..2b391ba 100644 --- a/docs/releases/0.1.6.md +++ b/docs/releases/0.1.6.md @@ -31,3 +31,4 @@ Refer to the [report documentation](../../report/report) for further information | [#1267](https://github.com/inventree/InvenTree/pull/1267) | Fixes issue with legacy migration file when upgrading from very old installation | | [#1288](https://github.com/inventree/InvenTree/pull/1288) | Fixes bug which caused errors with table search | | [#1289](https://github.com/inventree/InvenTree/pull/1289) | Fixes display bug when a part "units" field is empty | +| [#1290](https://github.com/inventree/InvenTree/pull/1290) | Fixes CSS issues with long error messages in modal forms | From 08fdc167f92e29109a2c53925971c7011ad48b42 Mon Sep 17 00:00:00 2001 From: rrakso Date: Fri, 12 Feb 2021 11:13:20 +0100 Subject: [PATCH 4/5] Typo fixed --- docs/extend/python.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/extend/python.md b/docs/extend/python.md index a2bf642..1eeea89 100644 --- a/docs/extend/python.md +++ b/docs/extend/python.md @@ -94,7 +94,7 @@ from inventree.stock import StockItem furniture = PartCategory.create(api, { 'name': 'Furniture', 'description': 'Chairs, tables, etc', - parent, 7 + 'parent': 7, }) ## Create a new Part @@ -113,7 +113,7 @@ item = StockItem.create(api, { 'part': couch.pk, 'quantity': 5, 'notes': 'A stack of couches', - location: 10, ## PK of a StockLocation already in the database... + 'location': 10, ## PK of a StockLocation already in the database... }) -``` \ No newline at end of file +``` From 4d16de763c6dccf785d228c2ae33dac58026a15d Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 13 Feb 2021 12:23:27 +1100 Subject: [PATCH 5/5] Update 0.1.6.md --- docs/releases/0.1.6.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/releases/0.1.6.md b/docs/releases/0.1.6.md index 2b391ba..72b83df 100644 --- a/docs/releases/0.1.6.md +++ b/docs/releases/0.1.6.md @@ -32,3 +32,4 @@ Refer to the [report documentation](../../report/report) for further information | [#1288](https://github.com/inventree/InvenTree/pull/1288) | Fixes bug which caused errors with table search | | [#1289](https://github.com/inventree/InvenTree/pull/1289) | Fixes display bug when a part "units" field is empty | | [#1290](https://github.com/inventree/InvenTree/pull/1290) | Fixes CSS issues with long error messages in modal forms | +| [#1294](https://github.com/inventree/InvenTree/pull/1294) | Allows access to static files without being logged in |