[PR #12946] [MERGED] Release v3.5.4 #14077

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/12946
Author: @jeremystretch
Created: 6/20/2023
Status: Merged
Merged: 6/20/2023
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

25 files changed (+167 additions, -66 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/release-notes/version-3.5.md (+25 -0)
📝 netbox/core/api/views.py (+1 -1)
📝 netbox/dcim/api/views.py (+4 -1)
📝 netbox/dcim/constants.py (+1 -0)
📝 netbox/dcim/migrations/0154_half_height_rack_units.py (+1 -1)
📝 netbox/dcim/models/devices.py (+1 -1)
📝 netbox/dcim/models/racks.py (+2 -2)
📝 netbox/dcim/signals.py (+1 -0)
📝 netbox/dcim/views.py (+0 -10)
📝 netbox/extras/choices.py (+3 -3)
📝 netbox/extras/models/models.py (+1 -1)
📝 netbox/extras/models/staging.py (+3 -0)
📝 netbox/ipam/forms/bulk_import.py (+25 -9)
📝 netbox/ipam/forms/model_forms.py (+2 -4)
📝 netbox/ipam/tests/test_views.py (+59 -0)
📝 netbox/netbox/navigation/menu.py (+5 -3)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/tables/tables.py (+8 -4)

...and 5 more files

📄 Description

Enhancements

  • #12828 - Define colors for staged change action choices
  • #12847 - Include "add" button on all device & virtual machine component list views
  • #12862 - Add menu navigation button to add wireless links directly
  • #12865 - Add "add" buttons for reports & scripts to navigation menu

Bug Fixes

  • #12474 - Update cable terminations when assigning a location to a new site
  • #12622 - Permit the assignment of non-site VLANs to prefixes assigned to a site
  • #12682 - Correct OpenAPI schema for connected device API endpoint
  • #12687 - Allow the assignment of all /31 IP addresses to interfaces
  • #12818 - Fix permissions evaluation when queuing a data sync job
  • #12822 - Fix encoding of whitespace in custom link URLs
  • #12838 - Correct rounding of rack power utilization values
  • #12845 - Fix pagination of objects for related IP addresses table
  • #12850 - Fix table configuration modal for the contact assignments list
  • #12885 - Permit mounting of devices in rack unit 100
  • #12914 - Clear stored ordering from user config when cleared by request

🔄 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/12946 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/20/2023 **Status:** ✅ Merged **Merged:** 6/20/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`4a88d5e`](https://github.com/netbox-community/netbox/commit/4a88d5e3d90501909130868cb57c5c5a321f3703) PRVB - [`01d9e0a`](https://github.com/netbox-community/netbox/commit/01d9e0afb6212ade33e85b655d156ef442906739) Round rack power utilization to nearest 0.1% - [`210879d`](https://github.com/netbox-community/netbox/commit/210879d3807ed7036e2b886f39ac59e45ed6703a) fix contact assignment table modal - [`82cd6c5`](https://github.com/netbox-community/netbox/commit/82cd6c5f4c261555f207f650558442b9c48b095b) Fixes #12862 - Add Button for Wireless Links in Sidebar - [`e785139`](https://github.com/netbox-community/netbox/commit/e7851399c67960fd6e704510e66fa719b4d5c652) Merge pull request #12857 from netbox-community/fix/12850-contacts-table - [`43235f1`](https://github.com/netbox-community/netbox/commit/43235f143d11ea23a3875c44acceaea69d04875a) Merge pull request #12839 from candlerb/candlerb/12838 - [`22a0ce3`](https://github.com/netbox-community/netbox/commit/22a0ce3f76089b4974f8aac3c75207b1237d1bf6) broadcast error fixes for ipv6 and /31/32 - [`74c1f7a`](https://github.com/netbox-community/netbox/commit/74c1f7a17665188e69be8eb233b0ed32ae9f071b) Merge pull request #12874 from ITJamie/broadcast_exceptions - [`a81924a`](https://github.com/netbox-community/netbox/commit/a81924ac0f5a33cfa4461b95661b68316e8b13f4) Merge pull request #12863 from sudheesh001/fix/12862-connection-sidebar-add - [`2e95865`](https://github.com/netbox-community/netbox/commit/2e9586523f75e588bb47ba3d7d148caa72a670b9) Changelog for #12687, #12838, #12850, #12862 ### 📊 Changes **25 files changed** (+167 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/release-notes/version-3.5.md` (+25 -0) 📝 `netbox/core/api/views.py` (+1 -1) 📝 `netbox/dcim/api/views.py` (+4 -1) 📝 `netbox/dcim/constants.py` (+1 -0) 📝 `netbox/dcim/migrations/0154_half_height_rack_units.py` (+1 -1) 📝 `netbox/dcim/models/devices.py` (+1 -1) 📝 `netbox/dcim/models/racks.py` (+2 -2) 📝 `netbox/dcim/signals.py` (+1 -0) 📝 `netbox/dcim/views.py` (+0 -10) 📝 `netbox/extras/choices.py` (+3 -3) 📝 `netbox/extras/models/models.py` (+1 -1) 📝 `netbox/extras/models/staging.py` (+3 -0) 📝 `netbox/ipam/forms/bulk_import.py` (+25 -9) 📝 `netbox/ipam/forms/model_forms.py` (+2 -4) 📝 `netbox/ipam/tests/test_views.py` (+59 -0) 📝 `netbox/netbox/navigation/menu.py` (+5 -3) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/tables/tables.py` (+8 -4) _...and 5 more files_ </details> ### 📄 Description ### Enhancements * [#12828](https://github.com/netbox-community/netbox/issues/12828) - Define colors for staged change action choices * [#12847](https://github.com/netbox-community/netbox/issues/12847) - Include "add" button on all device & virtual machine component list views * [#12862](https://github.com/netbox-community/netbox/issues/12862) - Add menu navigation button to add wireless links directly * [#12865](https://github.com/netbox-community/netbox/issues/12865) - Add "add" buttons for reports & scripts to navigation menu ### Bug Fixes * [#12474](https://github.com/netbox-community/netbox/issues/12474) - Update cable terminations when assigning a location to a new site * [#12622](https://github.com/netbox-community/netbox/issues/12622) - Permit the assignment of non-site VLANs to prefixes assigned to a site * [#12682](https://github.com/netbox-community/netbox/issues/12682) - Correct OpenAPI schema for connected device API endpoint * [#12687](https://github.com/netbox-community/netbox/issues/12687) - Allow the assignment of all /31 IP addresses to interfaces * [#12818](https://github.com/netbox-community/netbox/issues/12818) - Fix permissions evaluation when queuing a data sync job * [#12822](https://github.com/netbox-community/netbox/issues/12822) - Fix encoding of whitespace in custom link URLs * [#12838](https://github.com/netbox-community/netbox/issues/12838) - Correct rounding of rack power utilization values * [#12845](https://github.com/netbox-community/netbox/issues/12845) - Fix pagination of objects for related IP addresses table * [#12850](https://github.com/netbox-community/netbox/issues/12850) - Fix table configuration modal for the contact assignments list * [#12885](https://github.com/netbox-community/netbox/issues/12885) - Permit mounting of devices in rack unit 100 * [#12914](https://github.com/netbox-community/netbox/issues/12914) - Clear stored ordering from user config when cleared by request --- <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 23:22:22 +01:00
adam closed this issue 2025-12-29 23:22:22 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#14077