[PR #2387] [MERGED] Release v2.4.4 #12367

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2387
Author: @jeremystretch
Created: 8/22/2018
Status: Merged
Merged: 8/22/2018
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

23 files changed (+1817 additions, -50 deletions)

View changed files

CHANGELOG.md (+1654 -0)
📝 docs/configuration/index.md (+1 -1)
📝 docs/development/release-checklist.md (+2 -2)
📝 docs/installation/3-http-daemon.md (+1 -1)
📝 netbox/dcim/constants.py (+9 -0)
📝 netbox/dcim/filters.py (+13 -0)
netbox/dcim/migrations/0062_interface_mtu.py (+29 -0)
📝 netbox/dcim/models.py (+10 -2)
📝 netbox/extras/admin.py (+8 -11)
netbox/netbox/admin.py (+30 -0)
📝 netbox/netbox/forms.py (+1 -0)
📝 netbox/netbox/settings.py (+1 -2)
📝 netbox/netbox/urls.py (+2 -3)
📝 netbox/netbox/views.py (+16 -3)
📝 netbox/secrets/admin.py (+2 -1)
📝 netbox/templates/dcim/device.html (+5 -3)
📝 netbox/templates/dcim/interface.html (+2 -2)
📝 netbox/templates/virtualization/virtualmachine.html (+2 -2)
📝 netbox/users/admin.py (+2 -1)
📝 netbox/utilities/api.py (+3 -4)

...and 3 more files

📄 Description

Enhancements

  • #2168 - Added Extreme SummitStack interface form factors
  • #2356 - Include cluster site as read-only field in VirtualMachine serializer
  • #2362 - Implemented custom admin site to properly handle BASE_PATH
  • #2254 - Implemented searchability for Rack Groups

Bug Fixes

  • #2353 - Handle DoesNotExist exception when deleting a device with connected interfaces
  • #2354 - Increased maximum MTU for interfaces to 65536 bytes
  • #2355 - Added item count to inventory tab on device view
  • #2368 - Record change in device changelog when altering cluster assignment
  • #2369 - Corrected time zone validation on site API serializer
  • #2370 - Redirect to parent device after deleting device bays
  • #2374 - Fix toggling display of IP addresses in virtual machine interfaces list
  • #2378 - Corrected "edit" link for virtual machine interfaces

🔄 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/2387 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/22/2018 **Status:** ✅ Merged **Merged:** 8/22/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`cd2aee3`](https://github.com/netbox-community/netbox/commit/cd2aee305330eb4c7a64de387c146490585afe0e) Post-release version bump - [`ff65f7f`](https://github.com/netbox-community/netbox/commit/ff65f7fd7b8d2fca407d2c4f0f38982968bf87e0) Fixes #2362: Implemented custom admin site to properly handle BASE_PATH - [`4bfc32e`](https://github.com/netbox-community/netbox/commit/4bfc32ec99aafd21c22b49725bb2a78ceccad4e9) Closes #2355: Added item count to inventory tab on device view - [`5dce7c4`](https://github.com/netbox-community/netbox/commit/5dce7c4e48ce1f03edef3bce7e87b220e66965ba) Closes #2356: Include cluster site as read-only field in VirtualMachine serializer - [`1556fd0`](https://github.com/netbox-community/netbox/commit/1556fd0e92c0e790f68e8b86978381d590cf4d04) Added a release changelog - [`fd32a71`](https://github.com/netbox-community/netbox/commit/fd32a711312c39ca10ac44f54a3da3ce9937a818) Rename changelog - [`2804d89`](https://github.com/netbox-community/netbox/commit/2804d89c5ef00e6f11b4469e026be85c0fc074a2) Fixes #2368: Record change in device changelog when altering cluster assignment - [`d46b3e2`](https://github.com/netbox-community/netbox/commit/d46b3e2446031463cf9a6273acc827f60b6d53b5) #2368: Append changelog - [`bc49979`](https://github.com/netbox-community/netbox/commit/bc4997924393dff18fca4adb7bc6da781956b506) added rack group search #2254 - [`7717471`](https://github.com/netbox-community/netbox/commit/771747147ce4e7d36c6f7979d93385203450eb14) #2254 changelog entry ### 📊 Changes **23 files changed** (+1817 additions, -50 deletions) <details> <summary>View changed files</summary> ➕ `CHANGELOG.md` (+1654 -0) 📝 `docs/configuration/index.md` (+1 -1) 📝 `docs/development/release-checklist.md` (+2 -2) 📝 `docs/installation/3-http-daemon.md` (+1 -1) 📝 `netbox/dcim/constants.py` (+9 -0) 📝 `netbox/dcim/filters.py` (+13 -0) ➕ `netbox/dcim/migrations/0062_interface_mtu.py` (+29 -0) 📝 `netbox/dcim/models.py` (+10 -2) 📝 `netbox/extras/admin.py` (+8 -11) ➕ `netbox/netbox/admin.py` (+30 -0) 📝 `netbox/netbox/forms.py` (+1 -0) 📝 `netbox/netbox/settings.py` (+1 -2) 📝 `netbox/netbox/urls.py` (+2 -3) 📝 `netbox/netbox/views.py` (+16 -3) 📝 `netbox/secrets/admin.py` (+2 -1) 📝 `netbox/templates/dcim/device.html` (+5 -3) 📝 `netbox/templates/dcim/interface.html` (+2 -2) 📝 `netbox/templates/virtualization/virtualmachine.html` (+2 -2) 📝 `netbox/users/admin.py` (+2 -1) 📝 `netbox/utilities/api.py` (+3 -4) _...and 3 more files_ </details> ### 📄 Description ## Enhancements * [#2168](https://github.com/digitalocean/netbox/issues/2168) - Added Extreme SummitStack interface form factors * [#2356](https://github.com/digitalocean/netbox/issues/2356) - Include cluster site as read-only field in VirtualMachine serializer * [#2362](https://github.com/digitalocean/netbox/issues/2362) - Implemented custom admin site to properly handle BASE_PATH * [#2254](https://github.com/digitalocean/netbox/issues/2254) - Implemented searchability for Rack Groups ## Bug Fixes * [#2353](https://github.com/digitalocean/netbox/issues/2353) - Handle `DoesNotExist` exception when deleting a device with connected interfaces * [#2354](https://github.com/digitalocean/netbox/issues/2354) - Increased maximum MTU for interfaces to 65536 bytes * [#2355](https://github.com/digitalocean/netbox/issues/2355) - Added item count to inventory tab on device view * [#2368](https://github.com/digitalocean/netbox/issues/2368) - Record change in device changelog when altering cluster assignment * [#2369](https://github.com/digitalocean/netbox/issues/2369) - Corrected time zone validation on site API serializer * [#2370](https://github.com/digitalocean/netbox/issues/2370) - Redirect to parent device after deleting device bays * [#2374](https://github.com/digitalocean/netbox/issues/2374) - Fix toggling display of IP addresses in virtual machine interfaces list * [#2378](https://github.com/digitalocean/netbox/issues/2378) - Corrected "edit" link for virtual machine interfaces --- <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:07 +01:00
adam closed this issue 2025-12-29 22:21:07 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12367