[PR #5472] [MERGED] Release v2.10.1 #13028

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5472
Author: @jeremystretch
Created: 12/16/2020
Status: Merged
Merged: 12/16/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

20 files changed (+155 additions, -60 deletions)

View changed files

📝 docs/release-notes/version-2.10.md (+16 -0)
📝 netbox/circuits/api/views.py (+3 -2)
📝 netbox/circuits/views.py (+2 -2)
📝 netbox/dcim/api/views.py (+20 -19)
📝 netbox/dcim/forms.py (+10 -1)
📝 netbox/dcim/models/cables.py (+2 -1)
📝 netbox/dcim/tests/test_views.py (+8 -0)
📝 netbox/extras/api/views.py (+2 -1)
📝 netbox/extras/forms.py (+2 -2)
📝 netbox/extras/models/customfields.py (+6 -5)
📝 netbox/ipam/api/views.py (+8 -7)
📝 netbox/netbox/api/metadata.py (+36 -1)
📝 netbox/netbox/settings.py (+2 -1)
📝 netbox/secrets/api/views.py (+2 -1)
📝 netbox/templates/dcim/inc/cable_toggle_buttons.html (+1 -1)
📝 netbox/templates/dcim/inc/devicetype_component_table.html (+4 -4)
📝 netbox/templates/dcim/rack_elevation_list.html (+1 -1)
📝 netbox/tenancy/api/views.py (+8 -7)
📝 netbox/utilities/testing/api.py (+17 -0)
📝 netbox/virtualization/api/views.py (+5 -4)

📄 Description

Bug Fixes

  • #5444 - Don't force overwriting of boolean fields when bulk editing interfaces
  • #5450 - API serializer foreign count fields do not have a default value
  • #5453 - Correct change log representation when creating a cable
  • #5458 - Creating a component template throws an exception
  • #5461 - Rack Elevations throw reverse match exception
  • #5463 - Back-to-back Circuit Termination throws AttributeError exception
  • #5465 - Correct return URL when disconnecting a cable from a device
  • #5466 - Fix validation for required custom fields
  • #5470 - Fix exception when making OPTIONS request for a REST API list endpoint

🔄 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/5472 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/16/2020 **Status:** ✅ Merged **Merged:** 12/16/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c1e56a3`](https://github.com/netbox-community/netbox/commit/c1e56a3717f90f8785ca1c37d761dd29d61349a6) Post-release version bump - [`9615dc0`](https://github.com/netbox-community/netbox/commit/9615dc0638829be293c0ca32ebddeabaaed2c18a) Fixes: #5458 - Fix devicetype_component_table.html - [`1f4954b`](https://github.com/netbox-community/netbox/commit/1f4954bf0ed8e6cb3eb9368ec70066995fcb73cc) Fixes: #5461 - Assign object=rack in netbox/templates/dcim/rack_elevation_list.html - [`974500c`](https://github.com/netbox-community/netbox/commit/974500c2817719dbd1861d379ede300d54901a65) Add test for #5461 - [`14a46f8`](https://github.com/netbox-community/netbox/commit/14a46f82ee346a8e5edb3a3dc91cee779ceec8a4) Fixes: #5463 - Add check for ip_addresses attribute on circuittermination connected_endpoint - [`67f9e16`](https://github.com/netbox-community/netbox/commit/67f9e16905a25eb18b0dd50889d841dadbe88b44) Fixes #5453: Correct change log representation when creating a cable - [`3c2b2f2`](https://github.com/netbox-community/netbox/commit/3c2b2f26b903e13f26ba6b69511c7ef7fd2ca706) Fixes: #5450 - Added Coalesce to viewsets for the _count functions - [`6a3dab0`](https://github.com/netbox-community/netbox/commit/6a3dab01426af97140a8e0eb5cf1475d90a6542a) Fixes #5465: Correct return URL when disconnecting a cable from a device - [`34643f5`](https://github.com/netbox-community/netbox/commit/34643f536ee3d1ba3a75ea76e09769d20ded26ca) Fixes #5466: Fix validation for required custom fields - [`d64fc26`](https://github.com/netbox-community/netbox/commit/d64fc261e249371279ecf9a1e7ebc1de39498b07) Tweak validation for custom date fields ### 📊 Changes **20 files changed** (+155 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `docs/release-notes/version-2.10.md` (+16 -0) 📝 `netbox/circuits/api/views.py` (+3 -2) 📝 `netbox/circuits/views.py` (+2 -2) 📝 `netbox/dcim/api/views.py` (+20 -19) 📝 `netbox/dcim/forms.py` (+10 -1) 📝 `netbox/dcim/models/cables.py` (+2 -1) 📝 `netbox/dcim/tests/test_views.py` (+8 -0) 📝 `netbox/extras/api/views.py` (+2 -1) 📝 `netbox/extras/forms.py` (+2 -2) 📝 `netbox/extras/models/customfields.py` (+6 -5) 📝 `netbox/ipam/api/views.py` (+8 -7) 📝 `netbox/netbox/api/metadata.py` (+36 -1) 📝 `netbox/netbox/settings.py` (+2 -1) 📝 `netbox/secrets/api/views.py` (+2 -1) 📝 `netbox/templates/dcim/inc/cable_toggle_buttons.html` (+1 -1) 📝 `netbox/templates/dcim/inc/devicetype_component_table.html` (+4 -4) 📝 `netbox/templates/dcim/rack_elevation_list.html` (+1 -1) 📝 `netbox/tenancy/api/views.py` (+8 -7) 📝 `netbox/utilities/testing/api.py` (+17 -0) 📝 `netbox/virtualization/api/views.py` (+5 -4) </details> ### 📄 Description ## Bug Fixes * [#5444](https://github.com/netbox-community/netbox/issues/5444) - Don't force overwriting of boolean fields when bulk editing interfaces * [#5450](https://github.com/netbox-community/netbox/issues/5450) - API serializer foreign count fields do not have a default value * [#5453](https://github.com/netbox-community/netbox/issues/5453) - Correct change log representation when creating a cable * [#5458](https://github.com/netbox-community/netbox/issues/5458) - Creating a component template throws an exception * [#5461](https://github.com/netbox-community/netbox/issues/5461) - Rack Elevations throw reverse match exception * [#5463](https://github.com/netbox-community/netbox/issues/5463) - Back-to-back Circuit Termination throws AttributeError exception * [#5465](https://github.com/netbox-community/netbox/issues/5465) - Correct return URL when disconnecting a cable from a device * [#5466](https://github.com/netbox-community/netbox/issues/5466) - Fix validation for required custom fields * [#5470](https://github.com/netbox-community/netbox/issues/5470) - Fix exception when making `OPTIONS` request for a REST API list endpoint --- <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:01 +01:00
adam closed this issue 2025-12-29 22:25:01 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13028