What's Changed
* date fields on bulk edit forms use correct widget by matejv in https://github.com/ArnesSI/netbox-inventory/pull/146
* add purchase status field by matejv in https://github.com/ArnesSI/netbox-inventory/pull/147
* Update models.py by uck9 in https://github.com/ArnesSI/netbox-inventory/pull/151
* replace GenericRelation fields with appropriate model mixins by matejv in https://github.com/ArnesSI/netbox-inventory/pull/155
New Contributors
* uck9 made their first contribution in https://github.com/ArnesSI/netbox-inventory/pull/151
(Important!) Asset tag unique values
The next major release of netbox inventory (v2.0.0, sometime after netbox v4 releases) will change how asset tag values are checked for uniqueness. Currently assets that have no owner set can have duplicate asset tag values. This is considered a bug.
In the next major release this will change so assets hat have no owner will have to have unique asset tag values.
For assets that don't have asset tag set, nothing will change. For assets that have owner set, nothing will change - asset tags have to be unique per owner.
This release (v1.6.0) adds a Django management command that will check your assets and list those that need your attention. To use it run:
$ source /opt/netbox/venv/bin/activate
(venv) $ cd /opt/netbox/netbox/
(venv) $ python3 manage.py check_asset_tags
To leave your feedback regarding this change, please use issue https://github.com/ArnesSI/netbox-inventory/issues/149
**Full Changelog**: https://github.com/ArnesSI/netbox-inventory/compare/v1.5.2...v1.6.0