[PR #11219] [MERGED] Release v3.4.1 #13757

Closed
opened 2025-12-29 23:20:37 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/11219
Author: @jeremystretch
Created: 12/16/2022
Status: Merged
Merged: 12/16/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

13 files changed (+59 additions, -18 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/configuration/system.md (+11 -0)
📝 docs/release-notes/version-3.4.md (+19 -0)
📝 netbox/dcim/models/cables.py (+10 -3)
📝 netbox/netbox/authentication.py (+1 -2)
📝 netbox/netbox/configuration_example.py (+3 -0)
📝 netbox/netbox/models/__init__.py (+1 -1)
📝 netbox/netbox/settings.py (+3 -4)
📝 netbox/netbox/tables/columns.py (+3 -2)
📝 netbox/templates/extras/htmx/script_result.html (+1 -0)
📝 netbox/templates/generic/object_list.html (+3 -3)
📝 netbox/utilities/utils.py (+2 -1)

📄 Description

Enhancements

  • #9971 - Enable ordering of nested group models by name
  • #11214 - Introduce the DEFAULT_LANGUAGE configuration parameter

Bug Fixes

  • #11175 - Fix cloning of fields containing special characters
  • #11178 - Pressing enter in quick search box should not trigger bulk operations
  • #11184 - Correct visualization of cable path which splits across multiple circuit terminations
  • #11185 - Fix TemplateSyntaxError when viewing custom script results
  • #11189 - Fix localization of dates & numbers
  • #11205 - Correct cloning behavior for recursively-nested models
  • #11206 - Avoid clearing assigned groups if REMOTE_AUTH_DEFAULT_GROUPS is invalid

🔄 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/11219 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/16/2022 **Status:** ✅ Merged **Merged:** 12/16/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`ba12675`](https://github.com/netbox-community/netbox/commit/ba12675267af639f6ed47e7873fb091d75dacd29) PRVB - [`77423e7`](https://github.com/netbox-community/netbox/commit/77423e7bb14e6141084676c1be7d6ac02fa126b4) Fixes #11185: Fix TemplateSyntaxError when viewing custom script results - [`c59d527`](https://github.com/netbox-community/netbox/commit/c59d5276644502e3f56634208968f54300177651) 11178 fix quick search press enter button - [`f8685ad`](https://github.com/netbox-community/netbox/commit/f8685ad7aa276f1ccc7e15f6d2e65c2d0f1ad897) 11175 fix cloning special chars in fields (#11181) - [`951f82b`](https://github.com/netbox-community/netbox/commit/951f82b4287356e9c05ddfe6a542bb47d4810bf6) Fixes #11205: Correct cloning behavior for recursively-nested models - [`e4f5407`](https://github.com/netbox-community/netbox/commit/e4f5407c70e6c7067334a34c48f6f2fbd6dafc2a) Changelog for #11175, #11178 - [`9f15ca2`](https://github.com/netbox-community/netbox/commit/9f15ca2d9005692fedbfc61992e4791eddafdd2e) Closes #9971: Enable ordering of nested group models by name - [`2738da2`](https://github.com/netbox-community/netbox/commit/2738da2d3985498f5ce1b4aab771f85f9edf2e85) Fixes #11189: Fix localization of dates & numbers - [`ed366c5`](https://github.com/netbox-community/netbox/commit/ed366c5ab2bfd5d044241438f6a3283ed87b9e9d) Closes #11214: Introduce the DEFAULT_LANGUAGE configuration parameter - [`c8f4a7c`](https://github.com/netbox-community/netbox/commit/c8f4a7c74266536e374d0ec74b58266842a1438b) 11206 dont remove user groups if no valid REMOTE_AUTH_DEFAULT_GROUPS (#11207) ### 📊 Changes **13 files changed** (+59 additions, -18 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/configuration/system.md` (+11 -0) 📝 `docs/release-notes/version-3.4.md` (+19 -0) 📝 `netbox/dcim/models/cables.py` (+10 -3) 📝 `netbox/netbox/authentication.py` (+1 -2) 📝 `netbox/netbox/configuration_example.py` (+3 -0) 📝 `netbox/netbox/models/__init__.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+3 -4) 📝 `netbox/netbox/tables/columns.py` (+3 -2) 📝 `netbox/templates/extras/htmx/script_result.html` (+1 -0) 📝 `netbox/templates/generic/object_list.html` (+3 -3) 📝 `netbox/utilities/utils.py` (+2 -1) </details> ### 📄 Description ### Enhancements * [#9971](https://github.com/netbox-community/netbox/issues/9971) - Enable ordering of nested group models by name * [#11214](https://github.com/netbox-community/netbox/issues/11214) - Introduce the `DEFAULT_LANGUAGE` configuration parameter ### Bug Fixes * [#11175](https://github.com/netbox-community/netbox/issues/11175) - Fix cloning of fields containing special characters * [#11178](https://github.com/netbox-community/netbox/issues/11178) - Pressing enter in quick search box should not trigger bulk operations * [#11184](https://github.com/netbox-community/netbox/issues/11184) - Correct visualization of cable path which splits across multiple circuit terminations * [#11185](https://github.com/netbox-community/netbox/issues/11185) - Fix TemplateSyntaxError when viewing custom script results * [#11189](https://github.com/netbox-community/netbox/issues/11189) - Fix localization of dates & numbers * [#11205](https://github.com/netbox-community/netbox/issues/11205) - Correct cloning behavior for recursively-nested models * [#11206](https://github.com/netbox-community/netbox/issues/11206) - Avoid clearing assigned groups if `REMOTE_AUTH_DEFAULT_GROUPS` is invalid --- <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 23:20:37 +01:00
adam closed this issue 2025-12-29 23:20:37 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13757