Skip to content

Release v2.11.7 #6616

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a665b79
#6455 - initial
Jun 4, 2021
7444110
PRVB
jeremystretch Jun 4, 2021
a224e5d
Closes #6493: show ObjectChange diff for non-atomic changes
Jun 5, 2021
cb43926
Fixes #6553: ProviderNetwork search should match on name
jeremystretch Jun 8, 2021
6ec296f
Fixes #6563: Fix filtering by location for cable connection forms
jeremystretch Jun 8, 2021
b3cde51
Fixes #6562: Disable ordering of secrets by assigned object
jeremystretch Jun 8, 2021
6523334
Merge pull request #6545 from crafty-ua/Add_ipv4_32_and_ipv6_128_pref…
jeremystretch Jun 8, 2021
6195fc0
Merge pull request #6552 from drmsoffall/6493-diff-legacy-changes
jeremystretch Jun 8, 2021
79c0644
Changelog for #6455, 6493
jeremystretch Jun 8, 2021
809d9e4
Fixes #6584: Fix ordering of nested inventory items
jeremystretch Jun 10, 2021
7e48196
Optimize MPTTColumn rendering
jeremystretch Jun 14, 2021
54ccc70
Adopt IRM terminology
jeremystretch Jun 14, 2021
f56a470
Fixes #6602: Fix deletion of devices with cables attached
jeremystretch Jun 14, 2021
9f2c491
Update NetDev Slack links
jeremystretch Jun 14, 2021
c8a8bfd
custom fields documentation missing word "more"
bluikko Jun 15, 2021
52edeb4
Merge pull request #6604 from bluikko/patch-2
jeremystretch Jun 15, 2021
e68be6f
Add Equinix Metal as a sponsor
jeremystretch Jun 15, 2021
857c70e
Closes #6564: Add N connector type for pass-through ports
jeremystretch Jun 16, 2021
6a6b023
Closes #6589: Standardize breadcrumb navigation for power panels and …
jeremystretch Jun 16, 2021
685e0ce
Closes #6588: Add support for webp files as front/rear device type im…
jeremystretch Jun 16, 2021
2bf20fa
Release NetBox v2.11.7
jeremystretch Jun 16, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes #6584: Fix ordering of nested inventory items
  • Loading branch information
jeremystretch committed Jun 10, 2021
commit 809d9e4697bb8a94192ba73dbc2421b7ea9fda1b
1 change: 1 addition & 0 deletions docs/release-notes/version-2.11.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* [#6553](https://github.com/netbox-community/netbox/issues/6553) - ProviderNetwork search should match on name
* [#6562](https://github.com/netbox-community/netbox/issues/6562) - Disable ordering of secrets by assigned object
* [#6563](https://github.com/netbox-community/netbox/issues/6563) - Fix filtering by location for cable connection forms
* [#6584](https://github.com/netbox-community/netbox/issues/6584) - Fix ordering of nested inventory items

---

Expand Down
4 changes: 2 additions & 2 deletions netbox/dcim/tables/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ class InventoryItemTable(DeviceComponentTable):
)
cable = None # Override DeviceComponentTable

class Meta(DeviceComponentTable.Meta):
class Meta(BaseTable.Meta):
model = InventoryItem
fields = (
'pk', 'device', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag', 'description',
Expand All @@ -715,7 +715,7 @@ class DeviceInventoryItemTable(InventoryItemTable):
buttons=('edit', 'delete')
)

class Meta(DeviceComponentTable.Meta):
class Meta(BaseTable.Meta):
model = InventoryItem
fields = (
'pk', 'name', 'label', 'manufacturer', 'part_id', 'serial', 'asset_tag', 'description', 'discovered',
Expand Down