[PR #5062] [MERGED] Release v2.9.2 #12964

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5062
Author: @jeremystretch
Created: 8/27/2020
Status: Merged
Merged: 8/27/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 3522eaf Post-release version bump
  • fcc15d2 Use correct serializer for available-prefixes POST response
  • 6e28490 Fixes #5038: Fix validation of primary IPs assigned to virtual machines
  • e7cf87b Fixes #5035: Fix exception when modifying an IP address assigned to a VM
  • 9147823 Fixes #5042: Fix display of SLAAC label for IP addresses status
  • 78d6561 Fixes #5040: Limit SLAAC status to IPv6 addresses
  • 32a0e51 Fixes #5041: Fix form tabs when assigning an IP to a VM interface
  • df97eb2 Fixes #5045: Allow assignment of interfaces to non-master VC peer LAG during import
  • 5da7590 Fixes #4988: Fix ordering of rack reservations with identical creation times
  • 236db7d Merge pull request #5039 from innovationnorway/5002-available-prefixes-swagger

📊 Changes

17 files changed (+157 additions, -52 deletions)

View changed files

📝 docs/release-notes/version-2.9.md (+24 -0)
📝 netbox/dcim/elevations.py (+12 -4)
📝 netbox/dcim/forms.py (+10 -5)
netbox/dcim/migrations/0115_rackreservation_order.py (+17 -0)
📝 netbox/dcim/models/devices.py (+1 -1)
📝 netbox/dcim/models/racks.py (+1 -1)
📝 netbox/dcim/tables.py (+41 -9)
📝 netbox/ipam/api/views.py (+2 -2)
📝 netbox/ipam/models.py (+8 -1)
📝 netbox/ipam/tables.py (+12 -4)
📝 netbox/ipam/views.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/ipam/inc/ipadress_edit_header.html (+1 -1)
📝 netbox/templates/virtualization/inc/vminterface.html (+4 -4)
📝 netbox/virtualization/forms.py (+15 -14)
📝 netbox/virtualization/models.py (+3 -3)
📝 netbox/virtualization/tables.py (+4 -1)

📄 Description

Enhancements

  • #5055 - Add tags column to device/VM component list tables
  • #5056 - Add interface and parent columns to IP address list

Bug Fixes

  • #4988 - Fix ordering of rack reservations with identical creation times
  • #5002 - Correct OpenAPI definition for available-prefixes endpoint
  • #5035 - Fix exception when modifying an IP address assigned to a VM
  • #5038 - Fix validation of primary IPs assigned to virtual machines
  • #5040 - Limit SLAAC status to IPv6 addresses
  • #5041 - Fix form tabs when assigning an IP to a VM interface
  • #5042 - Fix display of SLAAC label for IP addresses status
  • #5045 - Allow assignment of interfaces to non-master VC peer LAG during import
  • #5058 - Correct URL for front rack elevation images when using external storage
  • #5059 - Fix inclusion of checkboxes for interfaces in virtual machine view
  • #5060 - Fix validation when bulk-importing child devices
  • #5061 - Allow adding/removing tags when bulk editing 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/5062 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/27/2020 **Status:** ✅ Merged **Merged:** 8/27/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`3522eaf`](https://github.com/netbox-community/netbox/commit/3522eafd2ca7924e4883feeb63006972502f0fc5) Post-release version bump - [`fcc15d2`](https://github.com/netbox-community/netbox/commit/fcc15d2e33535db8d8a28b3698aa106baf3413e2) Use correct serializer for available-prefixes POST response - [`6e28490`](https://github.com/netbox-community/netbox/commit/6e28490b848b4903f050d306b1a914701e43d6d4) Fixes #5038: Fix validation of primary IPs assigned to virtual machines - [`e7cf87b`](https://github.com/netbox-community/netbox/commit/e7cf87be97a6ce9e34e58fbe75a5609a0002b00f) Fixes #5035: Fix exception when modifying an IP address assigned to a VM - [`9147823`](https://github.com/netbox-community/netbox/commit/9147823305f00c4932a1e9ca13f24c46c7f576bc) Fixes #5042: Fix display of SLAAC label for IP addresses status - [`78d6561`](https://github.com/netbox-community/netbox/commit/78d6561e3928e2d221044cf3fb1096e16437f398) Fixes #5040: Limit SLAAC status to IPv6 addresses - [`32a0e51`](https://github.com/netbox-community/netbox/commit/32a0e519add5c8a3542fdd6346d222623ad81a66) Fixes #5041: Fix form tabs when assigning an IP to a VM interface - [`df97eb2`](https://github.com/netbox-community/netbox/commit/df97eb2f72c602d4eef7fb3d51ba7d2cf4532b97) Fixes #5045: Allow assignment of interfaces to non-master VC peer LAG during import - [`5da7590`](https://github.com/netbox-community/netbox/commit/5da7590eea2c4e7eaa7c57bc4c18b78c8cefb626) Fixes #4988: Fix ordering of rack reservations with identical creation times - [`236db7d`](https://github.com/netbox-community/netbox/commit/236db7d42dcb20132d4dca407a050b4a8f94186d) Merge pull request #5039 from innovationnorway/5002-available-prefixes-swagger ### 📊 Changes **17 files changed** (+157 additions, -52 deletions) <details> <summary>View changed files</summary> 📝 `docs/release-notes/version-2.9.md` (+24 -0) 📝 `netbox/dcim/elevations.py` (+12 -4) 📝 `netbox/dcim/forms.py` (+10 -5) ➕ `netbox/dcim/migrations/0115_rackreservation_order.py` (+17 -0) 📝 `netbox/dcim/models/devices.py` (+1 -1) 📝 `netbox/dcim/models/racks.py` (+1 -1) 📝 `netbox/dcim/tables.py` (+41 -9) 📝 `netbox/ipam/api/views.py` (+2 -2) 📝 `netbox/ipam/models.py` (+8 -1) 📝 `netbox/ipam/tables.py` (+12 -4) 📝 `netbox/ipam/views.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/ipam/inc/ipadress_edit_header.html` (+1 -1) 📝 `netbox/templates/virtualization/inc/vminterface.html` (+4 -4) 📝 `netbox/virtualization/forms.py` (+15 -14) 📝 `netbox/virtualization/models.py` (+3 -3) 📝 `netbox/virtualization/tables.py` (+4 -1) </details> ### 📄 Description ### Enhancements * [#5055](https://github.com/netbox-community/netbox/issues/5055) - Add tags column to device/VM component list tables * [#5056](https://github.com/netbox-community/netbox/issues/5056) - Add interface and parent columns to IP address list ### Bug Fixes * [#4988](https://github.com/netbox-community/netbox/issues/4988) - Fix ordering of rack reservations with identical creation times * [#5002](https://github.com/netbox-community/netbox/issues/5002) - Correct OpenAPI definition for `available-prefixes` endpoint * [#5035](https://github.com/netbox-community/netbox/issues/5035) - Fix exception when modifying an IP address assigned to a VM * [#5038](https://github.com/netbox-community/netbox/issues/5038) - Fix validation of primary IPs assigned to virtual machines * [#5040](https://github.com/netbox-community/netbox/issues/5040) - Limit SLAAC status to IPv6 addresses * [#5041](https://github.com/netbox-community/netbox/issues/5041) - Fix form tabs when assigning an IP to a VM interface * [#5042](https://github.com/netbox-community/netbox/issues/5042) - Fix display of SLAAC label for IP addresses status * [#5045](https://github.com/netbox-community/netbox/issues/5045) - Allow assignment of interfaces to non-master VC peer LAG during import * [#5058](https://github.com/netbox-community/netbox/issues/5058) - Correct URL for front rack elevation images when using external storage * [#5059](https://github.com/netbox-community/netbox/issues/5059) - Fix inclusion of checkboxes for interfaces in virtual machine view * [#5060](https://github.com/netbox-community/netbox/issues/5060) - Fix validation when bulk-importing child devices * [#5061](https://github.com/netbox-community/netbox/issues/5061) - Allow adding/removing tags when bulk editing 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:24:37 +01:00
adam closed this issue 2025-12-29 22:24:37 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12964