[PR #7984] [MERGED] Release v3.0.12 #13306

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/7984
Author: @jeremystretch
Created: 12/6/2021
Status: Merged
Merged: 12/6/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

14 files changed (+102 additions, -25 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/release-notes/version-3.0.md (+17 -0)
📝 netbox/dcim/choices.py (+6 -0)
📝 netbox/ipam/tables/vlans.py (+3 -0)
📝 netbox/netbox/api/authentication.py (+7 -4)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/dist/netbox.js (+7 -7)
📝 netbox/project-static/dist/netbox.js.map (+1 -1)
📝 netbox/project-static/src/forms/elements.ts (+39 -1)
📝 netbox/project-static/src/search.ts (+16 -6)
📝 netbox/templates/dcim/interface_edit.html (+1 -1)
📝 netbox/templates/virtualization/vminterface_edit.html (+1 -1)
📝 netbox/utilities/templatetags/helpers.py (+1 -1)

📄 Description

Enhancements

  • #7751 - Get API user from LDAP only when FIND_GROUP_PERMS is enabled
  • #7885 - Linkify VLAN name in VLANs table
  • #7892 - Add L22-30 power port & outlet types
  • #7932 - Improve performance of the "quick find" function
  • #7941 - Add multi-standard ITA power outlet type

Bug Fixes

  • #7823 - Fix issue where return_url is not honored when 'Save & Continue' button is present
  • #7981 - Fix Markdown sanitization regex

���� 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/7984 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/6/2021 **Status:** ✅ Merged **Merged:** 12/6/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`86ada33`](https://github.com/netbox-community/netbox/commit/86ada33577786140899c28792c8c26fc68d599c5) PRVB - [`8bb0cba`](https://github.com/netbox-community/netbox/commit/8bb0cba949ca6fd4fe3d48b1cec0153ab1ae4817) Fix #7751 - LDAP: Only get API user from ldap when FIND_GROUP_PERMS is enabled - [`a0b9ac7`](https://github.com/netbox-community/netbox/commit/a0b9ac7bcc195a5cd8e5577a0dff16cb51d9775f) UI: Improve performance of the quick filter - [`bbdd380`](https://github.com/netbox-community/netbox/commit/bbdd3804c71bf9f6226c1cee03091559b220d604) Add multistandard ITA power outlet type - [`09f038f`](https://github.com/netbox-community/netbox/commit/09f038f997a16779705028b9916ae1b4f31b5653) Merge pull request #7941 from bluikko/patch-9 - [`dc30405`](https://github.com/netbox-community/netbox/commit/dc3040550df4bb1089ede80c5d37956cbb479182) Merge branch 'fast-filter' into develop - [`83010e2`](https://github.com/netbox-community/netbox/commit/83010e278c3046a48368f2c5d7ca6bd3ee38e8ff) Add changelog for #7932, #7941 - [`f1466d6`](https://github.com/netbox-community/netbox/commit/f1466d6da36a97c37a2df6f3615b8e17fa8e9245) netbox-community/netbox#7885: Linkify VLAN name in VLAN tables - [`70259b0`](https://github.com/netbox-community/netbox/commit/70259b0d047afe8de45478f024a6f60bc4b1146e) Merge pull request #7970 from rhyser9/7885_linkify_vlan_name - [`1377eda`](https://github.com/netbox-community/netbox/commit/1377eda0bafa0d3f3ddb81010edb90480c71bad1) Add support for L22-30P power port type (#7915) ### 📊 Changes **14 files changed** (+102 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/release-notes/version-3.0.md` (+17 -0) 📝 `netbox/dcim/choices.py` (+6 -0) 📝 `netbox/ipam/tables/vlans.py` (+3 -0) 📝 `netbox/netbox/api/authentication.py` (+7 -4) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/dist/netbox.js` (+7 -7) 📝 `netbox/project-static/dist/netbox.js.map` (+1 -1) 📝 `netbox/project-static/src/forms/elements.ts` (+39 -1) 📝 `netbox/project-static/src/search.ts` (+16 -6) 📝 `netbox/templates/dcim/interface_edit.html` (+1 -1) 📝 `netbox/templates/virtualization/vminterface_edit.html` (+1 -1) 📝 `netbox/utilities/templatetags/helpers.py` (+1 -1) </details> ### 📄 Description ### Enhancements * [#7751](https://github.com/netbox-community/netbox/issues/7751) - Get API user from LDAP only when `FIND_GROUP_PERMS` is enabled * [#7885](https://github.com/netbox-community/netbox/issues/7885) - Linkify VLAN name in VLANs table * [#7892](https://github.com/netbox-community/netbox/issues/7892) - Add L22-30 power port & outlet types * [#7932](https://github.com/netbox-community/netbox/issues/7932) - Improve performance of the "quick find" function * [#7941](https://github.com/netbox-community/netbox/issues/7941) - Add multi-standard ITA power outlet type ### Bug Fixes * [#7823](https://github.com/netbox-community/netbox/issues/7823) - Fix issue where `return_url` is not honored when 'Save & Continue' button is present * [#7981](https://github.com/netbox-community/netbox/issues/7981) - Fix Markdown sanitization regex --- <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:26:40 +01:00
adam closed this issue 2025-12-29 22:26:40 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13306