[PR #10026] [MERGED] Release v3.2.9 #13543

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/10026
Author: @jeremystretch
Created: 8/16/2022
Status: Merged
Merged: 8/16/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • fa014fc add device bulk rename view and url
  • 5dff743 add bulk device rename button to device_list
  • ef03a2f fix return url to account 4 filtered device lists
  • 76e6343 draft for error handling on device with no name
  • e135f8e Include Network information in Prefix Template Issue:#9505
  • 7d6882b Change display to Modal
  • 064d7f3 PRVB
  • c7faca9 fix typo in virtualization/forms/filtersets.py
  • b318b79 Merge pull request #9958 from threadedstream/fix_typo_virt_filtersets
  • c24f1f1 Closes #9625: Add Contact Phone/Email to quick view panes to save time

📊 Changes

43 files changed (+576 additions, -342 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/models/dcim/frontport.md (+1 -1)
📝 docs/release-notes/version-3.2.md (+20 -0)
📝 netbox/dcim/choices.py (+28 -0)
📝 netbox/dcim/tables/template_code.py (+1 -1)
📝 netbox/dcim/urls.py (+1 -0)
📝 netbox/dcim/views.py (+6 -0)
📝 netbox/extras/models/customfields.py (+2 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/tables/columns.py (+6 -3)
📝 netbox/netbox/views/generic/bulk_views.py (+1 -1)
📝 netbox/project-static/dist/netbox-dark.css (+1 -1)
📝 netbox/project-static/dist/netbox-light.css (+1 -1)
📝 netbox/project-static/dist/netbox-print.css (+1 -1)
📝 netbox/project-static/dist/netbox.js (+7 -7)
📝 netbox/project-static/dist/netbox.js.map (+1 -1)
📝 netbox/project-static/src/search.ts (+44 -0)
📝 netbox/project-static/styles/netbox.scss (+22 -4)
📝 netbox/project-static/styles/overrides.scss (+8 -0)

...and 23 more files

📄 Description

Enhancements

  • #8595 - Add PON interface types
  • #8723 - Enable bulk renaming of devices
  • #9161 - Pretty print JSON custom field data when editing
  • #9505 - Display extra addressing details for IPv4 prefixes
  • #9625 - Add phone & email details to contacts panel
  • #9857 - Add clear button to quick search fields
  • #9933 - Add DOCSIS interface type

Bug Fixes

  • #9491 - Remove button for adding inventory item templates to module type components
  • #9979 - Fix Markdown rendering for custom fields in table columns
  • #9986 - Workaround for upstream timezone data bug

🔄 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/10026 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/16/2022 **Status:** ✅ Merged **Merged:** 8/16/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`fa014fc`](https://github.com/netbox-community/netbox/commit/fa014fcbf0aa03d7cdd822ff3aa38e2824773d48) add device bulk rename view and url - [`5dff743`](https://github.com/netbox-community/netbox/commit/5dff7433e854a09cb876602ce8220f8f5479a80a) add bulk device rename button to device_list - [`ef03a2f`](https://github.com/netbox-community/netbox/commit/ef03a2f38349dcaa193e83e5dbf30afa94542f16) fix return url to account 4 filtered device lists - [`76e6343`](https://github.com/netbox-community/netbox/commit/76e634330fe42209a29f03167c0983b6cb255765) draft for error handling on device with no name - [`e135f8e`](https://github.com/netbox-community/netbox/commit/e135f8e74d282f4db17eed49981f8303bc239f17) Include Network information in Prefix Template Issue:#9505 - [`7d6882b`](https://github.com/netbox-community/netbox/commit/7d6882bec29f2ffe70a278cee99f0abc9216d498) Change display to Modal - [`064d7f3`](https://github.com/netbox-community/netbox/commit/064d7f3bd0a803ed55198455e54a29c8f7c0adc2) PRVB - [`c7faca9`](https://github.com/netbox-community/netbox/commit/c7faca948016caa8ce30b3571c8a4e71dc33f70e) fix typo in virtualization/forms/filtersets.py - [`b318b79`](https://github.com/netbox-community/netbox/commit/b318b7902753c438379c1ec19fa12b765cff5e72) Merge pull request #9958 from threadedstream/fix_typo_virt_filtersets - [`c24f1f1`](https://github.com/netbox-community/netbox/commit/c24f1f14eccee2eecc67fc8d4df1db6d3e20b679) Closes #9625: Add Contact Phone/Email to quick view panes to save time ### 📊 Changes **43 files changed** (+576 additions, -342 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/models/dcim/frontport.md` (+1 -1) 📝 `docs/release-notes/version-3.2.md` (+20 -0) 📝 `netbox/dcim/choices.py` (+28 -0) 📝 `netbox/dcim/tables/template_code.py` (+1 -1) 📝 `netbox/dcim/urls.py` (+1 -0) 📝 `netbox/dcim/views.py` (+6 -0) 📝 `netbox/extras/models/customfields.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/tables/columns.py` (+6 -3) 📝 `netbox/netbox/views/generic/bulk_views.py` (+1 -1) 📝 `netbox/project-static/dist/netbox-dark.css` (+1 -1) 📝 `netbox/project-static/dist/netbox-light.css` (+1 -1) 📝 `netbox/project-static/dist/netbox-print.css` (+1 -1) 📝 `netbox/project-static/dist/netbox.js` (+7 -7) 📝 `netbox/project-static/dist/netbox.js.map` (+1 -1) 📝 `netbox/project-static/src/search.ts` (+44 -0) 📝 `netbox/project-static/styles/netbox.scss` (+22 -4) 📝 `netbox/project-static/styles/overrides.scss` (+8 -0) _...and 23 more files_ </details> ### 📄 Description ### Enhancements * [#8595](https://github.com/netbox-community/netbox/issues/8595) - Add PON interface types * [#8723](https://github.com/netbox-community/netbox/issues/8723) - Enable bulk renaming of devices * [#9161](https://github.com/netbox-community/netbox/issues/9161) - Pretty print JSON custom field data when editing * [#9505](https://github.com/netbox-community/netbox/issues/9505) - Display extra addressing details for IPv4 prefixes * [#9625](https://github.com/netbox-community/netbox/issues/9625) - Add phone & email details to contacts panel * [#9857](https://github.com/netbox-community/netbox/issues/9857) - Add clear button to quick search fields * [#9933](https://github.com/netbox-community/netbox/issues/9933) - Add DOCSIS interface type ### Bug Fixes * [#9491](https://github.com/netbox-community/netbox/issues/9491) - Remove button for adding inventory item templates to module type components * [#9979](https://github.com/netbox-community/netbox/issues/9979) - Fix Markdown rendering for custom fields in table columns * [#9986](https://github.com/netbox-community/netbox/issues/9986) - Workaround for upstream timezone data bug --- <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:28 +01:00
adam closed this issue 2025-12-29 23:19:28 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13543