[PR #12079] [MERGED] Release v3.4.7 #13903

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/12079
Author: @jeremystretch
Created: 3/28/2023
Status: Merged
Merged: 3/28/2023
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 016eff5 PRVB
  • 4286d74 Add fieldsets functionality to scripts to allow for form field groupings (#11880)
  • d93a24d Removed type2-ieee802.3at as per described in #11984
  • 3d14a79 Fixes #11979: Correct URL for tags in route targets list
  • e7ed280 Add parameters to the SavedFilterTable
  • 85f40bc Render the parameters column as JSON in SavedFiltersTable
  • fc482ed Use ssid for the string representation of WirelessLinks if available
  • a864e81 Improve error reporting for duplicate CSV column headings
  • 8d25d78 Closes #11682: Remove lateral padding from highlighted text
  • 96eb89a 12049 fix passsword typo

📊 Changes

34 files changed (+208 additions, -50 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 base_requirements.txt (+2 -1)
📝 docs/configuration/remote-authentication.md (+1 -1)
📝 docs/configuration/system.md (+1 -1)
📝 docs/customization/custom-scripts.md (+17 -2)
📝 docs/release-notes/version-3.4.md (+25 -0)
📝 netbox/dcim/choices.py (+0 -2)
📝 netbox/dcim/forms/bulk_edit.py (+10 -2)
📝 netbox/dcim/forms/bulk_import.py (+17 -2)
📝 netbox/dcim/forms/object_create.py (+1 -1)
📝 netbox/extras/forms/model_forms.py (+13 -4)
📝 netbox/extras/forms/reports.py (+7 -3)
📝 netbox/extras/forms/scripts.py (+1 -1)
📝 netbox/extras/models/configcontexts.py (+8 -2)
📝 netbox/extras/models/models.py (+7 -3)
📝 netbox/extras/models/tags.py (+6 -2)
📝 netbox/extras/scripts.py (+12 -0)
📝 netbox/extras/tables/tables.py (+6 -1)
📝 netbox/ipam/tables/vrfs.py (+1 -1)

...and 14 more files

📄 Description

Enhancements

  • #11645 - Automatically set the scheduled time when executing reports/scripts at a recurring interval
  • #11833 - Add fieldset support for custom script forms
  • #11973 - Use SSID for representing wireless links, if set
  • #11977 - Support designating multiple backends via REMOTE_AUTH_BACKEND config parameter
  • #11990 - Improve error reporting for duplicate CSV column headings
  • #11991 - Enable VDC assignment during bulk import/edit of interfaces

Bug Fixes

  • #11914 - Include parameters when exporting saved filters
  • #11933 - Fix cloning of saved filters
  • #11984 - Remove erroneous 802.3az PoE type
  • #11979 - Correct URL for tags in route targets list
  • #12008 - Enable cloning of export templates
  • #12029 - Restore missing description field on virtual chassis form
  • #12038 - Correct display of zero values for virtual chassis member priority
  • #12048 - Enable cloning of tags
  • #12058 - Enable cloning of config contexts

🔄 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/12079 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/28/2023 **Status:** ✅ Merged **Merged:** 3/28/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`016eff5`](https://github.com/netbox-community/netbox/commit/016eff52c013980cf88f85f22d82caf0535cc16f) PRVB - [`4286d74`](https://github.com/netbox-community/netbox/commit/4286d74d4468b2da24af1be7021ca35f943fbe6b) Add fieldsets functionality to scripts to allow for form field groupings (#11880) - [`d93a24d`](https://github.com/netbox-community/netbox/commit/d93a24d0bb99eff8cff01f2f53f253c9c55f3531) Removed type2-ieee802.3at as per described in #11984 - [`3d14a79`](https://github.com/netbox-community/netbox/commit/3d14a7942812bd38ed83e144e4a09bf0f9c9bbc7) Fixes #11979: Correct URL for tags in route targets list - [`e7ed280`](https://github.com/netbox-community/netbox/commit/e7ed2807902dedea7a4b12c1c30c9e11e70caff6) Add parameters to the SavedFilterTable - [`85f40bc`](https://github.com/netbox-community/netbox/commit/85f40bcbe073ab8025a1d8afe7ffed08c002d7b8) Render the parameters column as JSON in SavedFiltersTable - [`fc482ed`](https://github.com/netbox-community/netbox/commit/fc482ed096b2fef9c9dfa18e4534a835eaee4c5d) Use ssid for the string representation of WirelessLinks if available - [`a864e81`](https://github.com/netbox-community/netbox/commit/a864e8127bf21c174e192512174188e190905e06) Improve error reporting for duplicate CSV column headings - [`8d25d78`](https://github.com/netbox-community/netbox/commit/8d25d7812c38c08dc03cfecb0868c49e65c7e67c) Closes #11682: Remove lateral padding from highlighted text - [`96eb89a`](https://github.com/netbox-community/netbox/commit/96eb89a469b255a209d80555d487b1cdddd6062f) 12049 fix passsword typo ### 📊 Changes **34 files changed** (+208 additions, -50 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `base_requirements.txt` (+2 -1) 📝 `docs/configuration/remote-authentication.md` (+1 -1) 📝 `docs/configuration/system.md` (+1 -1) 📝 `docs/customization/custom-scripts.md` (+17 -2) 📝 `docs/release-notes/version-3.4.md` (+25 -0) 📝 `netbox/dcim/choices.py` (+0 -2) 📝 `netbox/dcim/forms/bulk_edit.py` (+10 -2) 📝 `netbox/dcim/forms/bulk_import.py` (+17 -2) 📝 `netbox/dcim/forms/object_create.py` (+1 -1) 📝 `netbox/extras/forms/model_forms.py` (+13 -4) 📝 `netbox/extras/forms/reports.py` (+7 -3) 📝 `netbox/extras/forms/scripts.py` (+1 -1) 📝 `netbox/extras/models/configcontexts.py` (+8 -2) 📝 `netbox/extras/models/models.py` (+7 -3) 📝 `netbox/extras/models/tags.py` (+6 -2) 📝 `netbox/extras/scripts.py` (+12 -0) 📝 `netbox/extras/tables/tables.py` (+6 -1) 📝 `netbox/ipam/tables/vrfs.py` (+1 -1) _...and 14 more files_ </details> ### 📄 Description ### Enhancements * [#11645](https://github.com/netbox-community/netbox/issues/11645) - Automatically set the scheduled time when executing reports/scripts at a recurring interval * [#11833](https://github.com/netbox-community/netbox/issues/11833) - Add fieldset support for custom script forms * [#11973](https://github.com/netbox-community/netbox/issues/11833) - Use SSID for representing wireless links, if set * [#11977](https://github.com/netbox-community/netbox/issues/11977) - Support designating multiple backends via `REMOTE_AUTH_BACKEND` config parameter * [#11990](https://github.com/netbox-community/netbox/issues/11990) - Improve error reporting for duplicate CSV column headings * [#11991](https://github.com/netbox-community/netbox/issues/11991) - Enable VDC assignment during bulk import/edit of interfaces ### Bug Fixes * [#11914](https://github.com/netbox-community/netbox/issues/11914) - Include parameters when exporting saved filters * [#11933](https://github.com/netbox-community/netbox/issues/11933) - Fix cloning of saved filters * [#11984](https://github.com/netbox-community/netbox/issues/11984) - Remove erroneous 802.3az PoE type * [#11979](https://github.com/netbox-community/netbox/issues/11979) - Correct URL for tags in route targets list * [#12008](https://github.com/netbox-community/netbox/issues/12008) - Enable cloning of export templates * [#12029](https://github.com/netbox-community/netbox/issues/12029) - Restore missing description field on virtual chassis form * [#12038](https://github.com/netbox-community/netbox/issues/12038) - Correct display of zero values for virtual chassis member priority * [#12048](https://github.com/netbox-community/netbox/issues/12048) - Enable cloning of tags * [#12058](https://github.com/netbox-community/netbox/issues/12058) - Enable cloning of config contexts --- <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:21:27 +01:00
adam closed this issue 2025-12-29 23:21:27 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13903