[PR #15631] [MERGED] Release v3.7.5 #14634

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/15631
Author: @jeremystretch
Created: 4/4/2024
Status: Merged
Merged: 4/4/2024
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 4adb44f PRVB
  • 35e20d1 Add link to NetBox Enterprise
  • 6f9f1d9 14799 dont cache report member names
  • 59e12e7 Clean up GitHub actions
  • 710f9e3 Add auto-assign-issue GitHub action
  • d2fee88 Apply "needs triage" label to new issues by default
  • da6a1ef Clean up the Markdown reference guide
  • 69c0aac Add Jeff; remove duplicate entries from rotation (not supported)
  • d37a621 Limit auto-assignment to bug reports & feature requests
  • 3cb68e4 Fixes #15567: Correct typo in help text

📊 Changes

44 files changed (+3494 additions, -3415 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+2 -2)
📝 .github/ISSUE_TEMPLATE/documentation_change.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+2 -2)
.github/workflows/auto-assign-issue.yml (+21 -0)
📝 .github/workflows/close-stale-issues.yml (+2 -3)
📝 .github/workflows/lock-threads.yml (+1 -1)
📝 README.md (+1 -1)
📝 contrib/generated_schema.json (+2 -0)
📝 docs/integrations/rest-api.md (+13 -5)
📝 docs/plugins/index.md (+2 -2)
📝 docs/reference/markdown.md (+156 -255)
📝 docs/release-notes/version-3.7.md (+21 -0)
📝 netbox/circuits/filtersets.py (+6 -0)
📝 netbox/circuits/forms/filtersets.py (+1 -5)
📝 netbox/circuits/tests/test_filtersets.py (+3 -1)
📝 netbox/dcim/models/devices.py (+12 -9)
📝 netbox/extras/forms/bulk_import.py (+6 -0)
📝 netbox/extras/models/reports.py (+1 -1)
📝 netbox/extras/models/tags.py (+1 -1)
📝 netbox/ipam/forms/bulk_import.py (+1 -1)

...and 24 more files

📄 Description

Enhancements

  • #14707 - Clarify interface designation when creating tunnel terminations
  • #15039 - Allow API tokens to be cloned

Bug Fixes

  • #14799 - Avoid caching modified reports & scripts
  • #15029 - Raise a clean validation error when attempting to make duplicate FHRP group assignments
  • #15102 - Fix usage of selector widget for form fields referencing users/groups
  • #15435 - Correct permissions name to allow adding a module bay to a device via the UI
  • #15502 - Fix KeyError exception when modifying an IP address assigned to a virtual machine
  • #15597 - Restore help modal for button_class field on custom link bulk import form
  • #15598 - Fix exception when creating a device from a device type with one or more child inventory items
  • #15608 - Avoid caching values of null fields in search index
  • #15609 - Fix filtering of the providers list by assigned ASN

🔄 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/15631 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/4/2024 **Status:** ✅ Merged **Merged:** 4/4/2024 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`4adb44f`](https://github.com/netbox-community/netbox/commit/4adb44f60d91fec19c800ea0e03800e2eb338f06) PRVB - [`35e20d1`](https://github.com/netbox-community/netbox/commit/35e20d156d5071eeea921bbd19337011e259f713) Add link to NetBox Enterprise - [`6f9f1d9`](https://github.com/netbox-community/netbox/commit/6f9f1d9d43a407d57408ad841a86d7946ccb4872) 14799 dont cache report member names - [`59e12e7`](https://github.com/netbox-community/netbox/commit/59e12e73c2964e716be7b7e52cb1e6086c82a805) Clean up GitHub actions - [`710f9e3`](https://github.com/netbox-community/netbox/commit/710f9e3c46159c18fbcea8bef39d3a26327a9bdd) Add auto-assign-issue GitHub action - [`d2fee88`](https://github.com/netbox-community/netbox/commit/d2fee886001e4abbcb1b4d9ed3fd32521c820be9) Apply "needs triage" label to new issues by default - [`da6a1ef`](https://github.com/netbox-community/netbox/commit/da6a1ef03e9889a116738eb3080ff8cced83c120) Clean up the Markdown reference guide - [`69c0aac`](https://github.com/netbox-community/netbox/commit/69c0aac1051015660133b2ae3c86607dabd8084b) Add Jeff; remove duplicate entries from rotation (not supported) - [`d37a621`](https://github.com/netbox-community/netbox/commit/d37a6210fa370b97b9ddb64f54d091a83e039b82) Limit auto-assignment to bug reports & feature requests - [`3cb68e4`](https://github.com/netbox-community/netbox/commit/3cb68e4bc032f0270c5c12a08811d2c1ae3913c7) Fixes #15567: Correct typo in help text ### 📊 Changes **44 files changed** (+3494 additions, -3415 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+2 -2) 📝 `.github/ISSUE_TEMPLATE/documentation_change.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+2 -2) ➕ `.github/workflows/auto-assign-issue.yml` (+21 -0) 📝 `.github/workflows/close-stale-issues.yml` (+2 -3) 📝 `.github/workflows/lock-threads.yml` (+1 -1) 📝 `README.md` (+1 -1) 📝 `contrib/generated_schema.json` (+2 -0) 📝 `docs/integrations/rest-api.md` (+13 -5) 📝 `docs/plugins/index.md` (+2 -2) 📝 `docs/reference/markdown.md` (+156 -255) 📝 `docs/release-notes/version-3.7.md` (+21 -0) 📝 `netbox/circuits/filtersets.py` (+6 -0) 📝 `netbox/circuits/forms/filtersets.py` (+1 -5) 📝 `netbox/circuits/tests/test_filtersets.py` (+3 -1) 📝 `netbox/dcim/models/devices.py` (+12 -9) 📝 `netbox/extras/forms/bulk_import.py` (+6 -0) 📝 `netbox/extras/models/reports.py` (+1 -1) 📝 `netbox/extras/models/tags.py` (+1 -1) 📝 `netbox/ipam/forms/bulk_import.py` (+1 -1) _...and 24 more files_ </details> ### 📄 Description ### Enhancements * [#14707](https://github.com/netbox-community/netbox/issues/14707) - Clarify interface designation when creating tunnel terminations * [#15039](https://github.com/netbox-community/netbox/issues/15039) - Allow API tokens to be cloned ### Bug Fixes * [#14799](https://github.com/netbox-community/netbox/issues/14799) - Avoid caching modified reports & scripts * [#15029](https://github.com/netbox-community/netbox/issues/15029) - Raise a clean validation error when attempting to make duplicate FHRP group assignments * [#15102](https://github.com/netbox-community/netbox/issues/15102) - Fix usage of selector widget for form fields referencing users/groups * [#15435](https://github.com/netbox-community/netbox/issues/15435) - Correct permissions name to allow adding a module bay to a device via the UI * [#15502](https://github.com/netbox-community/netbox/issues/15502) - Fix KeyError exception when modifying an IP address assigned to a virtual machine * [#15597](https://github.com/netbox-community/netbox/issues/15597) - Restore help modal for `button_class` field on custom link bulk import form * [#15598](https://github.com/netbox-community/netbox/issues/15598) - Fix exception when creating a device from a device type with one or more child inventory items * [#15608](https://github.com/netbox-community/netbox/issues/15608) - Avoid caching values of null fields in search index * [#15609](https://github.com/netbox-community/netbox/issues/15609) - Fix filtering of the providers list by assigned ASN --- <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:25:39 +01:00
adam closed this issue 2025-12-29 23:25:39 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#14634