[PR #6480] [MERGED] Release v2.11.4 #13133

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6480
Author: @jeremystretch
Created: 5/25/2021
Status: Merged
Merged: 5/25/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 4dff20c PRVB
  • f74b47c Typo in powerfeed.md
  • 7dc71f9 Merge pull request #6378 from bluikko/patch-1
  • 0fec03a Closes #6393: Add description filter for IP addresses
  • 72d41ea Fixes #6376: Fix assignment of VLAN groups to clusters, cluster groups via REST API
  • 834b233 Fixes #6398: Avoid exception when deleting device connected to self via circuit
  • 1382310 Closes #6400: Add cyan color choice for plugin buttons
  • dc57332 Update views.py
  • 8823aeb Typo fix
  • fedf745 Merge pull request #6428 from shinsterneck/patch-1

📊 Changes

40 files changed (+238 additions, -95 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+4 -3)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 README.md (+2 -0)
📝 docs/additional-features/caching.md (+1 -1)
📝 docs/models/dcim/powerfeed.md (+1 -1)
📝 docs/release-notes/version-2.11.md (+23 -0)
📝 netbox/circuits/models.py (+3 -3)
📝 netbox/dcim/forms.py (+14 -10)
📝 netbox/dcim/models/cables.py (+1 -1)
📝 netbox/dcim/models/device_components.py (+9 -9)
📝 netbox/dcim/models/devices.py (+19 -3)
📝 netbox/dcim/models/power.py (+2 -2)
📝 netbox/dcim/models/racks.py (+2 -2)
📝 netbox/dcim/models/sites.py (+1 -1)
📝 netbox/dcim/signals.py (+3 -2)
📝 netbox/extras/constants.py (+1 -0)
📝 netbox/extras/filtersets.py (+33 -1)
📝 netbox/extras/forms.py (+8 -2)
📝 netbox/extras/plugins/views.py (+1 -1)
📝 netbox/extras/tests/test_filtersets.py (+16 -0)

...and 20 more files

📄 Description

Enhancements

  • #5121 - Add content type filters for tags
  • #6358 - Add search field for VLAN groups
  • #6393 - Add description filter for IP addresses
  • #6400 - Add cyan color choice for plugin buttons
  • #6422 - Enable filtering users by group under admin UI
  • #6441 - Improve UI paginator to optimize page object count

Bug Fixes

  • #6376 - Fix assignment of VLAN groups to clusters, cluster groups via REST API
  • #6398 - Avoid exception when deleting device connected to self via circuit
  • #6426 - Allow assigning virtual chassis member interfaces to LAG on VC master
  • #6438 - Fix missing descriptions and label for device type imports and exports
  • #6465 - Fix typo in installed plugins REST API endpoint
  • #6467 - Fix access to metrics on custom BASE_PATH when login is required
  • #6468 - Disable ordering VLAN groups list by scope object

🔄 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/6480 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 5/25/2021 **Status:** ✅ Merged **Merged:** 5/25/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`4dff20c`](https://github.com/netbox-community/netbox/commit/4dff20cc8cf5133536960b90ade05d005d2ca1d7) PRVB - [`f74b47c`](https://github.com/netbox-community/netbox/commit/f74b47ca1660b1829823605859f15ae916b18ac5) Typo in powerfeed.md - [`7dc71f9`](https://github.com/netbox-community/netbox/commit/7dc71f92d0ff59a49ecac0fc0ef1e67cd8db32f1) Merge pull request #6378 from bluikko/patch-1 - [`0fec03a`](https://github.com/netbox-community/netbox/commit/0fec03ad3f4f926cf923a5c5467113b4030bdb30) Closes #6393: Add description filter for IP addresses - [`72d41ea`](https://github.com/netbox-community/netbox/commit/72d41eac859887f50dd5c18ef078523c29931999) Fixes #6376: Fix assignment of VLAN groups to clusters, cluster groups via REST API - [`834b233`](https://github.com/netbox-community/netbox/commit/834b233c305ca3b268a7549b741d0936ef57cadb) Fixes #6398: Avoid exception when deleting device connected to self via circuit - [`1382310`](https://github.com/netbox-community/netbox/commit/138231059bd3d690e4bc259d4f7b0d50c02ad4fe) Closes #6400: Add cyan color choice for plugin buttons - [`dc57332`](https://github.com/netbox-community/netbox/commit/dc573329880f35e349ff98d2749caa824e4a51f3) Update views.py - [`8823aeb`](https://github.com/netbox-community/netbox/commit/8823aeb9d7d5dc9cfbcf563459569722860155db) Typo fix - [`fedf745`](https://github.com/netbox-community/netbox/commit/fedf745d253b099a3a0105ec855fa4884917fc40) Merge pull request #6428 from shinsterneck/patch-1 ### 📊 Changes **40 files changed** (+238 additions, -95 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+4 -3) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `README.md` (+2 -0) 📝 `docs/additional-features/caching.md` (+1 -1) 📝 `docs/models/dcim/powerfeed.md` (+1 -1) 📝 `docs/release-notes/version-2.11.md` (+23 -0) 📝 `netbox/circuits/models.py` (+3 -3) 📝 `netbox/dcim/forms.py` (+14 -10) 📝 `netbox/dcim/models/cables.py` (+1 -1) 📝 `netbox/dcim/models/device_components.py` (+9 -9) 📝 `netbox/dcim/models/devices.py` (+19 -3) 📝 `netbox/dcim/models/power.py` (+2 -2) 📝 `netbox/dcim/models/racks.py` (+2 -2) 📝 `netbox/dcim/models/sites.py` (+1 -1) 📝 `netbox/dcim/signals.py` (+3 -2) 📝 `netbox/extras/constants.py` (+1 -0) 📝 `netbox/extras/filtersets.py` (+33 -1) 📝 `netbox/extras/forms.py` (+8 -2) 📝 `netbox/extras/plugins/views.py` (+1 -1) 📝 `netbox/extras/tests/test_filtersets.py` (+16 -0) _...and 20 more files_ </details> ### 📄 Description ### Enhancements * [#5121](https://github.com/netbox-community/netbox/issues/5121) - Add content type filters for tags * [#6358](https://github.com/netbox-community/netbox/issues/6358) - Add search field for VLAN groups * [#6393](https://github.com/netbox-community/netbox/issues/6393) - Add `description` filter for IP addresses * [#6400](https://github.com/netbox-community/netbox/issues/6400) - Add cyan color choice for plugin buttons * [#6422](https://github.com/netbox-community/netbox/issues/6422) - Enable filtering users by group under admin UI * [#6441](https://github.com/netbox-community/netbox/issues/6441) - Improve UI paginator to optimize page object count ### Bug Fixes * [#6376](https://github.com/netbox-community/netbox/issues/6376) - Fix assignment of VLAN groups to clusters, cluster groups via REST API * [#6398](https://github.com/netbox-community/netbox/issues/6398) - Avoid exception when deleting device connected to self via circuit * [#6426](https://github.com/netbox-community/netbox/issues/6426) - Allow assigning virtual chassis member interfaces to LAG on VC master * [#6438](https://github.com/netbox-community/netbox/issues/6438) - Fix missing descriptions and label for device type imports and exports * [#6465](https://github.com/netbox-community/netbox/issues/6465) - Fix typo in installed plugins REST API endpoint * [#6467](https://github.com/netbox-community/netbox/issues/6467) - Fix access to metrics on custom `BASE_PATH` when login is required * [#6468](https://github.com/netbox-community/netbox/issues/6468) - Disable ordering VLAN groups list by scope object --- <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:35 +01:00
adam closed this issue 2025-12-29 22:25:35 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13133