[PR #11376] [MERGED] Release v3.4.2 #13779

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

34 files changed (+403 additions, -59 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/configuration/required-parameters.md (+3 -0)
📝 docs/configuration/system.md (+8 -0)
📝 docs/release-notes/version-3.4.md (+23 -0)
📝 netbox/dcim/filtersets.py (+1 -0)
📝 netbox/dcim/forms/bulk_import.py (+29 -1)
📝 netbox/dcim/forms/common.py (+5 -4)
📝 netbox/dcim/forms/model_forms.py (+99 -12)
📝 netbox/dcim/models/device_components.py (+5 -0)
📝 netbox/dcim/models/devices.py (+1 -1)
📝 netbox/dcim/tables/devices.py (+3 -0)
📝 netbox/dcim/views.py (+3 -11)
📝 netbox/extras/forms/model_forms.py (+0 -1)
📝 netbox/extras/management/commands/reindex.py (+20 -9)
📝 netbox/extras/migrations/0083_search.py (+10 -1)
📝 netbox/extras/models/models.py (+6 -1)
📝 netbox/ipam/tables/fhrp.py (+3 -0)
📝 netbox/netbox/configuration_example.py (+5 -0)
📝 netbox/netbox/configuration_testing.py (+2 -0)

...and 14 more files

📄 Description

Enhancements

  • #9285 - Enable specifying assigned component during bulk import of inventory items
  • #10700 - Match device name when using modules quick search
  • #11121 - Add VM resource totals to cluster view
  • #11156 - Enable selecting assigned component when editing inventory item in UI
  • #11223 - reindex management command should accept app label without model name
  • #11244 - Add controls for saved filters to rack elevations list
  • #11248 - Fix database migration when plugin with search indexer is enabled
  • #11259 - Add support for Redis username configuration

Bug Fixes

  • #11280 - Fix errant newlines when exporting interfaces with multiple IP addresses assigned
  • #11290 - Correct reporting of scheduled job duration
  • #11232 - Enable partial & regular expression matching for non-string types in global search
  • #11342 - Correct cable trace URL under "connection" tab for device components
  • #11345 - Fix form validation for bulk import of modules

🔄 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/11376 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/3/2023 **Status:** ✅ Merged **Merged:** 1/3/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`3675ad2`](https://github.com/netbox-community/netbox/commit/3675ad2539400038af6797140ddca3679b8bca30) PRVB - [`db5c2a3`](https://github.com/netbox-community/netbox/commit/db5c2a379eb9383ac417e6c2686c0fd889c13675) Fixes #11232: Enable partial & regex matching for non-string types in global search - [`b35b33e`](https://github.com/netbox-community/netbox/commit/b35b33e7986a72a9cbdadfbc09dbfd72a64518a2) Use the start time to calculate duration of jobs instead of created time - [`bfab3a2`](https://github.com/netbox-community/netbox/commit/bfab3a26bc0c8a4f28eebdc6cae943e16ee1f292) Add component import to InventoryItem bulk import - [`92da2fe`](https://github.com/netbox-community/netbox/commit/92da2fe082758cd057fba0f9194cce6914f5d89b) Add device name as part of module search for the q filter - [`98b3fc0`](https://github.com/netbox-community/netbox/commit/98b3fc03b8d18b1767e112dee77c7f2805971489) Changelog for #9285, #10700, #11290 - [`c7108bb`](https://github.com/netbox-community/netbox/commit/c7108bb3f7c77d7b1d777ae1cf0ac103dcd3bd53) Fixes #11280 - Fix exporting interfaces and FHRP group rows with multiple IP's assigned (#11285) - [`735fa4a`](https://github.com/netbox-community/netbox/commit/735fa4aa3118da66a794c314d9d1668617734cc2) Add summed resource card to cluster view - [`98f57f2`](https://github.com/netbox-community/netbox/commit/98f57f2dbaf0f3e4d686c9ae9377d2ae6c5723ac) 11297 have custom field form display content-type instead of model - [`b6cd099`](https://github.com/netbox-community/netbox/commit/b6cd0991172f61a1a0680e39cca2056f32c83d5c) Changelog for #11121, #11280 ### 📊 Changes **34 files changed** (+403 additions, -59 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/required-parameters.md` (+3 -0) 📝 `docs/configuration/system.md` (+8 -0) 📝 `docs/release-notes/version-3.4.md` (+23 -0) 📝 `netbox/dcim/filtersets.py` (+1 -0) 📝 `netbox/dcim/forms/bulk_import.py` (+29 -1) 📝 `netbox/dcim/forms/common.py` (+5 -4) 📝 `netbox/dcim/forms/model_forms.py` (+99 -12) 📝 `netbox/dcim/models/device_components.py` (+5 -0) 📝 `netbox/dcim/models/devices.py` (+1 -1) 📝 `netbox/dcim/tables/devices.py` (+3 -0) 📝 `netbox/dcim/views.py` (+3 -11) 📝 `netbox/extras/forms/model_forms.py` (+0 -1) 📝 `netbox/extras/management/commands/reindex.py` (+20 -9) 📝 `netbox/extras/migrations/0083_search.py` (+10 -1) 📝 `netbox/extras/models/models.py` (+6 -1) 📝 `netbox/ipam/tables/fhrp.py` (+3 -0) 📝 `netbox/netbox/configuration_example.py` (+5 -0) 📝 `netbox/netbox/configuration_testing.py` (+2 -0) _...and 14 more files_ </details> ### 📄 Description ### Enhancements * [#9285](https://github.com/netbox-community/netbox/issues/9285) - Enable specifying assigned component during bulk import of inventory items * [#10700](https://github.com/netbox-community/netbox/issues/10700) - Match device name when using modules quick search * [#11121](https://github.com/netbox-community/netbox/issues/11121) - Add VM resource totals to cluster view * [#11156](https://github.com/netbox-community/netbox/issues/11156) - Enable selecting assigned component when editing inventory item in UI * [#11223](https://github.com/netbox-community/netbox/issues/11223) - `reindex` management command should accept app label without model name * [#11244](https://github.com/netbox-community/netbox/issues/11244) - Add controls for saved filters to rack elevations list * [#11248](https://github.com/netbox-community/netbox/issues/11248) - Fix database migration when plugin with search indexer is enabled * [#11259](https://github.com/netbox-community/netbox/issues/11259) - Add support for Redis username configuration ### Bug Fixes * [#11280](https://github.com/netbox-community/netbox/issues/11280) - Fix errant newlines when exporting interfaces with multiple IP addresses assigned * [#11290](https://github.com/netbox-community/netbox/issues/11290) - Correct reporting of scheduled job duration * [#11232](https://github.com/netbox-community/netbox/issues/11232) - Enable partial & regular expression matching for non-string types in global search * [#11342](https://github.com/netbox-community/netbox/issues/11342) - Correct cable trace URL under "connection" tab for device components * [#11345](https://github.com/netbox-community/netbox/issues/11345) - Fix form validation for bulk import of modules --- <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:46 +01:00
adam closed this issue 2025-12-29 23:20:46 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13779