[PR #2688] [MERGED] Release v2.5.1 #12424

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

20 files changed (+161 additions, -45 deletions)

View changed files

📝 CHANGELOG.md (+21 -0)
📝 docs/api/overview.md (+47 -1)
📝 netbox/circuits/models.py (+1 -1)
📝 netbox/dcim/api/views.py (+1 -1)
📝 netbox/dcim/constants.py (+2 -0)
📝 netbox/dcim/models.py (+12 -7)
📝 netbox/dcim/signals.py (+1 -1)
📝 netbox/dcim/tables.py (+1 -1)
📝 netbox/extras/admin.py (+2 -1)
📝 netbox/extras/filters.py (+4 -4)
📝 netbox/extras/forms.py (+10 -5)
📝 netbox/ipam/models.py (+1 -1)
📝 netbox/ipam/tables.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/circuits/circuittermination_edit.html (+1 -1)
📝 netbox/templates/dcim/inc/cable_termination.html (+1 -1)
📝 netbox/templates/dcim/inc/cable_trace_end.html (+3 -2)
📝 netbox/templates/dcim/inc/interface.html (+29 -7)
📝 netbox/templates/dcim/interface.html (+4 -0)
📝 netbox/utilities/api.py (+18 -9)

📄 Description

Enhancements

  • #2655 - Add 128GFC Fibrechannel interface type
  • #2674 - Enable filtering changelog by object type under web UI

Bug Fixes

  • #2662 - Fix ImproperlyConfigured exception when rendering API docs
  • #2663 - Prevent duplicate interfaces from appearing under VLAN members view
  • #2666 - Correct display of length unit in cables list
  • #2676 - Fix exception when passing dictionary value to a ChoiceField
  • #2678 - Fix error when viewing webhook in admin UI without write permission
  • #2680 - Disallow POST requests to /dcim/interface-connections/ API endpoint
  • #2683 - Fix exception when connecting a cable to a RearPort with no corresponding FrontPort
  • #2684 - Fix custom field filtering
  • #2687 - Correct naming of before/after filters for changelog entries

🔄 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/2688 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/13/2018 **Status:** ✅ Merged **Merged:** 12/13/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`93c95fd`](https://github.com/netbox-community/netbox/commit/93c95fdfa85b1abaf4ba20e8979e3ee40e08df1f) Post-release version bump - [`b697c30`](https://github.com/netbox-community/netbox/commit/b697c30941137f7d0a28d7aa14d52e880a006090) #2627: Removed reference to provider from Circuit.__str__() - [`b4f79f1`](https://github.com/netbox-community/netbox/commit/b4f79f1667a2cb80e6e2ad1d5b1458263df57c9a) Fixes #2666: Uses correct function for displaying choices label - [`24d1707`](https://github.com/netbox-community/netbox/commit/24d1707693fc5676fe23c600504877c49638b24b) Merge pull request #2670 from DanSheps/2666-fix-length-display - [`b8a4316`](https://github.com/netbox-community/netbox/commit/b8a4316297e0803e4261736a368c87146edddf1b) Changelog for #2666 - [`8364e56`](https://github.com/netbox-community/netbox/commit/8364e56e867ae7e4fe9b67cf6fdb6264ee8e4c48) Fixes #2676: Fix exception when passing dictionary value to a ChoiceField - [`b0a6781`](https://github.com/netbox-community/netbox/commit/b0a6781623117a362dcc8415eba36e3b096a24f6) Fixes #2680: Disallow POST requests to /dcim/interface-connections/ API endpoint - [`6460c95`](https://github.com/netbox-community/netbox/commit/6460c95e000c080cc7bd0c957d8d1485715c43c2) Fixes #2678: Fix error when viewing webhook in admin UI without write permission - [`ee038bd`](https://github.com/netbox-community/netbox/commit/ee038bd77b10365831d5c636f2768307f6c53d01) Closes #2655: Add 128GFC Fibrechannel interface type - [`3480832`](https://github.com/netbox-community/netbox/commit/3480832bf5f8be078243da28f04f5f279b636222) Added changelog for #2662 (fixed under #2680) ### 📊 Changes **20 files changed** (+161 additions, -45 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+21 -0) 📝 `docs/api/overview.md` (+47 -1) 📝 `netbox/circuits/models.py` (+1 -1) 📝 `netbox/dcim/api/views.py` (+1 -1) 📝 `netbox/dcim/constants.py` (+2 -0) 📝 `netbox/dcim/models.py` (+12 -7) 📝 `netbox/dcim/signals.py` (+1 -1) 📝 `netbox/dcim/tables.py` (+1 -1) 📝 `netbox/extras/admin.py` (+2 -1) 📝 `netbox/extras/filters.py` (+4 -4) 📝 `netbox/extras/forms.py` (+10 -5) 📝 `netbox/ipam/models.py` (+1 -1) 📝 `netbox/ipam/tables.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/circuits/circuittermination_edit.html` (+1 -1) 📝 `netbox/templates/dcim/inc/cable_termination.html` (+1 -1) 📝 `netbox/templates/dcim/inc/cable_trace_end.html` (+3 -2) 📝 `netbox/templates/dcim/inc/interface.html` (+29 -7) 📝 `netbox/templates/dcim/interface.html` (+4 -0) 📝 `netbox/utilities/api.py` (+18 -9) </details> ### 📄 Description ## Enhancements * [#2655](https://github.com/digitalocean/netbox/issues/2655) - Add 128GFC Fibrechannel interface type * [#2674](https://github.com/digitalocean/netbox/issues/2674) - Enable filtering changelog by object type under web UI ## Bug Fixes * [#2662](https://github.com/digitalocean/netbox/issues/2662) - Fix ImproperlyConfigured exception when rendering API docs * [#2663](https://github.com/digitalocean/netbox/issues/2663) - Prevent duplicate interfaces from appearing under VLAN members view * [#2666](https://github.com/digitalocean/netbox/issues/2666) - Correct display of length unit in cables list * [#2676](https://github.com/digitalocean/netbox/issues/2676) - Fix exception when passing dictionary value to a ChoiceField * [#2678](https://github.com/digitalocean/netbox/issues/2678) - Fix error when viewing webhook in admin UI without write permission * [#2680](https://github.com/digitalocean/netbox/issues/2680) - Disallow POST requests to `/dcim/interface-connections/` API endpoint * [#2683](https://github.com/digitalocean/netbox/issues/2683) - Fix exception when connecting a cable to a RearPort with no corresponding FrontPort * [#2684](https://github.com/digitalocean/netbox/issues/2684) - Fix custom field filtering * [#2687](https://github.com/digitalocean/netbox/issues/2687) - Correct naming of before/after filters for changelog entries --- <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:27 +01:00
adam closed this issue 2025-12-29 22:21:29 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12424