[PR #7018] [MERGED] Release v2.11.12 #13197

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/7018
Author: @jeremystretch
Created: 8/23/2021
Status: Merged
Merged: 8/23/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

26 files changed (+246 additions, -40 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/configuration/optional-settings.md (+10 -0)
📝 docs/release-notes/version-2.11.md (+21 -0)
📝 netbox/dcim/choices.py (+5 -0)
📝 netbox/dcim/forms.py (+23 -6)
📝 netbox/extras/context_managers.py (+4 -1)
📝 netbox/extras/forms.py (+5 -1)
📝 netbox/extras/management/commands/webhook_receiver.py (+5 -4)
📝 netbox/extras/models/customfields.py (+22 -9)
📝 netbox/extras/signals.py (+26 -1)
📝 netbox/extras/tests/test_customfields.py (+8 -2)
netbox/extras/tests/test_forms.py (+53 -0)
📝 netbox/ipam/lookups.py (+1 -1)
📝 netbox/ipam/views.py (+3 -1)
📝 netbox/netbox/configuration.example.py (+4 -0)
📝 netbox/netbox/settings.py (+3 -1)
📝 netbox/netbox/views/generic.py (+12 -3)
📝 netbox/project-static/js/forms.js (+4 -0)
📝 netbox/templates/dcim/device_list.html (+1 -1)

...and 6 more files

📄 Description

Enhancements

  • #6748 - Add site group filter to devices list
  • #6790 - Recognize a /32 IPv4 address as a child of a /32 IPv4 prefix
  • #6872 - Add table configuration button to child prefixes view
  • #6929 - Introduce LOGIN_PERSISTENCE configuration parameter to persist user sessions
  • #7011 - Add search field to VM interfaces filter form

Bug Fixes

  • #5968 - Model forms should save empty custom field values as null
  • #6326 - Enable filtering assigned VLANs by group in interface edit form
  • #6686 - Force assignment of null custom field values to objects
  • #6776 - Fix erroneous webhook dispatch on failure to save objects
  • #6974 - Show contextual label for IP address role
  • #7012 - Fix hidden "add components" dropdown on devices list

🔄 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/7018 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/23/2021 **Status:** ✅ Merged **Merged:** 8/23/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`ffae2c5`](https://github.com/netbox-community/netbox/commit/ffae2c5f184f5cc2afc20076148c6933bfd1a528) Fixes #6632 - [`1b12185`](https://github.com/netbox-community/netbox/commit/1b12185a39641e2ae9fb021a779e190d77e8ac9b) PRVB - [`fce4195`](https://github.com/netbox-community/netbox/commit/fce419526daf5c975794e43d7b042bcae00aea9b) Closes #6748: Add site group filter to devices list - [`3feba29`](https://github.com/netbox-community/netbox/commit/3feba2997f989241862c37d353144acd734d2208) Closes #6872: Add table configuration button to child prefixes view - [`5a8cedd`](https://github.com/netbox-community/netbox/commit/5a8cedd63f6ce172d4a7412f953d09c1ef79c2bd) Add hardwired PowerOutlet - [`5b89cdc`](https://github.com/netbox-community/netbox/commit/5b89cdc86894f6db5d55d686324c7bcde9b3a088) Fixes #5968: Model forms should save empty custom field values as null - [`9b0258f`](https://github.com/netbox-community/netbox/commit/9b0258fef4131461a7c82c60c99e5259df9c7b27) Fixes #6686: Force assignment of null custom field values to objects - [`10847e2`](https://github.com/netbox-community/netbox/commit/10847e2956be50ea62f476fa68f979178fae3260) Optimize addition/removal of default custom field values - [`9baebfa`](https://github.com/netbox-community/netbox/commit/9baebfa241aa417b6190a13032a0d0ee5438a154) Merge pull request #6790 from WillIrvine/issue-6632 - [`d850aa0`](https://github.com/netbox-community/netbox/commit/d850aa07733d6042553817c14ebfe6c4acb88dd8) Changelog for #6790 ### 📊 Changes **26 files changed** (+246 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/configuration/optional-settings.md` (+10 -0) 📝 `docs/release-notes/version-2.11.md` (+21 -0) 📝 `netbox/dcim/choices.py` (+5 -0) 📝 `netbox/dcim/forms.py` (+23 -6) 📝 `netbox/extras/context_managers.py` (+4 -1) 📝 `netbox/extras/forms.py` (+5 -1) 📝 `netbox/extras/management/commands/webhook_receiver.py` (+5 -4) 📝 `netbox/extras/models/customfields.py` (+22 -9) 📝 `netbox/extras/signals.py` (+26 -1) 📝 `netbox/extras/tests/test_customfields.py` (+8 -2) ➕ `netbox/extras/tests/test_forms.py` (+53 -0) 📝 `netbox/ipam/lookups.py` (+1 -1) 📝 `netbox/ipam/views.py` (+3 -1) 📝 `netbox/netbox/configuration.example.py` (+4 -0) 📝 `netbox/netbox/settings.py` (+3 -1) 📝 `netbox/netbox/views/generic.py` (+12 -3) 📝 `netbox/project-static/js/forms.js` (+4 -0) 📝 `netbox/templates/dcim/device_list.html` (+1 -1) _...and 6 more files_ </details> ### 📄 Description ### Enhancements * [#6748](https://github.com/netbox-community/netbox/issues/6748) - Add site group filter to devices list * [#6790](https://github.com/netbox-community/netbox/issues/6790) - Recognize a /32 IPv4 address as a child of a /32 IPv4 prefix * [#6872](https://github.com/netbox-community/netbox/issues/6872) - Add table configuration button to child prefixes view * [#6929](https://github.com/netbox-community/netbox/issues/6929) - Introduce `LOGIN_PERSISTENCE` configuration parameter to persist user sessions * [#7011](https://github.com/netbox-community/netbox/issues/7011) - Add search field to VM interfaces filter form ### Bug Fixes * [#5968](https://github.com/netbox-community/netbox/issues/5968) - Model forms should save empty custom field values as null * [#6326](https://github.com/netbox-community/netbox/issues/6326) - Enable filtering assigned VLANs by group in interface edit form * [#6686](https://github.com/netbox-community/netbox/issues/6686) - Force assignment of null custom field values to objects * [#6776](https://github.com/netbox-community/netbox/issues/6776) - Fix erroneous webhook dispatch on failure to save objects * [#6974](https://github.com/netbox-community/netbox/issues/6974) - Show contextual label for IP address role * [#7012](https://github.com/netbox-community/netbox/issues/7012) - Fix hidden "add components" dropdown on devices list --- <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:56 +01:00
adam closed this issue 2025-12-29 22:25:56 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13197