[PR #5377] [MERGED] Release v2.9.10 #13011

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5377
Author: @jeremystretch
Created: 11/24/2020
Status: Merged
Merged: 11/24/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

20 files changed (+284 additions, -131 deletions)

View changed files

📝 CONTRIBUTING.md (+10 -2)
📝 docs/configuration/optional-settings.md (+1 -1)
📝 docs/development/application-registry.md (+4 -2)
📝 docs/development/extending-models.md (+12 -8)
docs/development/getting-started.md (+140 -0)
📝 docs/development/index.md (+2 -1)
📝 docs/development/release-checklist.md (+21 -18)
📝 docs/development/style-guide.md (+3 -3)
📝 docs/development/user-preferences.md (+1 -1)
docs/development/utility-views.md (+0 -57)
📝 docs/release-notes/version-2.9.md (+19 -1)
📝 mkdocs.yml (+1 -1)
📝 netbox/dcim/choices.py (+32 -0)
📝 netbox/dcim/forms.py (+12 -2)
📝 netbox/dcim/models/device_components.py (+12 -12)
📝 netbox/extras/webhooks.py (+7 -6)
📝 netbox/ipam/api/views.py (+4 -2)
📝 netbox/ipam/forms.py (+2 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/virtualization/models.py (+0 -12)

📄 Description

Enhancements

  • #5319 - Add USB types for power ports and outlets
  • #5337 - Add "splice" type for pass-through ports

Bug Fixes

  • #5235 - Fix exception when editing IP address with a NAT IP assigned to a non-racked device
  • #5309 - Avoid extraneous database queries when manipulating objects
  • #5345 - Fix non-deterministic ordering of prefixes and IP addresses
  • #5350 - Filter available racks by selected group when creating a rack reservation
  • #5355 - Limit rack groups by selected site when editing a rack
  • #5356 - Populate manufacturer field when adding a device component template
  • #5360 - Clear VLAN assignments when setting interface mode to none

🔄 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/5377 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/24/2020 **Status:** ✅ Merged **Merged:** 11/24/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`340e665`](https://github.com/netbox-community/netbox/commit/340e665817b2d7d40f1fb96bbea43e3c69df36f0) Post release version bump - [`7aa9ecd`](https://github.com/netbox-community/netbox/commit/7aa9ecd17a3eae5ff6dbf89a4e07b1e0631de28e) Closes #5337: Add "splice" port type - [`42c29d0`](https://github.com/netbox-community/netbox/commit/42c29d0f4524f50bf1f704e9865da8c3b3593b09) Merge pull request #5342 from JonathonReinhart/5337-add-splice-rearport-type - [`b9da012`](https://github.com/netbox-community/netbox/commit/b9da0129ffbafc386e7a4329cf96df3fbb5c93c4) Changelog for #5337 - [`0ee4bc2`](https://github.com/netbox-community/netbox/commit/0ee4bc22e52197e878cbfed83e1c621cbbf6f33a) Add note about changelog - [`9f8f9e8`](https://github.com/netbox-community/netbox/commit/9f8f9e8b97e2b42221000afe74619d25cb698b87) Fixes #5345: Fix non-deterministic ordering of prefixes and IP addresses - [`9a73617`](https://github.com/netbox-community/netbox/commit/9a736170fe756e12e6255394077ed841b555078c) Fixes #5350: Filter available racks by selected group when creating a rack reservation - [`8c4d453`](https://github.com/netbox-community/netbox/commit/8c4d4532a47e1b9fabe8b87b9a24e0eace6c30ca) Fixes #5235: Fix exception when editing IP address with a NAT IP assigned to a non-racked device - [`f2bc6f0`](https://github.com/netbox-community/netbox/commit/f2bc6f0f962bb16e3cf9317a1556c1719b116aa0) Fixes #5355: Limit rack groups by selected site when editing a rack - [`a05fc09`](https://github.com/netbox-community/netbox/commit/a05fc091c884b76b9cc699d66b7ded56ebbd0cf9) Fixes #5356: Populate manufacturer field when adding a device component template ### 📊 Changes **20 files changed** (+284 additions, -131 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+10 -2) 📝 `docs/configuration/optional-settings.md` (+1 -1) 📝 `docs/development/application-registry.md` (+4 -2) 📝 `docs/development/extending-models.md` (+12 -8) ➕ `docs/development/getting-started.md` (+140 -0) 📝 `docs/development/index.md` (+2 -1) 📝 `docs/development/release-checklist.md` (+21 -18) 📝 `docs/development/style-guide.md` (+3 -3) 📝 `docs/development/user-preferences.md` (+1 -1) ➖ `docs/development/utility-views.md` (+0 -57) 📝 `docs/release-notes/version-2.9.md` (+19 -1) 📝 `mkdocs.yml` (+1 -1) 📝 `netbox/dcim/choices.py` (+32 -0) 📝 `netbox/dcim/forms.py` (+12 -2) 📝 `netbox/dcim/models/device_components.py` (+12 -12) 📝 `netbox/extras/webhooks.py` (+7 -6) 📝 `netbox/ipam/api/views.py` (+4 -2) 📝 `netbox/ipam/forms.py` (+2 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/virtualization/models.py` (+0 -12) </details> ### 📄 Description ### Enhancements * [#5319](https://github.com/netbox-community/netbox/issues/5319) - Add USB types for power ports and outlets * [#5337](https://github.com/netbox-community/netbox/issues/5337) - Add "splice" type for pass-through ports ### Bug Fixes * [#5235](https://github.com/netbox-community/netbox/issues/5235) - Fix exception when editing IP address with a NAT IP assigned to a non-racked device * [#5309](https://github.com/netbox-community/netbox/issues/5309) - Avoid extraneous database queries when manipulating objects * [#5345](https://github.com/netbox-community/netbox/issues/5345) - Fix non-deterministic ordering of prefixes and IP addresses * [#5350](https://github.com/netbox-community/netbox/issues/5350) - Filter available racks by selected group when creating a rack reservation * [#5355](https://github.com/netbox-community/netbox/issues/5355) - Limit rack groups by selected site when editing a rack * [#5356](https://github.com/netbox-community/netbox/issues/5356) - Populate manufacturer field when adding a device component template * [#5360](https://github.com/netbox-community/netbox/issues/5360) - Clear VLAN assignments when setting interface mode to none --- <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:53 +01:00
adam closed this issue 2025-12-29 22:24:54 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13011