[PR #9454] [MERGED] Release v3.2.4 #13469

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 3c7c8c8 PRVB
  • 1d4409c Fixes #9094 - Fix partial address search within Prefix and Aggregate filters
  • 752a497 Fixes #9094 - Fix partial address search within Prefix and Aggregate filters
  • 2a4c728 Merge remote-tracking branch 'origin/develop' into develop
  • 24ff360 Fixes #8922 - Add service list to IP address view
  • f415d81 Fixes #8374 - Display device type and asset tag if name is blank but asset tag is populated
  • 6a99b36 Fix provider table in ASN view when ordering by circuit_count
  • aba4e03 Add contact_group to ContactModelFilterSet
  • 8ad203f Added contact_group to region, site, manufacturer, tenant filters
  • aeef12c Merge pull request #9364 from kkthxbye-code/fix-9239

📊 Changes

29 files changed (+312 additions, -180 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .github/workflows/stale.yml (+1 -1)
📝 docs/configuration/optional-settings.md (+8 -0)
📝 docs/plugins/development/tables.md (+2 -1)
📝 docs/release-notes/version-3.2.md (+28 -0)
📝 netbox/circuits/forms/filtersets.py (+2 -2)
📝 netbox/dcim/choices.py (+11 -0)
📝 netbox/dcim/forms/filtersets.py (+9 -9)
📝 netbox/dcim/forms/object_create.py (+2 -0)
📝 netbox/dcim/models/devices.py (+4 -0)
📝 netbox/extras/forms/bulk_import.py (+9 -2)
📝 netbox/extras/scripts.py (+10 -3)
📝 netbox/extras/tests/test_views.py (+5 -4)
📝 netbox/ipam/filtersets.py (+4 -0)
📝 netbox/ipam/tables/ip.py (+2 -1)
📝 netbox/ipam/views.py (+7 -2)
📝 netbox/netbox/configuration_example.py (+3 -0)
📝 netbox/netbox/constants.py (+65 -67)
📝 netbox/netbox/settings.py (+2 -1)

...and 9 more files

📄 Description

Enhancements

  • #8374 - Display device type and asset tag if name is blank but asset tag is populated
  • #8922 - Add service list to IP address view
  • #9098 - Add "other" types for power ports/outlets, pass-through ports
  • #9239 - Enable filtering by contact group for all models which support contact assignment
  • #9277 - Introduce CSRF_COOKIE_NAME configuration parameter
  • #9347 - Include services in global search
  • #9379 - Redirect to virtual chassis view after adding a member device
  • #9451 - Add export_raw argument for TemplateColumn

Bug Fixes

  • #9094 - Fix partial address search within Prefix and Aggregate filters
  • #9291 - Improve data validation for MultiObjectVar script fields
  • #9358 - Annotate circuit count for providers list under ASN view
  • #9387 - Ensure ActionsColumn extra_buttons are always displayed
  • #9402 - Fix custom field population when creating a virtual chassis
  • #9407 - Clean up display of prefixes values when exporting prefixes list
  • #9420 - Fix custom script class inheritance
  • #9425 - Fix bulk import for object and multi-object custom fields
  • #9430 - Fix passing of initial form data for DynamicModelChoiceFields

🔄 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/9454 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 5/31/2022 **Status:** ✅ Merged **Merged:** 5/31/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`3c7c8c8`](https://github.com/netbox-community/netbox/commit/3c7c8c8776e35d82706420bab9f1a93f1c528913) PRVB - [`1d4409c`](https://github.com/netbox-community/netbox/commit/1d4409c70323f366e73e562f129f07c0170cf5cb) Fixes #9094 - Fix partial address search within Prefix and Aggregate filters - [`752a497`](https://github.com/netbox-community/netbox/commit/752a497218060e0012892e441d5d8e1e5cc7f4a7) Fixes #9094 - Fix partial address search within Prefix and Aggregate filters - [`2a4c728`](https://github.com/netbox-community/netbox/commit/2a4c728375cf5e74d91c98c20bd1b3ad135be2c3) Merge remote-tracking branch 'origin/develop' into develop - [`24ff360`](https://github.com/netbox-community/netbox/commit/24ff360ee0c8413aed423a5f9e84fe667a716110) Fixes #8922 - Add service list to IP address view - [`f415d81`](https://github.com/netbox-community/netbox/commit/f415d810491d9eb1791eb38a2d9bec5d0b1c8aee) Fixes #8374 - Display device type and asset tag if name is blank but asset tag is populated - [`6a99b36`](https://github.com/netbox-community/netbox/commit/6a99b36cce106a25cfb16057a94cc2d62cc12c02) Fix provider table in ASN view when ordering by circuit_count - [`aba4e03`](https://github.com/netbox-community/netbox/commit/aba4e03d3b60ac21e1d727fcfd6308066dcb1fbc) Add contact_group to ContactModelFilterSet - [`8ad203f`](https://github.com/netbox-community/netbox/commit/8ad203f97ac3362fc312558997fa543011590bf5) Added contact_group to region, site, manufacturer, tenant filters - [`aeef12c`](https://github.com/netbox-community/netbox/commit/aeef12cdc0c354b862174918d44ceba4d7982ee6) Merge pull request #9364 from kkthxbye-code/fix-9239 ### 📊 Changes **29 files changed** (+312 additions, -180 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `.github/workflows/stale.yml` (+1 -1) 📝 `docs/configuration/optional-settings.md` (+8 -0) 📝 `docs/plugins/development/tables.md` (+2 -1) 📝 `docs/release-notes/version-3.2.md` (+28 -0) 📝 `netbox/circuits/forms/filtersets.py` (+2 -2) 📝 `netbox/dcim/choices.py` (+11 -0) 📝 `netbox/dcim/forms/filtersets.py` (+9 -9) 📝 `netbox/dcim/forms/object_create.py` (+2 -0) 📝 `netbox/dcim/models/devices.py` (+4 -0) 📝 `netbox/extras/forms/bulk_import.py` (+9 -2) 📝 `netbox/extras/scripts.py` (+10 -3) 📝 `netbox/extras/tests/test_views.py` (+5 -4) 📝 `netbox/ipam/filtersets.py` (+4 -0) 📝 `netbox/ipam/tables/ip.py` (+2 -1) 📝 `netbox/ipam/views.py` (+7 -2) 📝 `netbox/netbox/configuration_example.py` (+3 -0) 📝 `netbox/netbox/constants.py` (+65 -67) 📝 `netbox/netbox/settings.py` (+2 -1) _...and 9 more files_ </details> ### 📄 Description ### Enhancements * [#8374](https://github.com/netbox-community/netbox/issues/8374) - Display device type and asset tag if name is blank but asset tag is populated * [#8922](https://github.com/netbox-community/netbox/issues/8922) - Add service list to IP address view * [#9098](https://github.com/netbox-community/netbox/issues/9098) - Add "other" types for power ports/outlets, pass-through ports * [#9239](https://github.com/netbox-community/netbox/issues/9239) - Enable filtering by contact group for all models which support contact assignment * [#9277](https://github.com/netbox-community/netbox/issues/9277) - Introduce `CSRF_COOKIE_NAME` configuration parameter * [#9347](https://github.com/netbox-community/netbox/issues/9347) - Include services in global search * [#9379](https://github.com/netbox-community/netbox/issues/9379) - Redirect to virtual chassis view after adding a member device * [#9451](https://github.com/netbox-community/netbox/issues/9451) - Add `export_raw` argument for TemplateColumn ### Bug Fixes * [#9094](https://github.com/netbox-community/netbox/issues/9094) - Fix partial address search within Prefix and Aggregate filters * [#9291](https://github.com/netbox-community/netbox/issues/9291) - Improve data validation for MultiObjectVar script fields * [#9358](https://github.com/netbox-community/netbox/issues/9358) - Annotate circuit count for providers list under ASN view * [#9387](https://github.com/netbox-community/netbox/issues/9387) - Ensure ActionsColumn `extra_buttons` are always displayed * [#9402](https://github.com/netbox-community/netbox/issues/9402) - Fix custom field population when creating a virtual chassis * [#9407](https://github.com/netbox-community/netbox/issues/9407) - Clean up display of prefixes values when exporting prefixes list * [#9420](https://github.com/netbox-community/netbox/issues/9420) - Fix custom script class inheritance * [#9425](https://github.com/netbox-community/netbox/issues/9425) - Fix bulk import for object and multi-object custom fields * [#9430](https://github.com/netbox-community/netbox/issues/9430) - Fix passing of initial form data for DynamicModelChoiceFields --- <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:02 +01:00
adam closed this issue 2025-12-29 23:19:02 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13469