[PR #5100] [MERGED] Release v2.9.3 #12969

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5100
Author: @jeremystretch
Created: 9/4/2020
Status: Merged
Merged: 9/4/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 2435c17 Post-release version bump
  • bfcbd9d Redirect users away from /login, if they are already logged in
  • 5bff50c Fixes #5063: Fix "add device" link in rack elevations for opposite side of half-depth devices
  • 473d76c Fixes #5074: Fix inclusion of VC member interfaces when viewing VC master
  • 967073e Fixes #5081: Fix exception during webhook processing with custom select field
  • 7dbeaf7 Fixes #5078: Fix assignment of existing IP addresses to interfaces via web UI
  • b3b7e08 Closes #5076: Specify pip3
  • a010303 Fixes #5087: Restore label field when editing console server ports, power ports, and power outlets
  • 6305a35 Fixes #5085: Fix ordering by assignment in IP addresses table
  • 5d7935c Fixes #5090: Fix status display for console/power/interface connections

📊 Changes

28 files changed (+262 additions, -48 deletions)

View changed files

📝 docs/installation/3-netbox.md (+1 -1)
📝 docs/plugins/development.md (+3 -0)
📝 docs/release-notes/version-2.9.md (+25 -0)
📝 netbox/dcim/choices.py (+6 -0)
📝 netbox/dcim/elevations.py (+1 -1)
📝 netbox/dcim/forms.py (+3 -3)
📝 netbox/dcim/tables.py (+20 -1)
📝 netbox/dcim/views.py (+8 -1)
📝 netbox/extras/api/customfields.py (+1 -1)
📝 netbox/extras/api/views.py (+1 -0)
📝 netbox/extras/filters.py (+9 -1)
📝 netbox/extras/tests/test_filters.py (+80 -2)
📝 netbox/ipam/tables.py (+6 -6)
📝 netbox/ipam/views.py (+2 -2)
📝 netbox/netbox/settings.py (+1 -1)
netbox/templates/dcim/device_component_edit.html (+16 -0)
📝 netbox/templates/dcim/inc/consoleport.html (+1 -1)
📝 netbox/templates/dcim/inc/consoleserverport.html (+1 -1)
📝 netbox/templates/dcim/inc/devicebay.html (+1 -1)
📝 netbox/templates/dcim/inc/poweroutlet.html (+1 -1)

...and 8 more files

📄 Description

Enhancements

  • #4977 - Redirect authenticated users from login view
  • #5048 - Show the device/VM name when editing a component
  • #5072 - Add REST API filters for image attachments
  • #5080 - Add 8P6C, 8P4C, 8P2C port types

Bug Fixes

  • #5046 - Disabled plugin menu items are no longer clickable
  • #5063 - Fix "add device" link in rack elevations for opposite side of half-depth devices
  • #5074 - Fix inclusion of VC member interfaces when viewing VC master
  • #5078 - Fix assignment of existing IP addresses to interfaces via web UI
  • #5081 - Fix exception during webhook processing with custom select field
  • #5085 - Fix ordering by assignment in IP addresses table
  • #5087 - Restore label field when editing console server ports, power ports, and power outlets
  • #5089 - Redirect to device view after editing component
  • #5090 - Fix status display for console/power/interface connections
  • #5091 - Avoid KeyError when handling invalid table preferences
  • #5095 - Show assigned prefixes in VLANs list

🔄 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/5100 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 9/4/2020 **Status:** ✅ Merged **Merged:** 9/4/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`2435c17`](https://github.com/netbox-community/netbox/commit/2435c177f53186b1f9d4683377b3e73315a7e0d3) Post-release version bump - [`bfcbd9d`](https://github.com/netbox-community/netbox/commit/bfcbd9da6c17df65b63a355c276cea0b53d5d305) Redirect users away from /login, if they are already logged in - [`5bff50c`](https://github.com/netbox-community/netbox/commit/5bff50cade41dd55756e0ff4ff3f0df5fca50041) Fixes #5063: Fix "add device" link in rack elevations for opposite side of half-depth devices - [`473d76c`](https://github.com/netbox-community/netbox/commit/473d76c9d1cf24deab6991b1eb994fa11f53a65e) Fixes #5074: Fix inclusion of VC member interfaces when viewing VC master - [`967073e`](https://github.com/netbox-community/netbox/commit/967073eaaf6764096f603df354c63d6b7656760b) Fixes #5081: Fix exception during webhook processing with custom select field - [`7dbeaf7`](https://github.com/netbox-community/netbox/commit/7dbeaf7a0108e393ceaeefd6d3911c8fc79b24b6) Fixes #5078: Fix assignment of existing IP addresses to interfaces via web UI - [`b3b7e08`](https://github.com/netbox-community/netbox/commit/b3b7e08c50583fe06be1bef1083c0994e00abbf9) Closes #5076: Specify pip3 - [`a010303`](https://github.com/netbox-community/netbox/commit/a0103036e4a90eddb6d955c239a15d8a1bc10764) Fixes #5087: Restore label field when editing console server ports, power ports, and power outlets - [`6305a35`](https://github.com/netbox-community/netbox/commit/6305a35a4f5e2c75e0fb5f95b8bdbf5e0ed23391) Fixes #5085: Fix ordering by assignment in IP addresses table - [`5d7935c`](https://github.com/netbox-community/netbox/commit/5d7935c8556bc540aeea6c0de49b8214be5a12bf) Fixes #5090: Fix status display for console/power/interface connections ### 📊 Changes **28 files changed** (+262 additions, -48 deletions) <details> <summary>View changed files</summary> 📝 `docs/installation/3-netbox.md` (+1 -1) 📝 `docs/plugins/development.md` (+3 -0) 📝 `docs/release-notes/version-2.9.md` (+25 -0) 📝 `netbox/dcim/choices.py` (+6 -0) 📝 `netbox/dcim/elevations.py` (+1 -1) 📝 `netbox/dcim/forms.py` (+3 -3) 📝 `netbox/dcim/tables.py` (+20 -1) 📝 `netbox/dcim/views.py` (+8 -1) 📝 `netbox/extras/api/customfields.py` (+1 -1) 📝 `netbox/extras/api/views.py` (+1 -0) 📝 `netbox/extras/filters.py` (+9 -1) 📝 `netbox/extras/tests/test_filters.py` (+80 -2) 📝 `netbox/ipam/tables.py` (+6 -6) 📝 `netbox/ipam/views.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+1 -1) ➕ `netbox/templates/dcim/device_component_edit.html` (+16 -0) 📝 `netbox/templates/dcim/inc/consoleport.html` (+1 -1) 📝 `netbox/templates/dcim/inc/consoleserverport.html` (+1 -1) 📝 `netbox/templates/dcim/inc/devicebay.html` (+1 -1) 📝 `netbox/templates/dcim/inc/poweroutlet.html` (+1 -1) _...and 8 more files_ </details> ### 📄 Description ### Enhancements * [#4977](https://github.com/netbox-community/netbox/issues/4977) - Redirect authenticated users from login view * [#5048](https://github.com/netbox-community/netbox/issues/5048) - Show the device/VM name when editing a component * [#5072](https://github.com/netbox-community/netbox/issues/5072) - Add REST API filters for image attachments * [#5080](https://github.com/netbox-community/netbox/issues/5080) - Add 8P6C, 8P4C, 8P2C port types ### Bug Fixes * [#5046](https://github.com/netbox-community/netbox/issues/5046) - Disabled plugin menu items are no longer clickable * [#5063](https://github.com/netbox-community/netbox/issues/5063) - Fix "add device" link in rack elevations for opposite side of half-depth devices * [#5074](https://github.com/netbox-community/netbox/issues/5074) - Fix inclusion of VC member interfaces when viewing VC master * [#5078](https://github.com/netbox-community/netbox/issues/5078) - Fix assignment of existing IP addresses to interfaces via web UI * [#5081](https://github.com/netbox-community/netbox/issues/5081) - Fix exception during webhook processing with custom select field * [#5085](https://github.com/netbox-community/netbox/issues/5085) - Fix ordering by assignment in IP addresses table * [#5087](https://github.com/netbox-community/netbox/issues/5087) - Restore label field when editing console server ports, power ports, and power outlets * [#5089](https://github.com/netbox-community/netbox/issues/5089) - Redirect to device view after editing component * [#5090](https://github.com/netbox-community/netbox/issues/5090) - Fix status display for console/power/interface connections * [#5091](https://github.com/netbox-community/netbox/issues/5091) - Avoid KeyError when handling invalid table preferences * [#5095](https://github.com/netbox-community/netbox/issues/5095) - Show assigned prefixes in VLANs list --- <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:24:39 +01:00
adam closed this issue 2025-12-29 22:24:39 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12969