[PR #6230] [MERGED] Release v2.11.1 #13107

Closed
opened 2025-12-29 22:25:27 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6230
Author: @jeremystretch
Created: 4/21/2021
Status: Merged
Merged: 4/21/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 89350a8 PRVB
  • 6bd4b3c Fixes #6184: Fix parent object table column in prefix IP addresses list
  • 97c087e Fixes #6196: Fix object list display for users with read-only permissions
  • a2d1614 Fixes #6188: Support custom field filtering for regions, site groups, and locations
  • 620d222 Closes #6189: Add ability to search for locations by name or description
  • 7cf9e20 Fixes #6215: Restore tenancy section in virtual machine form
  • 497e50c Closes #6190: Allow filtering devices with no location assigned
  • 9ed7640 Closes #6179: Enable natural ordering for virtual machines
  • 88ffc9b Update GitHub issue templates
  • 4e405ce Closes #6210: Include child locations on location view

📊 Changes

17 files changed (+137 additions, -50 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/documentation_change.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/housekeeping.yaml (+1 -1)
📝 docs/release-notes/version-2.11.md (+19 -0)
📝 netbox/dcim/filters.py (+8 -0)
📝 netbox/dcim/forms.py (+12 -6)
📝 netbox/dcim/tables/devices.py (+9 -0)
📝 netbox/dcim/views.py (+31 -26)
📝 netbox/ipam/tables.py (+2 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/location.html (+8 -8)
📝 netbox/templates/generic/object_list.html (+3 -1)
📝 netbox/virtualization/forms.py (+1 -0)
netbox/virtualization/migrations/0023_virtualmachine_natural_ordering.py (+32 -0)
📝 netbox/virtualization/models.py (+6 -1)
📝 requirements.txt (+1 -1)

📄 Description

Enhancements

  • #6161 - Enable ordering of device component tables
  • #6179 - Enable natural ordering for virtual machines
  • #6189 - Add ability to search for locations by name or description
  • #6190 - Allow filtering devices with no location assigned
  • #6210 - Include child locations on location view

Bug Fixes

  • #6184 - Fix parent object table column in prefix IP addresses list
  • #6188 - Support custom field filtering for regions, site groups, and locations
  • #6196 - Fix object list display for users with read-only permissions
  • #6215 - Restore tenancy section in virtual machine form

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/6230 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/21/2021 **Status:** ✅ Merged **Merged:** 4/21/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`89350a8`](https://github.com/netbox-community/netbox/commit/89350a80ada72a9b85fa8d8480124527e54c935e) PRVB - [`6bd4b3c`](https://github.com/netbox-community/netbox/commit/6bd4b3c167cf51639ede5574e72d910aa7a2ff13) Fixes #6184: Fix parent object table column in prefix IP addresses list - [`97c087e`](https://github.com/netbox-community/netbox/commit/97c087ef5f6cf16ee868bb6d0038636175965649) Fixes #6196: Fix object list display for users with read-only permissions - [`a2d1614`](https://github.com/netbox-community/netbox/commit/a2d16143e3c232b9c219e410ffd1213169796608) Fixes #6188: Support custom field filtering for regions, site groups, and locations - [`620d222`](https://github.com/netbox-community/netbox/commit/620d222f981db6cc656dcc62e0610f811e280a19) Closes #6189: Add ability to search for locations by name or description - [`7cf9e20`](https://github.com/netbox-community/netbox/commit/7cf9e202a3c4aba328cbe98fdf02c819243569cc) Fixes #6215: Restore tenancy section in virtual machine form - [`497e50c`](https://github.com/netbox-community/netbox/commit/497e50c55974b48a24fd3f0b62e63cba36763a88) Closes #6190: Allow filtering devices with no location assigned - [`9ed7640`](https://github.com/netbox-community/netbox/commit/9ed76400def8e963c96496e91ee53914bab2c31e) Closes #6179: Enable natural ordering for virtual machines - [`88ffc9b`](https://github.com/netbox-community/netbox/commit/88ffc9b1450a16c26f0d03d54fbd6600ea1de461) Update GitHub issue templates - [`4e405ce`](https://github.com/netbox-community/netbox/commit/4e405ce5303f24c8679b93e7b49c4f3796f47f8f) Closes #6210: Include child locations on location view ### 📊 Changes **17 files changed** (+137 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/documentation_change.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/housekeeping.yaml` (+1 -1) 📝 `docs/release-notes/version-2.11.md` (+19 -0) 📝 `netbox/dcim/filters.py` (+8 -0) 📝 `netbox/dcim/forms.py` (+12 -6) 📝 `netbox/dcim/tables/devices.py` (+9 -0) 📝 `netbox/dcim/views.py` (+31 -26) 📝 `netbox/ipam/tables.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/location.html` (+8 -8) 📝 `netbox/templates/generic/object_list.html` (+3 -1) 📝 `netbox/virtualization/forms.py` (+1 -0) ➕ `netbox/virtualization/migrations/0023_virtualmachine_natural_ordering.py` (+32 -0) 📝 `netbox/virtualization/models.py` (+6 -1) 📝 `requirements.txt` (+1 -1) </details> ### 📄 Description ### Enhancements * [#6161](https://github.com/netbox-community/netbox/issues/6161) - Enable ordering of device component tables * [#6179](https://github.com/netbox-community/netbox/issues/6179) - Enable natural ordering for virtual machines * [#6189](https://github.com/netbox-community/netbox/issues/6189) - Add ability to search for locations by name or description * [#6190](https://github.com/netbox-community/netbox/issues/6190) - Allow filtering devices with no location assigned * [#6210](https://github.com/netbox-community/netbox/issues/6210) - Include child locations on location view ### Bug Fixes * [#6184](https://github.com/netbox-community/netbox/issues/6184) - Fix parent object table column in prefix IP addresses list * [#6188](https://github.com/netbox-community/netbox/issues/6188) - Support custom field filtering for regions, site groups, and locations * [#6196](https://github.com/netbox-community/netbox/issues/6196) - Fix object list display for users with read-only permissions * [#6215](https://github.com/netbox-community/netbox/issues/6215) - Restore tenancy section in virtual machine form --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:25:27 +01:00
adam closed this issue 2025-12-29 22:25:27 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13107