[PR #5949] [MERGED] Release v2.10.6 #13075

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5949
Author: @jeremystretch
Created: 3/9/2021
Status: Merged
Merged: 3/9/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • b1cd634 PRVB
  • d2c8aae Fix #5819 and #5872 - Fix Primary IP Sorting Issues for Devices and VMs
  • cfddf57 add custom links to device components
  • 0dd6d55 Fixes: #5630 - Add QSFP+ (64GFC) FibreChannel Interface option
  • 6b19a1e Update changelog
  • a9b216d Update Slack links; start phasing out mailing list
  • 18ab114 Fixes: #5703 - Populate VRF and Tenant fields when adding IP address
  • f63cf6a Update changelog
  • 75d8756 Merge pull request #5897 from wobcom/feature/device_components_custom_links
  • a87f34e Merge pull request #5820 from stuntguy3000/develop

📊 Changes

32 files changed (+375 additions, -225 deletions)

View changed files

.github/FUNDING.yml (+1 -0)
.github/ISSUE_TEMPLATE/bug_report.md (+0 -40)
.github/ISSUE_TEMPLATE/bug_report.yaml (+63 -0)
.github/ISSUE_TEMPLATE/documentation_change.md (+0 -28)
.github/ISSUE_TEMPLATE/documentation_change.yaml (+38 -0)
.github/ISSUE_TEMPLATE/feature_request.md (+0 -54)
.github/ISSUE_TEMPLATE/feature_request.yaml (+58 -0)
.github/ISSUE_TEMPLATE/housekeeping.md (+0 -16)
.github/ISSUE_TEMPLATE/housekeeping.yaml (+27 -0)
📝 CONTRIBUTING.md (+1 -7)
📝 README.md (+5 -1)
📝 docs/additional-features/webhooks.md (+1 -1)
📝 docs/development/index.md (+4 -4)
📝 docs/development/release-checklist.md (+23 -17)
📝 docs/installation/1-postgresql.md (+1 -1)
📝 docs/release-notes/version-2.10.md (+19 -0)
📝 netbox/dcim/choices.py (+2 -0)
📝 netbox/dcim/models/device_components.py (+9 -9)
📝 netbox/dcim/tables/devices.py (+13 -5)
📝 netbox/extras/management/commands/renaturalize.py (+14 -10)

...and 12 more files

📄 Description

Enhancements

  • #5592 - Add IP addresses count to VRF view
  • #5630 - Add QSFP+ (64GFC) FibreChannel Interface option
  • #5884 - Enable custom links for device components
  • #5914 - Add edit/delete buttons for IP addresses on interface view
  • #5942 - Add button to add a new IP address on interface view

Bug Fixes

  • #5703 - Fix VRF and Tenant field population when adding IP addresses from prefix
  • #5819 - Enable ordering of virtual machines by primary IP address
  • #5872 - Ordering of devices by primary IP should respect PREFER_IPV4 configuration parameter
  • #5922 - Fix options for filtering object permissions in admin UI
  • #5935 - Fix filtering prefixes list by multiple prefix values
  • #5948 - Invalidate cached queries when running renaturalize

🔄 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/5949 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/9/2021 **Status:** ✅ Merged **Merged:** 3/9/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b1cd634`](https://github.com/netbox-community/netbox/commit/b1cd634ab4ee0a399075b21031e9f0b559991807) PRVB - [`d2c8aae`](https://github.com/netbox-community/netbox/commit/d2c8aae59c68307424dd914a9076b39c0d580857) Fix #5819 and #5872 - Fix Primary IP Sorting Issues for Devices and VMs - [`cfddf57`](https://github.com/netbox-community/netbox/commit/cfddf570b90d692201284ed16e60b5cfdf97cbf8) add custom links to device components - [`0dd6d55`](https://github.com/netbox-community/netbox/commit/0dd6d552a892a325f0c162749d948725a592ced3) Fixes: #5630 - Add QSFP+ (64GFC) FibreChannel Interface option - [`6b19a1e`](https://github.com/netbox-community/netbox/commit/6b19a1ece9b4d581b36c9842de9ad82fceaf85b4) Update changelog - [`a9b216d`](https://github.com/netbox-community/netbox/commit/a9b216d21216ad595f76c25269752179708ca723) Update Slack links; start phasing out mailing list - [`18ab114`](https://github.com/netbox-community/netbox/commit/18ab1144bba1bd5f86b7f29486453e7a9ce541ab) Fixes: #5703 - Populate VRF and Tenant fields when adding IP address - [`f63cf6a`](https://github.com/netbox-community/netbox/commit/f63cf6a7a431b503cb4e45d77c743549120c01fa) Update changelog - [`75d8756`](https://github.com/netbox-community/netbox/commit/75d875615b8205d4d1ca8a7acbf8ed5f234ee2d7) Merge pull request #5897 from wobcom/feature/device_components_custom_links - [`a87f34e`](https://github.com/netbox-community/netbox/commit/a87f34ebb3311545e5ecc4ff739ade8129760ce7) Merge pull request #5820 from stuntguy3000/develop ### 📊 Changes **32 files changed** (+375 additions, -225 deletions) <details> <summary>View changed files</summary> ➕ `.github/FUNDING.yml` (+1 -0) ➖ `.github/ISSUE_TEMPLATE/bug_report.md` (+0 -40) ➕ `.github/ISSUE_TEMPLATE/bug_report.yaml` (+63 -0) ➖ `.github/ISSUE_TEMPLATE/documentation_change.md` (+0 -28) ➕ `.github/ISSUE_TEMPLATE/documentation_change.yaml` (+38 -0) ➖ `.github/ISSUE_TEMPLATE/feature_request.md` (+0 -54) ➕ `.github/ISSUE_TEMPLATE/feature_request.yaml` (+58 -0) ➖ `.github/ISSUE_TEMPLATE/housekeeping.md` (+0 -16) ➕ `.github/ISSUE_TEMPLATE/housekeeping.yaml` (+27 -0) 📝 `CONTRIBUTING.md` (+1 -7) 📝 `README.md` (+5 -1) 📝 `docs/additional-features/webhooks.md` (+1 -1) 📝 `docs/development/index.md` (+4 -4) 📝 `docs/development/release-checklist.md` (+23 -17) 📝 `docs/installation/1-postgresql.md` (+1 -1) 📝 `docs/release-notes/version-2.10.md` (+19 -0) 📝 `netbox/dcim/choices.py` (+2 -0) 📝 `netbox/dcim/models/device_components.py` (+9 -9) 📝 `netbox/dcim/tables/devices.py` (+13 -5) 📝 `netbox/extras/management/commands/renaturalize.py` (+14 -10) _...and 12 more files_ </details> ### 📄 Description ## Enhancements * [#5592](https://github.com/netbox-community/netbox/issues/5592) - Add IP addresses count to VRF view * [#5630](https://github.com/netbox-community/netbox/issues/5630) - Add QSFP+ (64GFC) FibreChannel Interface option * [#5884](https://github.com/netbox-community/netbox/issues/5884) - Enable custom links for device components * [#5914](https://github.com/netbox-community/netbox/issues/5914) - Add edit/delete buttons for IP addresses on interface view * [#5942](https://github.com/netbox-community/netbox/issues/5942) - Add button to add a new IP address on interface view ## Bug Fixes * [#5703](https://github.com/netbox-community/netbox/issues/5703) - Fix VRF and Tenant field population when adding IP addresses from prefix * [#5819](https://github.com/netbox-community/netbox/issues/5819) - Enable ordering of virtual machines by primary IP address * [#5872](https://github.com/netbox-community/netbox/issues/5872) - Ordering of devices by primary IP should respect `PREFER_IPV4` configuration parameter * [#5922](https://github.com/netbox-community/netbox/issues/5922) - Fix options for filtering object permissions in admin UI * [#5935](https://github.com/netbox-community/netbox/issues/5935) - Fix filtering prefixes list by multiple prefix values * [#5948](https://github.com/netbox-community/netbox/issues/5948) - Invalidate cached queries when running `renaturalize` --- <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:25:15 +01:00
adam closed this issue 2025-12-29 22:25:16 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13075