[PR #9039] [MERGED] Release v3.1.11 #13421

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/9039
Author: @jeremystretch
Created: 4/5/2022
Status: Merged
Merged: 4/5/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

31 files changed (+218 additions, -115 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 README.md (+0 -2)
📝 docs/index.md (+0 -2)
📝 docs/installation/upgrading.md (+6 -1)
📝 docs/models/extras/customlink.md (+5 -1)
📝 docs/models/users/token.md (+1 -1)
📝 docs/release-notes/version-3.1.md (+20 -0)
📝 netbox/circuits/tables.py (+6 -2)
📝 netbox/dcim/filtersets.py (+5 -0)
📝 netbox/dcim/forms/bulk_edit.py (+14 -1)
📝 netbox/dcim/models/device_components.py (+4 -0)
📝 netbox/dcim/views.py (+9 -0)
📝 netbox/extras/admin.py (+3 -0)
📝 netbox/ipam/choices.py (+13 -5)
📝 netbox/ipam/migrations/0001_squashed.py (+1 -1)
📝 netbox/ipam/validators.py (+2 -2)
📝 netbox/ipam/views.py (+1 -1)
📝 netbox/netbox/config/parameters.py (+21 -5)
📝 netbox/netbox/constants.py (+3 -1)

...and 11 more files

📄 Description

Enhancements

  • #8163 - Show bridge interface members under interface view
  • #8365 - Enable filtering child devices by parent device ID
  • #8785 - Permit wildcard values in IP address DNS names
  • #8790 - Include site and prefixes columns in VLAN group VLANs table
  • #8830 - Add Checkpoint ClusterXL protocol for FHRP groups
  • #8974 - Use monospace font for text areas in config revision form
  • #9012 - Linkify circuits count in providers list
  • #9036 - Add bulk edit capability for site contact fields

Bug Fixes

  • #8866 - Prevent exception when searching for a rack position with no rack specified under device edit view
  • #9009 - Fix device count for racks in global search results

🔄 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/9039 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/5/2022 **Status:** ✅ Merged **Merged:** 4/5/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`3edff89`](https://github.com/netbox-community/netbox/commit/3edff89a4dd141d9e448c6625eaa056947589428) Fixes: #8866 - Does not perform API Select Search if a django peramiter has not been replaced - [`f45e64c`](https://github.com/netbox-community/netbox/commit/f45e64c756050d947aa8c5196b516fff8b5dcb08) Fix #8785 - allow wildcard dns records - [`934493b`](https://github.com/netbox-community/netbox/commit/934493bf5f4ca36e255012d24e0d9f35e300dfd5) #8830 Adding ClusterXL - [`57759aa`](https://github.com/netbox-community/netbox/commit/57759aa4a3dec8f5bc098f28e9cde0cb3c28699c) PRVB - [`1cef513`](https://github.com/netbox-community/netbox/commit/1cef513f6c2584a3b2961f135b8e5ad3d6336536) Adding ClusterXL as FHRPGroupProtocolChoices - [`a1808a5`](https://github.com/netbox-community/netbox/commit/a1808a54a492f5cb710bbcfe75b57ffa7e387b9a) Fixes #8974: Use monospace font for text areas in config revision form - [`e0344e9`](https://github.com/netbox-community/netbox/commit/e0344e92511a42caf31d15ae9688ecf5e9db3e2a) Update validators.py - [`37781bd`](https://github.com/netbox-community/netbox/commit/37781bd2087250806173a10dc15a8e412bcf7eb3) Fix parentheses - [`0b44a59`](https://github.com/netbox-community/netbox/commit/0b44a595e21862c5ff165662c5207a049b747c14) Merge pull request #8945 from fmlshai/develop - [`cde8ff2`](https://github.com/netbox-community/netbox/commit/cde8ff282d3f9f7775cfd18736760c8377f5c171) Merge pull request #8962 from apellini/patch-2 ### 📊 Changes **31 files changed** (+218 additions, -115 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` (+0 -2) 📝 `docs/index.md` (+0 -2) 📝 `docs/installation/upgrading.md` (+6 -1) 📝 `docs/models/extras/customlink.md` (+5 -1) 📝 `docs/models/users/token.md` (+1 -1) 📝 `docs/release-notes/version-3.1.md` (+20 -0) 📝 `netbox/circuits/tables.py` (+6 -2) 📝 `netbox/dcim/filtersets.py` (+5 -0) 📝 `netbox/dcim/forms/bulk_edit.py` (+14 -1) 📝 `netbox/dcim/models/device_components.py` (+4 -0) 📝 `netbox/dcim/views.py` (+9 -0) 📝 `netbox/extras/admin.py` (+3 -0) 📝 `netbox/ipam/choices.py` (+13 -5) 📝 `netbox/ipam/migrations/0001_squashed.py` (+1 -1) 📝 `netbox/ipam/validators.py` (+2 -2) 📝 `netbox/ipam/views.py` (+1 -1) 📝 `netbox/netbox/config/parameters.py` (+21 -5) 📝 `netbox/netbox/constants.py` (+3 -1) _...and 11 more files_ </details> ### 📄 Description ### Enhancements * [#8163](https://github.com/netbox-community/netbox/issues/8163) - Show bridge interface members under interface view * [#8365](https://github.com/netbox-community/netbox/issues/8365) - Enable filtering child devices by parent device ID * [#8785](https://github.com/netbox-community/netbox/issues/8785) - Permit wildcard values in IP address DNS names * [#8790](https://github.com/netbox-community/netbox/issues/8790) - Include site and prefixes columns in VLAN group VLANs table * [#8830](https://github.com/netbox-community/netbox/issues/8830) - Add Checkpoint ClusterXL protocol for FHRP groups * [#8974](https://github.com/netbox-community/netbox/issues/8974) - Use monospace font for text areas in config revision form * [#9012](https://github.com/netbox-community/netbox/issues/9012) - Linkify circuits count in providers list * [#9036](https://github.com/netbox-community/netbox/issues/9036) - Add bulk edit capability for site contact fields ### Bug Fixes * [#8866](https://github.com/netbox-community/netbox/issues/8866) - Prevent exception when searching for a rack position with no rack specified under device edit view * [#9009](https://github.com/netbox-community/netbox/issues/9009) - Fix device count for racks in global search results --- <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:19 +01:00
adam closed this issue 2025-12-29 22:27:19 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13421