[PR #9801] [MERGED] Release v3.2.7 #13519

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • e106d7a PRVB
  • 5739757 Drop extraneous/invalid prefetches
  • b0df24e UI: Only set focus on select field search boxes if the select is open
  • b9dd654 Merge pull request #9735 from kkthxbye-code/fix-9734
  • 5b5160c Fixes #9715: Fix SOCIAL_AUTH_PIPELINE config parameter not taking effect
  • fe2fae5 Closes #9741: Check for UserConfig instance during user login
  • 6da171a Corrected typo for description of 'snapshots'
  • 5fda5cc Merge pull request #9742 from henryriveraCS/develop
  • 68f53aa Closes #9745: Add wireless LANs and links to global search
  • e07dd3d Define NESTED_SERIALIZER_PREFIX constant

📊 Changes

43 files changed (+431 additions, -454 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/administration/authentication/overview.md (+1 -1)
📝 docs/models/extras/webhook.md (+1 -1)
📝 docs/release-notes/version-3.2.md (+21 -0)
📝 netbox/dcim/api/serializers.py (+9 -8)
📝 netbox/dcim/api/views.py (+3 -2)
📝 netbox/dcim/filtersets.py (+6 -3)
📝 netbox/dcim/forms/filtersets.py (+2 -2)
📝 netbox/dcim/svg.py (+10 -2)
📝 netbox/dcim/tests/test_filtersets.py (+11 -9)
📝 netbox/dcim/views.py (+1 -3)
📝 netbox/extras/api/customfields.py (+3 -2)
📝 netbox/extras/api/serializers.py (+4 -3)
📝 netbox/ipam/api/serializers.py (+4 -3)
📝 netbox/ipam/views.py (+1 -3)
📝 netbox/netbox/api/viewsets/__init__.py (+2 -1)
📝 netbox/netbox/constants.py (+3 -254)
📝 netbox/netbox/filtersets.py (+1 -1)
📝 netbox/netbox/forms/__init__.py (+1 -1)

...and 23 more files

📄 Description

Enhancements

  • #9705 - Support filter expressions for the serial field on racks, devices, and inventory items
  • #9741 - Check for UserConfig instance during user login
  • #9745 - Add wireless LANs and links to global search

Bug Fixes

  • #9437 - Standardize form submission buttons and behavior when using enter key
  • #9499 - Fix filtered bulk deletion of VM Interfaces
  • #9634 - Fix image URLs in rack elevations when using external storage
  • #9715 - Fix SOCIAL_AUTH_PIPELINE config parameter not taking effect
  • #9754 - Fix regression introduced by #9632
  • #9746 - Permit filtering interfaces by arbitrary speed value in UI
  • #9749 - Retain original slug values when modifying object names
  • #9775 - Fix exception when viewing a report with no description

🔄 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/9801 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/20/2022 **Status:** ✅ Merged **Merged:** 7/20/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`e106d7a`](https://github.com/netbox-community/netbox/commit/e106d7ac3a2a2f30b92bf2e8bd9df8f40e1e23c5) PRVB - [`5739757`](https://github.com/netbox-community/netbox/commit/57397570c08f27148c10a65a00d245147647a33f) Drop extraneous/invalid prefetches - [`b0df24e`](https://github.com/netbox-community/netbox/commit/b0df24e6d1fac3bf568bc29a16c5d7584032a6d3) UI: Only set focus on select field search boxes if the select is open - [`b9dd654`](https://github.com/netbox-community/netbox/commit/b9dd654e7ad35fe1b79feb15c92cb5276253fbbc) Merge pull request #9735 from kkthxbye-code/fix-9734 - [`5b5160c`](https://github.com/netbox-community/netbox/commit/5b5160ca6f670654bbe30bb9a883dbf38e1c8f95) Fixes #9715: Fix SOCIAL_AUTH_PIPELINE config parameter not taking effect - [`fe2fae5`](https://github.com/netbox-community/netbox/commit/fe2fae5b86d554a9a242a376084b246f3e78c6bf) Closes #9741: Check for UserConfig instance during user login - [`6da171a`](https://github.com/netbox-community/netbox/commit/6da171a6997c931fd26faa444d36c97d6ac97243) Corrected typo for description of 'snapshots' - [`5fda5cc`](https://github.com/netbox-community/netbox/commit/5fda5cc08c2b5f26cd18d9f787bbf72d7fd45378) Merge pull request #9742 from henryriveraCS/develop - [`68f53aa`](https://github.com/netbox-community/netbox/commit/68f53aaa87137d3b22e4b6275b565a363e36b253) Closes #9745: Add wireless LANs and links to global search - [`e07dd3d`](https://github.com/netbox-community/netbox/commit/e07dd3ddcb2b8453d5a72ccb984e456297fb8296) Define NESTED_SERIALIZER_PREFIX constant ### 📊 Changes **43 files changed** (+431 additions, -454 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/administration/authentication/overview.md` (+1 -1) 📝 `docs/models/extras/webhook.md` (+1 -1) 📝 `docs/release-notes/version-3.2.md` (+21 -0) 📝 `netbox/dcim/api/serializers.py` (+9 -8) 📝 `netbox/dcim/api/views.py` (+3 -2) 📝 `netbox/dcim/filtersets.py` (+6 -3) 📝 `netbox/dcim/forms/filtersets.py` (+2 -2) 📝 `netbox/dcim/svg.py` (+10 -2) 📝 `netbox/dcim/tests/test_filtersets.py` (+11 -9) 📝 `netbox/dcim/views.py` (+1 -3) 📝 `netbox/extras/api/customfields.py` (+3 -2) 📝 `netbox/extras/api/serializers.py` (+4 -3) 📝 `netbox/ipam/api/serializers.py` (+4 -3) 📝 `netbox/ipam/views.py` (+1 -3) 📝 `netbox/netbox/api/viewsets/__init__.py` (+2 -1) 📝 `netbox/netbox/constants.py` (+3 -254) 📝 `netbox/netbox/filtersets.py` (+1 -1) 📝 `netbox/netbox/forms/__init__.py` (+1 -1) _...and 23 more files_ </details> ### 📄 Description ### Enhancements * [#9705](https://github.com/netbox-community/netbox/issues/9705) - Support filter expressions for the `serial` field on racks, devices, and inventory items * [#9741](https://github.com/netbox-community/netbox/issues/9741) - Check for UserConfig instance during user login * [#9745](https://github.com/netbox-community/netbox/issues/9745) - Add wireless LANs and links to global search ### Bug Fixes * [#9437](https://github.com/netbox-community/netbox/issues/9437) - Standardize form submission buttons and behavior when using enter key * [#9499](https://github.com/netbox-community/netbox/issues/9499) - Fix filtered bulk deletion of VM Interfaces * [#9634](https://github.com/netbox-community/netbox/issues/9634) - Fix image URLs in rack elevations when using external storage * [#9715](https://github.com/netbox-community/netbox/issues/9715) - Fix `SOCIAL_AUTH_PIPELINE` config parameter not taking effect * [#9754](https://github.com/netbox-community/netbox/issues/9754) - Fix regression introduced by #9632 * [#9746](https://github.com/netbox-community/netbox/issues/9746) - Permit filtering interfaces by arbitrary speed value in UI * [#9749](https://github.com/netbox-community/netbox/issues/9749) - Retain original slug values when modifying object names * [#9775](https://github.com/netbox-community/netbox/issues/9775) - Fix exception when viewing a report with no description --- <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:19:19 +01:00
adam closed this issue 2025-12-29 23:19:20 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13519