[PR #2886] [MERGED] Release v2.5.6 #12453

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2886
Author: @jeremystretch
Created: 2/13/2019
Status: Merged
Merged: 2/13/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 9991985 Clarify how chassis-based switches and routers are supposed to be modelled
  • 2f1018c Post-release version bump
  • 69a5d36 Closes #2844: Correct display of far cable end for pass-through ports
  • 3d2948d Merge pull request #2793 from candlerb/candlerb/doc-inventory
  • f733d5a Fixes #2857: Add display_name to DeviceType API serializer; fix DeviceType list for bulk device edit
  • 73c9835 Fixes #2856: Fix navigation links between LAG interfaces and their members on device view
  • ca51fab Fixes #2845: Enable filtering of rack unit list by unit ID
  • 42d1d6e Fixes #2841: Fix filtering by VRF for prefix and IP address lists
  • 375e660 Fixes #2864: Correct display of VRF name when no RD is assigned
  • 5256077 Fixes #2862: Follow return URL when connecting a cable

📊 Changes

25 files changed (+179 additions, -26 deletions)

View changed files

📝 CHANGELOG.md (+23 -0)
📝 docs/core-functionality/devices.md (+9 -1)
📝 netbox/dcim/api/nested_serializers.py (+1 -1)
📝 netbox/dcim/api/serializers.py (+2 -2)
📝 netbox/dcim/api/views.py (+5 -0)
📝 netbox/dcim/constants.py (+14 -0)
📝 netbox/dcim/forms.py (+44 -1)
📝 netbox/dcim/models.py (+3 -3)
📝 netbox/dcim/tables.py (+3 -2)
📝 netbox/dcim/tests/test_api.py (+1 -1)
📝 netbox/dcim/urls.py (+2 -0)
📝 netbox/dcim/views.py (+16 -0)
📝 netbox/ipam/forms.py (+2 -2)
📝 netbox/ipam/models.py (+2 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/dcim/cable_connect.html (+1 -1)
📝 netbox/templates/dcim/device.html (+8 -2)
📝 netbox/templates/dcim/device_inventory.html (+1 -1)
📝 netbox/templates/dcim/inc/devicebay.html (+1 -1)
📝 netbox/templates/dcim/inc/frontport.html (+16 -1)

...and 5 more files

📄 Description

Enhancements

  • #2758 - Add cable trace button to pass-through ports
  • #2839 - Add "110 punch" type for pass-through ports
  • #2854 - Enable bulk editing of pass-through ports
  • #2866 - Add cellular interface types (GSM/CDMA/LTE)

Bug Fixes

  • #2841 - Fix filtering by VRF for prefix and IP address lists
  • #2844 - Correct display of far cable end for pass-through ports
  • #2845 - Enable filtering of rack unit list by unit ID
  • #2856 - Fix navigation links between LAG interfaces and their members on device view
  • #2857 - Add display_name to DeviceType API serializer; fix DeviceType list for bulk device edit
  • #2862 - Follow return URL when connecting a cable
  • #2864 - Correct display of VRF name when no RD is assigned
  • #2877 - Fixed device role label display on light background color
  • #2880 - Sanitize user password if an exception is raised during login

🔄 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/2886 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 2/13/2019 **Status:** ✅ Merged **Merged:** 2/13/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`9991985`](https://github.com/netbox-community/netbox/commit/9991985170d816d7a5fd5a8bb16299a821256ea9) Clarify how chassis-based switches and routers are supposed to be modelled - [`2f1018c`](https://github.com/netbox-community/netbox/commit/2f1018c7420253a9e53e4bad5eafa1f2443b8938) Post-release version bump - [`69a5d36`](https://github.com/netbox-community/netbox/commit/69a5d3644a407f9de314294c7ca419b3e95224b1) Closes #2844: Correct display of far cable end for pass-through ports - [`3d2948d`](https://github.com/netbox-community/netbox/commit/3d2948daf3ace4429db1d006fae64b06ac5f4a68) Merge pull request #2793 from candlerb/candlerb/doc-inventory - [`f733d5a`](https://github.com/netbox-community/netbox/commit/f733d5a4da9a88f881eb5892e7a1de09a2a7de48) Fixes #2857: Add display_name to DeviceType API serializer; fix DeviceType list for bulk device edit - [`73c9835`](https://github.com/netbox-community/netbox/commit/73c983516dbb4474c428d93595cd566eaa5b5d11) Fixes #2856: Fix navigation links between LAG interfaces and their members on device view - [`ca51fab`](https://github.com/netbox-community/netbox/commit/ca51fab4d8611d50672cc994bee8f72d98387e23) Fixes #2845: Enable filtering of rack unit list by unit ID - [`42d1d6e`](https://github.com/netbox-community/netbox/commit/42d1d6e1b0678b6fea956c6247d3d7f48e889c30) Fixes #2841: Fix filtering by VRF for prefix and IP address lists - [`375e660`](https://github.com/netbox-community/netbox/commit/375e66047d9e591c742674ba4c3451b3219a2997) Fixes #2864: Correct display of VRF name when no RD is assigned - [`5256077`](https://github.com/netbox-community/netbox/commit/5256077a3ca291c318337de55960c188501f81ec) Fixes #2862: Follow return URL when connecting a cable ### 📊 Changes **25 files changed** (+179 additions, -26 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+23 -0) 📝 `docs/core-functionality/devices.md` (+9 -1) 📝 `netbox/dcim/api/nested_serializers.py` (+1 -1) 📝 `netbox/dcim/api/serializers.py` (+2 -2) 📝 `netbox/dcim/api/views.py` (+5 -0) 📝 `netbox/dcim/constants.py` (+14 -0) 📝 `netbox/dcim/forms.py` (+44 -1) 📝 `netbox/dcim/models.py` (+3 -3) 📝 `netbox/dcim/tables.py` (+3 -2) 📝 `netbox/dcim/tests/test_api.py` (+1 -1) 📝 `netbox/dcim/urls.py` (+2 -0) 📝 `netbox/dcim/views.py` (+16 -0) 📝 `netbox/ipam/forms.py` (+2 -2) 📝 `netbox/ipam/models.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/dcim/cable_connect.html` (+1 -1) 📝 `netbox/templates/dcim/device.html` (+8 -2) 📝 `netbox/templates/dcim/device_inventory.html` (+1 -1) 📝 `netbox/templates/dcim/inc/devicebay.html` (+1 -1) 📝 `netbox/templates/dcim/inc/frontport.html` (+16 -1) _...and 5 more files_ </details> ### 📄 Description ## Enhancements * [#2758](https://github.com/digitalocean/netbox/issues/2758) - Add cable trace button to pass-through ports * [#2839](https://github.com/digitalocean/netbox/issues/2839) - Add "110 punch" type for pass-through ports * [#2854](https://github.com/digitalocean/netbox/issues/2854) - Enable bulk editing of pass-through ports * [#2866](https://github.com/digitalocean/netbox/issues/2866) - Add cellular interface types (GSM/CDMA/LTE) ## Bug Fixes * [#2841](https://github.com/digitalocean/netbox/issues/2841) - Fix filtering by VRF for prefix and IP address lists * [#2844](https://github.com/digitalocean/netbox/issues/2844) - Correct display of far cable end for pass-through ports * [#2845](https://github.com/digitalocean/netbox/issues/2845) - Enable filtering of rack unit list by unit ID * [#2856](https://github.com/digitalocean/netbox/issues/2856) - Fix navigation links between LAG interfaces and their members on device view * [#2857](https://github.com/digitalocean/netbox/issues/2857) - Add `display_name` to DeviceType API serializer; fix DeviceType list for bulk device edit * [#2862](https://github.com/digitalocean/netbox/issues/2862) - Follow return URL when connecting a cable * [#2864](https://github.com/digitalocean/netbox/issues/2864) - Correct display of VRF name when no RD is assigned * [#2877](https://github.com/digitalocean/netbox/issues/2877) - Fixed device role label display on light background color * [#2880](https://github.com/digitalocean/netbox/issues/2880) - Sanitize user password if an exception is raised during login --- <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:21:40 +01:00
adam closed this issue 2025-12-29 22:21:40 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12453