[PR #2725] [MERGED] Release v2.5.2 #12425

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2725
Author: @jeremystretch
Created: 12/21/2018
Status: Merged
Merged: 12/21/2018
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 064dd9b Updating LDAP documentation
  • d4a9318 Post-release version bump
  • 82e8c01 Fixes #2707: Correct permission evaluation for circuit termination cabling
  • 68cb8b6 Closes #2701: Enable filtering of prefixes by exact prefix value
  • aca57ec Fixes #2698: Remove pagination restriction on bulk component creation for devices/VMs
  • f4a22e5 Introduced fgcolor template filter to render ideal foreground color for any background color
  • 2f1db2f Fixes #2691: Cable trace should follow circuits
  • 40cb576 Fixes #2673: Fix exception on LLDP neighbors view for device with a circuit connected
  • ba9fe40 #2675: Added InventoryItem search form field for 'discovered'
  • 7f71fc1 Closes #2561: Add 200G and 400G interface types

📊 Changes

21 files changed (+149 additions, -21 deletions)

View changed files

📝 CHANGELOG.md (+22 -0)
📝 docs/additional-features/reports.md (+2 -2)
📝 docs/installation/4-ldap.md (+21 -0)
📝 netbox/dcim/api/views.py (+1 -1)
📝 netbox/dcim/constants.py (+6 -0)
netbox/dcim/exceptions.py (+5 -0)
📝 netbox/dcim/forms.py (+15 -0)
📝 netbox/dcim/models.py (+14 -2)
📝 netbox/dcim/tables.py (+2 -1)
📝 netbox/dcim/views.py (+6 -0)
📝 netbox/extras/urls.py (+2 -2)
📝 netbox/extras/views.py (+1 -1)
📝 netbox/ipam/filters.py (+13 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/js/forms.js (+1 -1)
📝 netbox/templates/circuits/inc/circuit_termination.html (+1 -1)
📝 netbox/templates/dcim/device_lldp_neighbors.html (+8 -1)
📝 netbox/templates/utilities/obj_bulk_add_component.html (+3 -2)
📝 netbox/utilities/templatetags/helpers.py (+13 -0)
📝 netbox/utilities/views.py (+11 -6)

...and 1 more files

📄 Description

Enhancements

  • #2561 - Add 200G and 400G interface types
  • #2701 - Enable filtering of prefixes by exact prefix value

Bug Fixes

  • #2673 - Fix exception on LLDP neighbors view for device with a circuit connected
  • #2691 - Cable trace should follow circuits
  • #2698 - Remove pagination restriction on bulk component creation for devices/VMs
  • #2704 - Fix form select widget population on parent with null value
  • #2707 - Correct permission evaluation for circuit termination cabling
  • #2712 - Preserve list filtering after editing objects in bulk
  • #2717 - Fix bulk deletion of tags
  • #2721 - Detect loops when tracing front/rear ports
  • #2723 - Correct permission evaluation when bulk deleting tags
  • #2724 - Limit rear port choices to current device when editing a front port

🔄 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/2725 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/21/2018 **Status:** ✅ Merged **Merged:** 12/21/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`064dd9b`](https://github.com/netbox-community/netbox/commit/064dd9bef2c592ee57c1a152d491a5ea8feb7ca7) Updating LDAP documentation - [`d4a9318`](https://github.com/netbox-community/netbox/commit/d4a931882638512d088cec4447752000227e5b3e) Post-release version bump - [`82e8c01`](https://github.com/netbox-community/netbox/commit/82e8c0152e77198cd28f66f8b9e00f4d517ea4af) Fixes #2707: Correct permission evaluation for circuit termination cabling - [`68cb8b6`](https://github.com/netbox-community/netbox/commit/68cb8b68957c5b83cec53bafa20a2a5599896f35) Closes #2701: Enable filtering of prefixes by exact prefix value - [`aca57ec`](https://github.com/netbox-community/netbox/commit/aca57ec2813f1326b455c9b8193c4058395286a4) Fixes #2698: Remove pagination restriction on bulk component creation for devices/VMs - [`f4a22e5`](https://github.com/netbox-community/netbox/commit/f4a22e5af37027fb16d86a8337f1e52828b9ec35) Introduced fgcolor template filter to render ideal foreground color for any background color - [`2f1db2f`](https://github.com/netbox-community/netbox/commit/2f1db2fdf3cc8531da0b34c33e265ef1b7643231) Fixes #2691: Cable trace should follow circuits - [`40cb576`](https://github.com/netbox-community/netbox/commit/40cb576e11796bc6591d047a7d9926a0778d2e56) Fixes #2673: Fix exception on LLDP neighbors view for device with a circuit connected - [`ba9fe40`](https://github.com/netbox-community/netbox/commit/ba9fe408bc1ffb3fa5a4d0224755f2868942c041) #2675: Added InventoryItem search form field for 'discovered' - [`7f71fc1`](https://github.com/netbox-community/netbox/commit/7f71fc1d4201f5c5202819672f5bdaa053cf4c22) Closes #2561: Add 200G and 400G interface types ### 📊 Changes **21 files changed** (+149 additions, -21 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+22 -0) 📝 `docs/additional-features/reports.md` (+2 -2) 📝 `docs/installation/4-ldap.md` (+21 -0) 📝 `netbox/dcim/api/views.py` (+1 -1) 📝 `netbox/dcim/constants.py` (+6 -0) ➕ `netbox/dcim/exceptions.py` (+5 -0) 📝 `netbox/dcim/forms.py` (+15 -0) 📝 `netbox/dcim/models.py` (+14 -2) 📝 `netbox/dcim/tables.py` (+2 -1) 📝 `netbox/dcim/views.py` (+6 -0) 📝 `netbox/extras/urls.py` (+2 -2) 📝 `netbox/extras/views.py` (+1 -1) 📝 `netbox/ipam/filters.py` (+13 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/js/forms.js` (+1 -1) 📝 `netbox/templates/circuits/inc/circuit_termination.html` (+1 -1) 📝 `netbox/templates/dcim/device_lldp_neighbors.html` (+8 -1) 📝 `netbox/templates/utilities/obj_bulk_add_component.html` (+3 -2) 📝 `netbox/utilities/templatetags/helpers.py` (+13 -0) 📝 `netbox/utilities/views.py` (+11 -6) _...and 1 more files_ </details> ### 📄 Description ## Enhancements * [#2561](https://github.com/digitalocean/netbox/issues/2561) - Add 200G and 400G interface types * [#2701](https://github.com/digitalocean/netbox/issues/2701) - Enable filtering of prefixes by exact prefix value ## Bug Fixes * [#2673](https://github.com/digitalocean/netbox/issues/2673) - Fix exception on LLDP neighbors view for device with a circuit connected * [#2691](https://github.com/digitalocean/netbox/issues/2691) - Cable trace should follow circuits * [#2698](https://github.com/digitalocean/netbox/issues/2698) - Remove pagination restriction on bulk component creation for devices/VMs * [#2704](https://github.com/digitalocean/netbox/issues/2704) - Fix form select widget population on parent with null value * [#2707](https://github.com/digitalocean/netbox/issues/2707) - Correct permission evaluation for circuit termination cabling * [#2712](https://github.com/digitalocean/netbox/issues/2712) - Preserve list filtering after editing objects in bulk * [#2717](https://github.com/digitalocean/netbox/issues/2717) - Fix bulk deletion of tags * [#2721](https://github.com/digitalocean/netbox/issues/2721) - Detect loops when tracing front/rear ports * [#2723](https://github.com/digitalocean/netbox/issues/2723) - Correct permission evaluation when bulk deleting tags * [#2724](https://github.com/digitalocean/netbox/issues/2724) - Limit rear port choices to current device when editing a front port --- <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:29 +01:00
adam closed this issue 2025-12-29 22:21:30 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12425