[PR #2778] [MERGED] Release v2.5.3 #12436

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2778
Author: @jeremystretch
Created: 1/11/2019
Status: Merged
Merged: 1/11/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

21 files changed (+258 additions, -91 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.md (+10 -5)
📝 CHANGELOG.md (+22 -0)
📝 netbox/dcim/api/views.py (+8 -3)
📝 netbox/dcim/constants.py (+6 -0)
📝 netbox/dcim/filters.py (+16 -6)
📝 netbox/dcim/forms.py (+23 -4)
📝 netbox/dcim/models.py (+53 -43)
📝 netbox/dcim/views.py (+13 -2)
📝 netbox/ipam/forms.py (+10 -0)
📝 netbox/ipam/models.py (+35 -6)
📝 netbox/netbox/forms.py (+1 -0)
📝 netbox/netbox/settings.py (+9 -1)
📝 netbox/netbox/views.py (+8 -2)
📝 netbox/project-static/css/base.css (+3 -0)
📝 netbox/project-static/js/forms.js (+5 -0)
📝 netbox/templates/extras/report_list.html (+1 -1)
📝 netbox/templates/inc/paginator.html (+13 -1)
📝 netbox/templates/responsive_table.html (+0 -3)
📝 netbox/templates/utilities/obj_table.html (+14 -11)
📝 netbox/utilities/constants.py (+3 -0)

...and 1 more files

📄 Description

Enhancements

  • #1630 - Enable bulk editing of prefix/IP mask length
  • #1870 - Add per-page toggle to object lists
  • #1871 - Enable filtering sites by parent region
  • #1983 - Enable regular expressions when bulk renaming device components
  • #2682 - Add DAC and AOC cable types
  • #2693 - Additional cable colors
  • #2726 - Include cables in global search

Bug Fixes

  • #2742 - Preserve cluster assignment when editing a device
  • #2757 - Always treat first/last IPs within a /31 or /127 as usable
  • #2762 - Add missing DCIM field values to API _choices endpoint
  • #2777 - Fix cable validation to handle duplicate connections on import

🔄 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/2778 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/11/2019 **Status:** ✅ Merged **Merged:** 1/11/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`f499f2d`](https://github.com/netbox-community/netbox/commit/f499f2dd66d6e2526917c154319a1efa5f5effd3) Closes #2693 - [`d144d3a`](https://github.com/netbox-community/netbox/commit/d144d3a5840beca06113ef0de07c6511fd608f47) Post-release version bump - [`c6d9206`](https://github.com/netbox-community/netbox/commit/c6d9206dd135ddfc204ef12231864e2ff21ff908) Added ability to search for cables in global search - [`0c86693`](https://github.com/netbox-community/netbox/commit/0c86693dc4a8783022b4917ecd49f832bc11f2b8) Closes #2693 - [`6ca045e`](https://github.com/netbox-community/netbox/commit/6ca045e1a9046d626a7d886576579cf15de0a81c) Merge pull request #2694 from DanSheps/2693-fiber-cable-colors - [`27ca0d0`](https://github.com/netbox-community/netbox/commit/27ca0d09300cb24a4b42cea1dea95e0d9c02ccff) Merge pull request #2737 from TakeMeNL/feature/2726 - [`3101a86`](https://github.com/netbox-community/netbox/commit/3101a86381b42f73077516efc20cc17e86a01c08) Changelog updates; import cleanup - [`209a9f0`](https://github.com/netbox-community/netbox/commit/209a9f0ffcc64ce8095b7e4119524c643a805a77) Closes #1630: Enable bulk editing of prefix/IP mask length - [`0a820d9`](https://github.com/netbox-community/netbox/commit/0a820d9c98406b067f3d5e29aff7b026def51189) Closes #1871: Enable filtering sites by parent region - [`848aa0b`](https://github.com/netbox-community/netbox/commit/848aa0b0980cec86cf5dc5873cb5afc9f0a04e73) Closes #1870: Add per-page toggle to object lists ### 📊 Changes **21 files changed** (+258 additions, -91 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.md` (+10 -5) 📝 `CHANGELOG.md` (+22 -0) 📝 `netbox/dcim/api/views.py` (+8 -3) 📝 `netbox/dcim/constants.py` (+6 -0) 📝 `netbox/dcim/filters.py` (+16 -6) 📝 `netbox/dcim/forms.py` (+23 -4) 📝 `netbox/dcim/models.py` (+53 -43) 📝 `netbox/dcim/views.py` (+13 -2) 📝 `netbox/ipam/forms.py` (+10 -0) 📝 `netbox/ipam/models.py` (+35 -6) 📝 `netbox/netbox/forms.py` (+1 -0) 📝 `netbox/netbox/settings.py` (+9 -1) 📝 `netbox/netbox/views.py` (+8 -2) 📝 `netbox/project-static/css/base.css` (+3 -0) 📝 `netbox/project-static/js/forms.js` (+5 -0) 📝 `netbox/templates/extras/report_list.html` (+1 -1) 📝 `netbox/templates/inc/paginator.html` (+13 -1) 📝 `netbox/templates/responsive_table.html` (+0 -3) 📝 `netbox/templates/utilities/obj_table.html` (+14 -11) 📝 `netbox/utilities/constants.py` (+3 -0) _...and 1 more files_ </details> ### 📄 Description ## Enhancements * [#1630](https://github.com/digitalocean/netbox/issues/1630) - Enable bulk editing of prefix/IP mask length * [#1870](https://github.com/digitalocean/netbox/issues/1870) - Add per-page toggle to object lists * [#1871](https://github.com/digitalocean/netbox/issues/1871) - Enable filtering sites by parent region * [#1983](https://github.com/digitalocean/netbox/issues/1983) - Enable regular expressions when bulk renaming device components * [#2682](https://github.com/digitalocean/netbox/issues/2682) - Add DAC and AOC cable types * [#2693](https://github.com/digitalocean/netbox/issues/2693) - Additional cable colors * [#2726](https://github.com/digitalocean/netbox/issues/2726) - Include cables in global search ## Bug Fixes * [#2742](https://github.com/digitalocean/netbox/issues/2742) - Preserve cluster assignment when editing a device * [#2757](https://github.com/digitalocean/netbox/issues/2757) - Always treat first/last IPs within a /31 or /127 as usable * [#2762](https://github.com/digitalocean/netbox/issues/2762) - Add missing DCIM field values to API `_choices` endpoint * [#2777](https://github.com/digitalocean/netbox/issues/2777) - Fix cable validation to handle duplicate connections on import --- <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:35 +01:00
adam closed this issue 2025-12-29 22:21:35 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12436