[PR #5694] [MERGED] Release v2.10.4 #13050

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5694
Author: @jeremystretch
Created: 1/26/2021
Status: Merged
Merged: 1/26/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

27 files changed (+183 additions, -62 deletions)

View changed files

📝 README.md (+1 -2)
📝 docs/configuration/optional-settings.md (+1 -1)
📝 docs/configuration/required-settings.md (+2 -2)
📝 docs/installation/3-netbox.md (+2 -2)
📝 docs/installation/index.md (+4 -0)
📝 docs/release-notes/version-2.10.md (+25 -0)
📝 netbox/dcim/choices.py (+12 -0)
📝 netbox/dcim/filters.py (+12 -2)
📝 netbox/dcim/forms.py (+26 -0)
📝 netbox/dcim/models/device_component_templates.py (+6 -0)
📝 netbox/dcim/models/racks.py (+4 -0)
📝 netbox/dcim/tables/devices.py (+2 -0)
📝 netbox/dcim/tests/test_api.py (+4 -1)
📝 netbox/dcim/tests/test_filters.py (+14 -3)
📝 netbox/dcim/tests/test_views.py (+3 -2)
📝 netbox/generate_secret_key.py (+2 -3)
📝 netbox/ipam/api/views.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/cable_trace.html (+2 -1)
📝 netbox/templates/dcim/device.html (+4 -4)

...and 7 more files

📄 Description

Enhancements

  • #5542 - Show cable trace lengths in both meters and feet
  • #5570 - Add "management only" filter widget for interfaces list
  • #5586 - Allow filtering virtual chassis by name and master
  • #5612 - Add GG45 and TERA port types, and CAT7a and CAT8 cable types
  • #5678 - Show available type choices for all device component import forms

Bug Fixes

  • #5232 - Correct swagger definition for ip_prefixes_available-ips_create API
  • #5574 - Restrict the creation of device bay templates on non-parent device types
  • #5584 - Restore power utilization panel under device view
  • #5597 - Fix ordering devices by primary IP address
  • #5603 - Fix display of white cables in trace view
  • #5639 - Fix filtering connection lists by device name
  • #5640 - Fix permissions assessment when adding VM interfaces in bulk
  • #5648 - Include VC member interfaces on interfaces tab count when viewing VC master
  • #5665 - Validate rack group is assigned to same site when creating a rack
  • #5683 - Correct rack elevation displayed when viewing a reservation

🔄 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/5694 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/26/2021 **Status:** ✅ Merged **Merged:** 1/26/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c8f09f2`](https://github.com/netbox-community/netbox/commit/c8f09f28b16979e84b32dca7b859cb9d5f4dd952) PRVB - [`47b7ec8`](https://github.com/netbox-community/netbox/commit/47b7ec8d00905dd82a44945691b526750d1467ac) Fixes #5584: Restore power utilization panel under device view - [`e9d888b`](https://github.com/netbox-community/netbox/commit/e9d888bf6330f1107f38aaa2458b7c04a34fc9fb) Closes #5570: Add "management only" filter widget for interfaces list - [`c51d2a5`](https://github.com/netbox-community/netbox/commit/c51d2a56ac09eb4b34882a3af0eaec9a9c0a6a31) Closes 5586: Adds name, master, and master_id filtering - [`1e1e2d5`](https://github.com/netbox-community/netbox/commit/1e1e2d5f54a3c5ff60e15deb7a71a81fb4ddc8fb) Fixes #5597: Fix ordering devices by primary IP address - [`e13d96a`](https://github.com/netbox-community/netbox/commit/e13d96a6f24ad45fdfd354a47f22947b005b7acc) Don't pin Ubuntu installations to Python 3.6 - [`d838a76`](https://github.com/netbox-community/netbox/commit/d838a76461771f71144c8b9ae75eef55aa71e8ca) Add choices for GG45 and TERA connectors and Cat7a/Cat8 cables - [`3f70f68`](https://github.com/netbox-community/netbox/commit/3f70f685bb78e26ec8d87896d6ba0b93c7104e0a) Merge pull request #5634 from phoerious/5612-gg45-tera-connector - [`58699a2`](https://github.com/netbox-community/netbox/commit/58699a220b589803fc2304577b4f52ca353b1d77) Merge pull request #5596 from FragmentedPacket/5586-vc-filtering - [`69bf451`](https://github.com/netbox-community/netbox/commit/69bf451b209087b7a4025571c816551eee47538a) Changelog for #5586 and #5612 ### 📊 Changes **27 files changed** (+183 additions, -62 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -2) 📝 `docs/configuration/optional-settings.md` (+1 -1) 📝 `docs/configuration/required-settings.md` (+2 -2) 📝 `docs/installation/3-netbox.md` (+2 -2) 📝 `docs/installation/index.md` (+4 -0) 📝 `docs/release-notes/version-2.10.md` (+25 -0) 📝 `netbox/dcim/choices.py` (+12 -0) 📝 `netbox/dcim/filters.py` (+12 -2) 📝 `netbox/dcim/forms.py` (+26 -0) 📝 `netbox/dcim/models/device_component_templates.py` (+6 -0) 📝 `netbox/dcim/models/racks.py` (+4 -0) 📝 `netbox/dcim/tables/devices.py` (+2 -0) 📝 `netbox/dcim/tests/test_api.py` (+4 -1) 📝 `netbox/dcim/tests/test_filters.py` (+14 -3) 📝 `netbox/dcim/tests/test_views.py` (+3 -2) 📝 `netbox/generate_secret_key.py` (+2 -3) 📝 `netbox/ipam/api/views.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/cable_trace.html` (+2 -1) 📝 `netbox/templates/dcim/device.html` (+4 -4) _...and 7 more files_ </details> ### 📄 Description ### Enhancements * [#5542](https://github.com/netbox-community/netbox/issues/5542) - Show cable trace lengths in both meters and feet * [#5570](https://github.com/netbox-community/netbox/issues/5570) - Add "management only" filter widget for interfaces list * [#5586](https://github.com/netbox-community/netbox/issues/5586) - Allow filtering virtual chassis by name and master * [#5612](https://github.com/netbox-community/netbox/issues/5612) - Add GG45 and TERA port types, and CAT7a and CAT8 cable types * [#5678](https://github.com/netbox-community/netbox/issues/5678) - Show available type choices for all device component import forms ### Bug Fixes * [#5232](https://github.com/netbox-community/netbox/issues/5232) - Correct swagger definition for ip_prefixes_available-ips_create API * [#5574](https://github.com/netbox-community/netbox/issues/5574) - Restrict the creation of device bay templates on non-parent device types * [#5584](https://github.com/netbox-community/netbox/issues/5584) - Restore power utilization panel under device view * [#5597](https://github.com/netbox-community/netbox/issues/5597) - Fix ordering devices by primary IP address * [#5603](https://github.com/netbox-community/netbox/issues/5603) - Fix display of white cables in trace view * [#5639](https://github.com/netbox-community/netbox/issues/5639) - Fix filtering connection lists by device name * [#5640](https://github.com/netbox-community/netbox/issues/5640) - Fix permissions assessment when adding VM interfaces in bulk * [#5648](https://github.com/netbox-community/netbox/issues/5648) - Include VC member interfaces on interfaces tab count when viewing VC master * [#5665](https://github.com/netbox-community/netbox/issues/5665) - Validate rack group is assigned to same site when creating a rack * [#5683](https://github.com/netbox-community/netbox/issues/5683) - Correct rack elevation displayed when viewing a reservation --- <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:08 +01:00
adam closed this issue 2025-12-29 22:25:08 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13050