[PR #9569] [MERGED] Release v3.2.5 #13486

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/9569
Author: @jeremystretch
Created: 6/20/2022
Status: Merged
Merged: 6/20/2022
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 2979a64 add file, skeleton from "select all"
  • 2e38e62 create store to store previously checked element
  • ae7ddec now exports previousPkCheck.ts
  • c536944 now exports multiselect function
  • db14206 clicking a PkCheckbox updates state
  • ea9258d added main multi-select function
  • 1493c92 silly text highlight workaround...
  • 3effa37 click event calls multiselect function
  • ef29bff is this supposed to be ignored?
  • 11f7e30 fixed text deselection and refactor

📊 Changes

68 files changed (+830 additions, -164 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .github/workflows/stale.yml (+4 -1)
📝 CONTRIBUTING.md (+3 -3)
📝 base_requirements.txt (+6 -1)
📝 docs/configuration/optional-settings.md (+17 -0)
docs/reference/markdown.md (+353 -0)
📝 docs/release-notes/version-3.2.md (+33 -1)
📝 mkdocs.yml (+1 -0)
📝 netbox/dcim/api/views.py (+2 -0)
📝 netbox/dcim/filtersets.py (+1 -1)
📝 netbox/dcim/forms/bulk_edit.py (+25 -6)
📝 netbox/dcim/svg.py (+5 -5)
📝 netbox/dcim/tables/template_code.py (+1 -1)
📝 netbox/dcim/views.py (+2 -2)
📝 netbox/extras/management/commands/runscript.py (+3 -2)
📝 netbox/extras/scripts.py (+3 -2)
📝 netbox/ipam/filtersets.py (+9 -7)
📝 netbox/ipam/tables/services.py (+4 -2)
📝 netbox/ipam/tests/test_filtersets.py (+2 -4)

...and 48 more files

📄 Description

Enhancements

  • #8704 - Shift-click to select multiple objects in a list
  • #8882 - Support filtering IP addresses by multiple parent prefixes
  • #8893 - Include count of IP ranges under tenant view
  • #9417 - Initialize manufacturer selection when inserting a new module
  • #9501 - Add support for custom Jinja2 filters
  • #9517 - Linkify related power port on power outlet view
  • #9525 - Provide one-click edit link for objects in tables
  • #9533 - Move Markdown reference to local documentation
  • #9534 - Add VLAN group selector to interface bulk edit forms
  • #9556 - Leave dropdown open upon selection for multi-select fields

Bug Fixes

  • #8944 - Fix rendering of Markdown links with colons
  • #9108 - Fix rendering of bracketed Markdown links
  • #9374 - Improve performance when retrieving devices/VMs with config context data
  • #9466 - Avoid sending webhooks after script/report failure
  • #9480 - Fix sorting services & service templates by port numbers
  • #9484 - Include services listening on "all IPs" under IP address view
  • #9486 - Fix redirect URL when adding device components from the module view
  • #9495 - Correct link to contacts in contact groups table column
  • #9503 - Hyperlinks in rack elevation SVGs must always use absolute URLs
  • #9512 - Fix duplicate site results when searching by ASN
  • #9524 - Correct order of VLAN fields under VM interface creation form
  • #9537 - Ensure consistent use of placeholder tag throughout UI
  • #9549 - Fix device counts for rack list under rack role view

🔄 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/9569 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/20/2022 **Status:** ✅ Merged **Merged:** 6/20/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`2979a64`](https://github.com/netbox-community/netbox/commit/2979a64ce3c0983f2aee7c7a49141bb5c092e1b1) add file, skeleton from "select all" - [`2e38e62`](https://github.com/netbox-community/netbox/commit/2e38e621017e8d6de0057c8c767b60aee9423063) create store to store previously checked element - [`ae7ddec`](https://github.com/netbox-community/netbox/commit/ae7ddecaa65f7ccff69352fb9d75bf775b6c0b6c) now exports previousPkCheck.ts - [`c536944`](https://github.com/netbox-community/netbox/commit/c536944a101d87bd38f1c33d1c14a0788e453251) now exports multiselect function - [`db14206`](https://github.com/netbox-community/netbox/commit/db142061ffc77cd16bcc89df199f070697873694) clicking a PkCheckbox updates state - [`ea9258d`](https://github.com/netbox-community/netbox/commit/ea9258d36cabaf5de25c45f65fd92bfc5959bbe0) added main multi-select function - [`1493c92`](https://github.com/netbox-community/netbox/commit/1493c920fd1a49f8aac53584abcb61c24a49078f) silly text highlight workaround... - [`3effa37`](https://github.com/netbox-community/netbox/commit/3effa37fa77a5123c65dd85e6f87599b99b3b133) click event calls multiselect function - [`ef29bff`](https://github.com/netbox-community/netbox/commit/ef29bffb723c86b51f1ae00ae65b59786ae5298c) is this supposed to be ignored? - [`11f7e30`](https://github.com/netbox-community/netbox/commit/11f7e3099d603f0391e51a14ee2d172f9c70ee4c) fixed text deselection and refactor ### 📊 Changes **68 files changed** (+830 additions, -164 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` (+4 -1) 📝 `CONTRIBUTING.md` (+3 -3) 📝 `base_requirements.txt` (+6 -1) 📝 `docs/configuration/optional-settings.md` (+17 -0) ➕ `docs/reference/markdown.md` (+353 -0) 📝 `docs/release-notes/version-3.2.md` (+33 -1) 📝 `mkdocs.yml` (+1 -0) 📝 `netbox/dcim/api/views.py` (+2 -0) 📝 `netbox/dcim/filtersets.py` (+1 -1) 📝 `netbox/dcim/forms/bulk_edit.py` (+25 -6) 📝 `netbox/dcim/svg.py` (+5 -5) 📝 `netbox/dcim/tables/template_code.py` (+1 -1) 📝 `netbox/dcim/views.py` (+2 -2) 📝 `netbox/extras/management/commands/runscript.py` (+3 -2) 📝 `netbox/extras/scripts.py` (+3 -2) 📝 `netbox/ipam/filtersets.py` (+9 -7) 📝 `netbox/ipam/tables/services.py` (+4 -2) 📝 `netbox/ipam/tests/test_filtersets.py` (+2 -4) _...and 48 more files_ </details> ### 📄 Description ### Enhancements * [#8704](https://github.com/netbox-community/netbox/issues/8704) - Shift-click to select multiple objects in a list * [#8882](https://github.com/netbox-community/netbox/issues/8882) - Support filtering IP addresses by multiple parent prefixes * [#8893](https://github.com/netbox-community/netbox/issues/8893) - Include count of IP ranges under tenant view * [#9417](https://github.com/netbox-community/netbox/issues/9417) - Initialize manufacturer selection when inserting a new module * [#9501](https://github.com/netbox-community/netbox/issues/9501) - Add support for custom Jinja2 filters * [#9517](https://github.com/netbox-community/netbox/issues/9517) - Linkify related power port on power outlet view * [#9525](https://github.com/netbox-community/netbox/issues/9525) - Provide one-click edit link for objects in tables * [#9533](https://github.com/netbox-community/netbox/issues/9533) - Move Markdown reference to local documentation * [#9534](https://github.com/netbox-community/netbox/issues/9534) - Add VLAN group selector to interface bulk edit forms * [#9556](https://github.com/netbox-community/netbox/issues/9556) - Leave dropdown open upon selection for multi-select fields ### Bug Fixes * [#8944](https://github.com/netbox-community/netbox/issues/8944) - Fix rendering of Markdown links with colons * [#9108](https://github.com/netbox-community/netbox/issues/9108) - Fix rendering of bracketed Markdown links * [#9374](https://github.com/netbox-community/netbox/issues/9374) - Improve performance when retrieving devices/VMs with config context data * [#9466](https://github.com/netbox-community/netbox/issues/9466) - Avoid sending webhooks after script/report failure * [#9480](https://github.com/netbox-community/netbox/issues/9480) - Fix sorting services & service templates by port numbers * [#9484](https://github.com/netbox-community/netbox/issues/9484) - Include services listening on "all IPs" under IP address view * [#9486](https://github.com/netbox-community/netbox/issues/9486) - Fix redirect URL when adding device components from the module view * [#9495](https://github.com/netbox-community/netbox/issues/9495) - Correct link to contacts in contact groups table column * [#9503](https://github.com/netbox-community/netbox/issues/9503) - Hyperlinks in rack elevation SVGs must always use absolute URLs * [#9512](https://github.com/netbox-community/netbox/issues/9512) - Fix duplicate site results when searching by ASN * [#9524](https://github.com/netbox-community/netbox/issues/9524) - Correct order of VLAN fields under VM interface creation form * [#9537](https://github.com/netbox-community/netbox/issues/9537) - Ensure consistent use of placeholder tag throughout UI * [#9549](https://github.com/netbox-community/netbox/issues/9549) - Fix device counts for rack list under rack role view --- <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:09 +01:00
adam closed this issue 2025-12-29 23:19:09 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13486