[PR #5865] [MERGED] Release v2.10.5 #13065

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5865
Author: @jeremystretch
Created: 2/24/2021
Status: Merged
Merged: 2/24/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 1964073 PRVB
  • f28474d Fix sample report in documentation
  • b4ba5cb Fixes #5716: Fix filtering rack reservations by custom field
  • be1b6b6 fix: add missing password when using redis in sentinel mode
  • e155acb Merge pull request #5732 from candlerb/candlerb/sample-report-connection-status
  • e3e928f Fixes #5718: Fix bulk editing of services when no port(s) are defined
  • 1430c0a Fixes #5738: Fix redirect to device components view after disconnecting a cable
  • 5fbe766 NetBox should always be referred to as NetBox
  • 19844e8 Merge pull request #5754 from ypid/fix/branding
  • 713f02c Fixes #5735: enforcement of duplicate IP address detection with roles

📊 Changes

21 files changed (+124 additions, -32 deletions)

View changed files

📝 .github/stale.yml (+0 -3)
📝 docs/additional-features/prometheus-metrics.md (+1 -1)
📝 docs/additional-features/reports.md (+1 -1)
📝 docs/installation/1-postgresql.md (+1 -1)
📝 docs/installation/6-ldap.md (+1 -1)
📝 docs/release-notes/version-2.10.md (+16 -0)
📝 netbox/circuits/api/serializers.py (+5 -3)
📝 netbox/dcim/filters.py (+1 -1)
📝 netbox/dcim/tables/template_code.py (+35 -0)
📝 netbox/ipam/api/views.py (+14 -2)
📝 netbox/ipam/models.py (+5 -6)
📝 netbox/ipam/tests/test_models.py (+12 -0)
📝 netbox/netbox/settings.py (+2 -1)
📝 netbox/netbox/views/generic.py (+1 -1)
📝 netbox/project-static/css/base.css (+4 -0)
📝 netbox/templates/dcim/inc/cable_toggle_buttons.html (+0 -5)
📝 netbox/tenancy/api/serializers.py (+1 -1)
📝 netbox/tenancy/tests/test_api.py (+1 -0)
📝 netbox/utilities/forms/fields.py (+10 -1)
📝 netbox/utilities/forms/widgets.py (+4 -1)

...and 1 more files

📄 Description

Bug Fixes

  • #5315 - Fix site unassignment from VLAN when using "None" option
  • #5626 - Fix REST API representation for circuit terminations connected to non-interface endpoints
  • #5716 - Fix filtering rack reservations by custom field
  • #5718 - Fix bulk editing of services when no port(s) are defined
  • #5735 - Ensure consistent treatment of duplicate IP addresses
  • #5738 - Fix redirect to device components view after disconnecting a cable
  • #5753 - Fix Redis Sentinel password application for caching
  • #5786 - Allow setting null tenant group on tenant via REST API
  • #5841 - Disallow the creation of available prefixes/IP addresses in violation of assigned permission constraints

🔄 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/5865 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 2/24/2021 **Status:** ✅ Merged **Merged:** 2/24/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`1964073`](https://github.com/netbox-community/netbox/commit/196407307219fd29e3540965f0500bf4331f5876) PRVB - [`f28474d`](https://github.com/netbox-community/netbox/commit/f28474d86ee2f29cbf6e761b25cf1d464dc329c0) Fix sample report in documentation - [`b4ba5cb`](https://github.com/netbox-community/netbox/commit/b4ba5cbb7a3e365f8c1d145b0b2ce05850323ca1) Fixes #5716: Fix filtering rack reservations by custom field - [`be1b6b6`](https://github.com/netbox-community/netbox/commit/be1b6b6aa3c0ad0880f72a69da70a8c31e9bc295) fix: add missing password when using redis in sentinel mode - [`e155acb`](https://github.com/netbox-community/netbox/commit/e155acbbd4e370dfabcfbbbf334ca2ab76e1e9e6) Merge pull request #5732 from candlerb/candlerb/sample-report-connection-status - [`e3e928f`](https://github.com/netbox-community/netbox/commit/e3e928f1c4dbd45a66b35328dfb2252d3b512417) Fixes #5718: Fix bulk editing of services when no port(s) are defined - [`1430c0a`](https://github.com/netbox-community/netbox/commit/1430c0a6e6444b06581dae6e6deb4a0434dd95ee) Fixes #5738: Fix redirect to device components view after disconnecting a cable - [`5fbe766`](https://github.com/netbox-community/netbox/commit/5fbe766a0a3e887298ce4c993b282525c0df3a93) NetBox should always be referred to as NetBox - [`19844e8`](https://github.com/netbox-community/netbox/commit/19844e81d115c3a9a2798b03d5c09eb29c218a5c) Merge pull request #5754 from ypid/fix/branding - [`713f02c`](https://github.com/netbox-community/netbox/commit/713f02ca3fe7d05a005ef8f0975c62f6bb812052) Fixes #5735: enforcement of duplicate IP address detection with roles ### 📊 Changes **21 files changed** (+124 additions, -32 deletions) <details> <summary>View changed files</summary> 📝 `.github/stale.yml` (+0 -3) 📝 `docs/additional-features/prometheus-metrics.md` (+1 -1) 📝 `docs/additional-features/reports.md` (+1 -1) 📝 `docs/installation/1-postgresql.md` (+1 -1) 📝 `docs/installation/6-ldap.md` (+1 -1) 📝 `docs/release-notes/version-2.10.md` (+16 -0) 📝 `netbox/circuits/api/serializers.py` (+5 -3) 📝 `netbox/dcim/filters.py` (+1 -1) 📝 `netbox/dcim/tables/template_code.py` (+35 -0) 📝 `netbox/ipam/api/views.py` (+14 -2) 📝 `netbox/ipam/models.py` (+5 -6) 📝 `netbox/ipam/tests/test_models.py` (+12 -0) 📝 `netbox/netbox/settings.py` (+2 -1) 📝 `netbox/netbox/views/generic.py` (+1 -1) 📝 `netbox/project-static/css/base.css` (+4 -0) 📝 `netbox/templates/dcim/inc/cable_toggle_buttons.html` (+0 -5) 📝 `netbox/tenancy/api/serializers.py` (+1 -1) 📝 `netbox/tenancy/tests/test_api.py` (+1 -0) 📝 `netbox/utilities/forms/fields.py` (+10 -1) 📝 `netbox/utilities/forms/widgets.py` (+4 -1) _...and 1 more files_ </details> ### 📄 Description ## Bug Fixes * [#5315](https://github.com/netbox-community/netbox/issues/5315) - Fix site unassignment from VLAN when using "None" option * [#5626](https://github.com/netbox-community/netbox/issues/5626) - Fix REST API representation for circuit terminations connected to non-interface endpoints * [#5716](https://github.com/netbox-community/netbox/issues/5716) - Fix filtering rack reservations by custom field * [#5718](https://github.com/netbox-community/netbox/issues/5718) - Fix bulk editing of services when no port(s) are defined * [#5735](https://github.com/netbox-community/netbox/issues/5735) - Ensure consistent treatment of duplicate IP addresses * [#5738](https://github.com/netbox-community/netbox/issues/5738) - Fix redirect to device components view after disconnecting a cable * [#5753](https://github.com/netbox-community/netbox/issues/5753) - Fix Redis Sentinel password application for caching * [#5786](https://github.com/netbox-community/netbox/issues/5786) - Allow setting null tenant group on tenant via REST API * [#5841](https://github.com/netbox-community/netbox/issues/5841) - Disallow the creation of available prefixes/IP addresses in violation of assigned permission constraints --- <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:12 +01:00
adam closed this issue 2025-12-29 22:25:13 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13065