Releases: ArnesSI/netbox-inventory
v2.1.0
v2.0.2
What's Changed
- Add id to search for asset attributes by @cs-1 in #172
- Fix typo in manufacturer asset modules URL by @alehaa in #171
- Split reassign form in fieldsets by @alehaa in #180
- Add current location asset property by @alehaa in #159
- Add device and module type columns by @alehaa in #161
- additional filtering on assets by @matejv in #181
- asset general search now matches tenant and owner names (icontains) by @matejv in #182
- remove management command to check unique asset tag values by @matejv in #183
- remove template extensons for device & module types by @matejv in #184
New Contributors
Full Changelog: v2.0.1...v2.0.2
v2.0.1
v2.0.0
Netbox 4
This is the first release of netbox-inventory compatible with netbox 4.0.
Important note to read before upgrading
This version changes the way asset tag unique values are enforced (see #149). If you are currently running netbox-inventory v1.6.0 please run check_asset_tags
management commands before upgrading and follow instructions. The command will check your asset tags and list assets that need your attention before upgrading to netbox-inventory 2.0. If you are on older netbox-inventory version, please upgrade to v1.6.0 first and run the command as well.
Running the command:
$ source /opt/netbox/venv/bin/activate
(venv) $ cd /opt/netbox/netbox/
(venv) $ python3 manage.py check_asset_tags
What's Changed
- Arrange menu items by @alehaa in #158
- Netbox 4 compatibility by @matejv in #165
- add unique constraint on asset_tag if asset has no owner by @matejv in #157
New Contributors
Full Changelog: v1.6.0...v2.0.0
v1.6.0
What's Changed
- date fields on bulk edit forms use correct widget by @matejv in #146
- add purchase status field by @matejv in #147
- Update models.py by @uck9 in #151
- replace GenericRelation fields with appropriate model mixins by @matejv in #155
New Contributors
(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 #149
Full Changelog: v1.5.2...v1.6.0
v1.5.2
What's Changed
- Remove CF from assign/reassign forms by @Kani999 in #131
- Add graphql support by @joshuajcoronado in #139
- validate that warranty start and end dates make sense by @matejv in #140
- fix assigning asset to inventory item when inventory item type model … by @matejv in #141
New Contributors
- @Kani999 made their first contribution in #131
- @joshuajcoronado made their first contribution in #139
Full Changelog: v1.5.1...v1.5.2