[PR #5581] [MERGED] Release v2.10.3 #13039

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

39 files changed (+304 additions, -132 deletions)

View changed files

📝 docs/development/getting-started.md (+3 -3)
📝 docs/development/release-checklist.md (+1 -4)
📝 docs/installation/3-netbox.md (+1 -1)
📝 docs/release-notes/version-2.10.md (+23 -0)
📝 docs/rest-api/filtering.md (+2 -2)
📝 netbox/circuits/api/views.py (+1 -0)
📝 netbox/dcim/api/views.py (+11 -0)
📝 netbox/dcim/forms.py (+26 -38)
📝 netbox/dcim/models/device_component_templates.py (+11 -0)
📝 netbox/dcim/models/device_components.py (+7 -1)
📝 netbox/dcim/models/devices.py (+5 -5)
📝 netbox/dcim/models/racks.py (+1 -16)
📝 netbox/dcim/signals.py (+43 -1)
📝 netbox/dcim/tables/racks.py (+2 -1)
📝 netbox/dcim/tables/sites.py (+2 -1)
📝 netbox/dcim/tables/template_code.py (+4 -7)
📝 netbox/dcim/tests/test_forms.py (+16 -2)
📝 netbox/dcim/tests/test_models.py (+64 -0)
📝 netbox/extras/api/views.py (+4 -5)
📝 netbox/extras/migrations/0051_migrate_customfields.py (+1 -1)

...and 19 more files

📄 Description

Bug Fixes

  • #5049 - Add check for LLDP neighbor chassis name to lldp_neighbors
  • #5301 - Fix misleading error when racking a device with invalid parameters
  • #5311 - Update child objects when a rack group is moved to a new site
  • #5518 - Fix persistent vertical scrollbar
  • #5533 - Fix bulk editing of objects with required custom fields
  • #5540 - Fix exception when viewing a provider with one or more tags assigned
  • #5543 - Fix rendering of config contexts with cluster assignment for devices
  • #5546 - Add custom field bulk edit support for cables, power panels, rack reservations, and virtual chassis
  • #5547 - Add custom field bulk import support for cables, power panels, rack reservations, and virtual chassis
  • #5551 - Restore missing import button on services list
  • #5557 - Fix VRF route target assignment via REST API
  • #5558 - Fix regex validation support for custom URL fields
  • #5563 - Fix power feed cable trace link
  • #5564 - Raise validation error if a power port template's allocated_draw exceeds its maximum_draw
  • #5569 - Ensure consistent labeling of interface mgmt_only field
  • #5573 - Report inconsistent values when migrating custom field data

🔄 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/5581 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/6/2021 **Status:** ✅ Merged **Merged:** 1/6/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`5fe5fd7`](https://github.com/netbox-community/netbox/commit/5fe5fd71b5058767cb8346cc10bccd2dc127f032) PRVB - [`8f4197c`](https://github.com/netbox-community/netbox/commit/8f4197c0207dd9467dc09b8e89dfcd896b2c8a79) Fixes #5518: Fix persistent vertical scrollbar - [`dc6dbdf`](https://github.com/netbox-community/netbox/commit/dc6dbdf3c4ed42470b3b62bc00da621b57d5d10e) Update documentation to reference the feature branch - [`09633ee`](https://github.com/netbox-community/netbox/commit/09633ee11b8e9974e12a5155656c8b8fb0ed0871) Move rack group field directly beneath site - [`e4f22bc`](https://github.com/netbox-community/netbox/commit/e4f22bc4941ecea0e3828c71b29ac91bfe213f65) Employ signals to update child objects when RackGroup/Rack site assignment changes - [`ddd10ba`](https://github.com/netbox-community/netbox/commit/ddd10ba8af5f619f485245d08bdcf1b2e82d74be) Clean up hierarchical table columns - [`8d9d4ce`](https://github.com/netbox-community/netbox/commit/8d9d4cec051c8b0e5433db538b2ae0a5debb92ea) Extend handle_rackgroup_site_change() receiver to update power panels - [`fe2e33a`](https://github.com/netbox-community/netbox/commit/fe2e33a9e146b4afc5fc7b0689875be17b5306dc) Merge pull request #5522 from netbox-community/5311-site-rack-validation - [`396b0da`](https://github.com/netbox-community/netbox/commit/396b0dace8631cb7ac53ee3a841b3cc80a783873) Changelog for #5311 - [`fce6129`](https://github.com/netbox-community/netbox/commit/fce61295c9336fb8c82796d8a0d9571521b22146) Fixes #5301: Fix misleading error when racking a device with invalid parameters ### 📊 Changes **39 files changed** (+304 additions, -132 deletions) <details> <summary>View changed files</summary> 📝 `docs/development/getting-started.md` (+3 -3) 📝 `docs/development/release-checklist.md` (+1 -4) 📝 `docs/installation/3-netbox.md` (+1 -1) 📝 `docs/release-notes/version-2.10.md` (+23 -0) 📝 `docs/rest-api/filtering.md` (+2 -2) 📝 `netbox/circuits/api/views.py` (+1 -0) 📝 `netbox/dcim/api/views.py` (+11 -0) 📝 `netbox/dcim/forms.py` (+26 -38) 📝 `netbox/dcim/models/device_component_templates.py` (+11 -0) 📝 `netbox/dcim/models/device_components.py` (+7 -1) 📝 `netbox/dcim/models/devices.py` (+5 -5) 📝 `netbox/dcim/models/racks.py` (+1 -16) 📝 `netbox/dcim/signals.py` (+43 -1) 📝 `netbox/dcim/tables/racks.py` (+2 -1) 📝 `netbox/dcim/tables/sites.py` (+2 -1) 📝 `netbox/dcim/tables/template_code.py` (+4 -7) 📝 `netbox/dcim/tests/test_forms.py` (+16 -2) 📝 `netbox/dcim/tests/test_models.py` (+64 -0) 📝 `netbox/extras/api/views.py` (+4 -5) 📝 `netbox/extras/migrations/0051_migrate_customfields.py` (+1 -1) _...and 19 more files_ </details> ### 📄 Description ### Bug Fixes * [#5049](https://github.com/netbox-community/netbox/issues/5049) - Add check for LLDP neighbor chassis name to lldp_neighbors * [#5301](https://github.com/netbox-community/netbox/issues/5301) - Fix misleading error when racking a device with invalid parameters * [#5311](https://github.com/netbox-community/netbox/issues/5311) - Update child objects when a rack group is moved to a new site * [#5518](https://github.com/netbox-community/netbox/issues/5518) - Fix persistent vertical scrollbar * [#5533](https://github.com/netbox-community/netbox/issues/5533) - Fix bulk editing of objects with required custom fields * [#5540](https://github.com/netbox-community/netbox/issues/5540) - Fix exception when viewing a provider with one or more tags assigned * [#5543](https://github.com/netbox-community/netbox/issues/5543) - Fix rendering of config contexts with cluster assignment for devices * [#5546](https://github.com/netbox-community/netbox/issues/5546) - Add custom field bulk edit support for cables, power panels, rack reservations, and virtual chassis * [#5547](https://github.com/netbox-community/netbox/issues/5547) - Add custom field bulk import support for cables, power panels, rack reservations, and virtual chassis * [#5551](https://github.com/netbox-community/netbox/issues/5551) - Restore missing import button on services list * [#5557](https://github.com/netbox-community/netbox/issues/5557) - Fix VRF route target assignment via REST API * [#5558](https://github.com/netbox-community/netbox/issues/5558) - Fix regex validation support for custom URL fields * [#5563](https://github.com/netbox-community/netbox/issues/5563) - Fix power feed cable trace link * [#5564](https://github.com/netbox-community/netbox/issues/5564) - Raise validation error if a power port template's `allocated_draw` exceeds its `maximum_draw` * [#5569](https://github.com/netbox-community/netbox/issues/5569) - Ensure consistent labeling of interface `mgmt_only` field * [#5573](https://github.com/netbox-community/netbox/issues/5573) - Report inconsistent values when migrating custom field data --- <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:05 +01:00
adam closed this issue 2025-12-29 22:25:05 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13039