[PR #8814] [MERGED] Release v3.1.9 #13394

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/8814
Author: @jeremystretch
Created: 3/7/2022
Status: Merged
Merged: 3/7/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • b5e4fdc PRVB
  • 6bbf168 Fixes #8546 - Fix import to restrict bridge, parent, lag to device interfaces
  • b343035 Fixes #8674: Fix rendering of tabbed content in documentation
  • 90ee689 Closes #8678: Validate minimum required Python version
  • 2503a3e Fixes #8717: Fix redirection after bulk edit/delete of prefixes from aggregate view
  • 4913d7e Fixes #8713: Restore missing "add" button on services list view
  • b1de85a Fixes #8710: Show/hide form elements based on scope selection
  • 1a7438a Fixed code comments
  • c489501 Add {% block pluginfooter %} to 'base/layout.html' template
  • 4863591 Fixes #8629; Add description to tag table search function

📊 Changes

46 files changed (+502 additions, -207 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 README.md (+2 -0)
📝 docs/index.md (+2 -0)
📝 docs/release-notes/version-3.1.md (+27 -0)
📝 mkdocs.yml (+6 -3)
📝 netbox/circuits/filtersets.py (+4 -4)
📝 netbox/circuits/tests/test_filtersets.py (+24 -8)
📝 netbox/dcim/choices.py (+12 -0)
📝 netbox/dcim/filtersets.py (+4 -4)
📝 netbox/dcim/forms/bulk_import.py (+13 -0)
📝 netbox/dcim/models/devices.py (+5 -4)
📝 netbox/dcim/tables/sites.py (+6 -2)
📝 netbox/dcim/tests/test_filtersets.py (+24 -8)
📝 netbox/extras/filtersets.py (+5 -4)
📝 netbox/extras/tests/test_filtersets.py (+12 -4)
📝 netbox/ipam/api/serializers.py (+1 -1)
📝 netbox/ipam/choices.py (+2 -0)
📝 netbox/ipam/filtersets.py (+9 -9)
📝 netbox/ipam/tables/fhrp.py (+4 -4)

...and 26 more files

📄 Description

Enhancements

  • #8594 - Enable filtering by exact description match for all applicable models
  • #8629 - Add description to tag table search function
  • #8664 - Show assigned ASNs/sites under list views
  • #8736 - Add PC and UPC fiber end faces for LC/SC/LSH port types
  • #8758 - Allow empty string substitution when renaming objects in bulk
  • #8762 - Link to rack elevations list from site view
  • #8766 - Add SCTP to service protocols list

Bug Fixes

  • #8546 - Fix bulk import to restrict bridge, parent, and LAG to device interfaces
  • #8633 - Prevent navigation sidebar pin from disappearing at certain breakpoints
  • #8674 - Fix rendering of tabbed content in documentation
  • #8710 - Fix dynamic scope selection form fields when creating a VLAN group
  • #8713 - Restore missing "add" button on services list view
  • #8715 - Avoid returning multiple objects when restricting querysets using multiple tags in permissions
  • #8717 - Fix redirection after bulk edit/delete of prefixes from aggregate view
  • #8724 - Fix exception during device import with invalid device type
  • #8807 - Correct REST API URL for FHRP group assignments
  • #8808 - Fix members count under FHRP group 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/8814 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/7/2022 **Status:** ✅ Merged **Merged:** 3/7/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b5e4fdc`](https://github.com/netbox-community/netbox/commit/b5e4fdc3d8fcb5d0e796dad1a4f3c1ce2797f7e2) PRVB - [`6bbf168`](https://github.com/netbox-community/netbox/commit/6bbf168cecb338c378ef3560dee8d2840b322865) Fixes #8546 - Fix import to restrict bridge, parent, lag to device interfaces - [`b343035`](https://github.com/netbox-community/netbox/commit/b343035060dc392a602ea9cc8294853f874312f9) Fixes #8674: Fix rendering of tabbed content in documentation - [`90ee689`](https://github.com/netbox-community/netbox/commit/90ee689d5ae61e829042e35824b4ff4201476e44) Closes #8678: Validate minimum required Python version - [`2503a3e`](https://github.com/netbox-community/netbox/commit/2503a3e3cacc3c7917497e5f0aa1c386e577c48a) Fixes #8717: Fix redirection after bulk edit/delete of prefixes from aggregate view - [`4913d7e`](https://github.com/netbox-community/netbox/commit/4913d7ee399505f0aeae2f1b7e91efd0e544bc1a) Fixes #8713: Restore missing "add" button on services list view - [`b1de85a`](https://github.com/netbox-community/netbox/commit/b1de85a44f8387b381d1eb7770d9ca2c5f63c503) Fixes #8710: Show/hide form elements based on scope selection - [`1a7438a`](https://github.com/netbox-community/netbox/commit/1a7438acfd9b8e4fbf37ea50b182c5cae97f6810) Fixed code comments - [`c489501`](https://github.com/netbox-community/netbox/commit/c489501441afa729ac47e6945b4f13faf455c78d) Add {% block pluginfooter %} to 'base/layout.html' template - [`4863591`](https://github.com/netbox-community/netbox/commit/4863591bc8d98f1ba113cca4cc47f54e22332197) Fixes #8629; Add description to tag table search function ### 📊 Changes **46 files changed** (+502 additions, -207 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `README.md` (+2 -0) 📝 `docs/index.md` (+2 -0) 📝 `docs/release-notes/version-3.1.md` (+27 -0) 📝 `mkdocs.yml` (+6 -3) 📝 `netbox/circuits/filtersets.py` (+4 -4) 📝 `netbox/circuits/tests/test_filtersets.py` (+24 -8) 📝 `netbox/dcim/choices.py` (+12 -0) 📝 `netbox/dcim/filtersets.py` (+4 -4) 📝 `netbox/dcim/forms/bulk_import.py` (+13 -0) 📝 `netbox/dcim/models/devices.py` (+5 -4) 📝 `netbox/dcim/tables/sites.py` (+6 -2) 📝 `netbox/dcim/tests/test_filtersets.py` (+24 -8) 📝 `netbox/extras/filtersets.py` (+5 -4) 📝 `netbox/extras/tests/test_filtersets.py` (+12 -4) 📝 `netbox/ipam/api/serializers.py` (+1 -1) 📝 `netbox/ipam/choices.py` (+2 -0) 📝 `netbox/ipam/filtersets.py` (+9 -9) 📝 `netbox/ipam/tables/fhrp.py` (+4 -4) _...and 26 more files_ </details> ### 📄 Description ### Enhancements * [#8594](https://github.com/netbox-community/netbox/issues/8594) - Enable filtering by exact description match for all applicable models * [#8629](https://github.com/netbox-community/netbox/issues/8629) - Add description to tag table search function * [#8664](https://github.com/netbox-community/netbox/issues/8664) - Show assigned ASNs/sites under list views * [#8736](https://github.com/netbox-community/netbox/issues/8736) - Add PC and UPC fiber end faces for LC/SC/LSH port types * [#8758](https://github.com/netbox-community/netbox/issues/8758) - Allow empty string substitution when renaming objects in bulk * [#8762](https://github.com/netbox-community/netbox/issues/8762) - Link to rack elevations list from site view * [#8766](https://github.com/netbox-community/netbox/issues/8766) - Add SCTP to service protocols list ### Bug Fixes * [#8546](https://github.com/netbox-community/netbox/issues/8546) - Fix bulk import to restrict bridge, parent, and LAG to device interfaces * [#8633](https://github.com/netbox-community/netbox/issues/8633) - Prevent navigation sidebar pin from disappearing at certain breakpoints * [#8674](https://github.com/netbox-community/netbox/issues/8674) - Fix rendering of tabbed content in documentation * [#8710](https://github.com/netbox-community/netbox/issues/8710) - Fix dynamic scope selection form fields when creating a VLAN group * [#8713](https://github.com/netbox-community/netbox/issues/8713) - Restore missing "add" button on services list view * [#8715](https://github.com/netbox-community/netbox/issues/8715) - Avoid returning multiple objects when restricting querysets using multiple tags in permissions * [#8717](https://github.com/netbox-community/netbox/issues/8717) - Fix redirection after bulk edit/delete of prefixes from aggregate view * [#8724](https://github.com/netbox-community/netbox/issues/8724) - Fix exception during device import with invalid device type * [#8807](https://github.com/netbox-community/netbox/issues/8807) - Correct REST API URL for FHRP group assignments * [#8808](https://github.com/netbox-community/netbox/issues/8808) - Fix members count under FHRP group 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:27:09 +01:00
adam closed this issue 2025-12-29 22:27:09 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13394