[PR #9706] [MERGED] Release v3.2.6 #13506

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

51 files changed (+440 additions, -187 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 NOTICE (+6 -0)
📝 base_requirements.txt (+4 -4)
📝 docs/configuration/dynamic-settings.md (+36 -12)
📝 docs/models/extras/customfield.md (+1 -1)
📝 docs/release-notes/version-3.2.md (+24 -1)
📝 netbox/circuits/tables/circuits.py (+3 -4)
📝 netbox/circuits/views.py (+3 -3)
📝 netbox/dcim/api/nested_serializers.py (+9 -0)
📝 netbox/dcim/api/serializers.py (+2 -2)
📝 netbox/dcim/api/views.py (+1 -1)
📝 netbox/dcim/constants.py (+0 -9)
📝 netbox/dcim/filtersets.py (+6 -0)
📝 netbox/dcim/forms/models.py (+16 -1)
📝 netbox/dcim/migrations/0001_squashed.py (+3 -3)
📝 netbox/dcim/models/device_components.py (+1 -2)
📝 netbox/dcim/models/power.py (+4 -3)
📝 netbox/dcim/tables/cables.py (+3 -4)
📝 netbox/dcim/tables/devices.py (+5 -7)

...and 31 more files

📄 Description

Enhancements

  • #7702 - Enable dynamic configuration for default powerfeed attributes
  • #9396 - Allow filtering modules by bay ID
  • #9403 - Enable modifying virtual chassis properties when creating/editing a device
  • #9540 - Add filters for assigned device & VM to IP addresses list
  • #9686 - Add tenant group column for all object tables with tenant assignments

Bug Fixes

  • #8854 - Fix REMOTE_AUTH_DEFAULT_GROUPS for social-auth backends
  • #9575 - Fix AttributeError exception for FHRP group with an IP address assigned
  • #9597 - Include installed_module in module bay REST API serializer
  • #9632 - Automatically focus on search box when expanding dropdowns
  • #9657 - Fix filtering for custom fields and webhooks in the UI
  • #9682 - Fix bulk assignment of ASNs to sites
  • #9687 - Don't restrict custom text field lengths when entering via UI form
  • #9704 - Include last_updated field on JournalEntry REST API serializer

🔄 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/9706 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/11/2022 **Status:** ✅ Merged **Merged:** 7/11/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`29a5fb0`](https://github.com/netbox-community/netbox/commit/29a5fb041ff6b1b82d23f110b5008f84b3f954d2) add fields for virtual chassis to device_edit form - [`6876c98`](https://github.com/netbox-community/netbox/commit/6876c9878e1e0965b61a341fd63083fc514c4540) added field definitions for device form - [`575e2c4`](https://github.com/netbox-community/netbox/commit/575e2c443bf19e427c1f229f97eaa8a16d141e61) PRVB - [`52178f7`](https://github.com/netbox-community/netbox/commit/52178f78d1b22478aeee567dddeab511c8cc2e3a) Closes #7702: Add Powerfeed Defaults to User Configurations - [`6cb8b91`](https://github.com/netbox-community/netbox/commit/6cb8b9110ebf2d6ff5a41485ad7a1c29cb89008c) Closes #9396: Query modules by module bay & display installed_modules for module_bay REST API endpoint (#9574) - [`afec53c`](https://github.com/netbox-community/netbox/commit/afec53cea3873dac9ea970bf70431bde0a399a66) Fixes #9575: Add exception handling to services (#9586) - [`d55e3c3`](https://github.com/netbox-community/netbox/commit/d55e3c352a3e8c3ac7d2d3639b85a509272f9d0e) Changelog for #9396, #9575, #9597 - [`db807ab`](https://github.com/netbox-community/netbox/commit/db807ab4a6f5d0ff9ff84ae39b5f18688bb19a1a) Closes #7702: Add power feed defaults to user configurations - [`c330282`](https://github.com/netbox-community/netbox/commit/c330282919f7903315abc0263c9d3f5d22321fa2) Fix syntax error - [`f7de261`](https://github.com/netbox-community/netbox/commit/f7de2611c113e084e635d36669f259718c46a8d7) Merge pull request #9576 from huntabyte/feature-7702 ### 📊 Changes **51 files changed** (+440 additions, -187 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `NOTICE` (+6 -0) 📝 `base_requirements.txt` (+4 -4) 📝 `docs/configuration/dynamic-settings.md` (+36 -12) 📝 `docs/models/extras/customfield.md` (+1 -1) 📝 `docs/release-notes/version-3.2.md` (+24 -1) 📝 `netbox/circuits/tables/circuits.py` (+3 -4) 📝 `netbox/circuits/views.py` (+3 -3) 📝 `netbox/dcim/api/nested_serializers.py` (+9 -0) 📝 `netbox/dcim/api/serializers.py` (+2 -2) 📝 `netbox/dcim/api/views.py` (+1 -1) 📝 `netbox/dcim/constants.py` (+0 -9) 📝 `netbox/dcim/filtersets.py` (+6 -0) 📝 `netbox/dcim/forms/models.py` (+16 -1) 📝 `netbox/dcim/migrations/0001_squashed.py` (+3 -3) 📝 `netbox/dcim/models/device_components.py` (+1 -2) 📝 `netbox/dcim/models/power.py` (+4 -3) 📝 `netbox/dcim/tables/cables.py` (+3 -4) 📝 `netbox/dcim/tables/devices.py` (+5 -7) _...and 31 more files_ </details> ### 📄 Description ## Enhancements * [#7702](https://github.com/netbox-community/netbox/issues/7702) - Enable dynamic configuration for default powerfeed attributes * [#9396](https://github.com/netbox-community/netbox/issues/9396) - Allow filtering modules by bay ID * [#9403](https://github.com/netbox-community/netbox/issues/9403) - Enable modifying virtual chassis properties when creating/editing a device * [#9540](https://github.com/netbox-community/netbox/issues/9540) - Add filters for assigned device & VM to IP addresses list * [#9686](https://github.com/netbox-community/netbox/issues/9686) - Add tenant group column for all object tables with tenant assignments ## Bug Fixes * [#8854](https://github.com/netbox-community/netbox/issues/8854) - Fix `REMOTE_AUTH_DEFAULT_GROUPS` for social-auth backends * [#9575](https://github.com/netbox-community/netbox/issues/9575) - Fix AttributeError exception for FHRP group with an IP address assigned * [#9597](https://github.com/netbox-community/netbox/issues/9597) - Include `installed_module` in module bay REST API serializer * [#9632](https://github.com/netbox-community/netbox/issues/9632) - Automatically focus on search box when expanding dropdowns * [#9657](https://github.com/netbox-community/netbox/issues/9657) - Fix filtering for custom fields and webhooks in the UI * [#9682](https://github.com/netbox-community/netbox/issues/9682) - Fix bulk assignment of ASNs to sites * [#9687](https://github.com/netbox-community/netbox/issues/9687) - Don't restrict custom text field lengths when entering via UI form * [#9704](https://github.com/netbox-community/netbox/issues/9704) - Include `last_updated` field on JournalEntry REST API serializer --- <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:16 +01:00
adam closed this issue 2025-12-29 23:19:16 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13506