[PR #17346] [MERGED] Release v4.0.11 #15075

Closed
opened 2025-12-30 00:19:48 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 31f167d PRVB
  • 91ad3f2 Update source translation strings
  • 4fead1c Fixes: #17310 - Properly restrict GraphQL related object queries (#17312)
  • b2bbdbf runscript: use the previously defined "user"
  • d18a853 Fixes #17337: Fix ordering of virtual device contexts by device name
  • 814b699 Fixes #17323: Associate job with script object when executed using runscript command
  • 7a2ff96 Hide exception in ObjectCountsWidget for models without a xxx_list view function (#17342)
  • 52b7f62 Updates for project NetBox (#17345)
  • 2f1798c Bump micromatch from 4.0.5 to 4.0.8 in /netbox/project-static
  • 77d1dc4 Compile translations

📊 Changes

49 files changed (+4454 additions, -4338 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/release-notes/version-4.0.md (+10 -0)
📝 netbox/circuits/tests/test_api.py (+4 -0)
📝 netbox/core/tests/test_api.py (+1 -0)
📝 netbox/dcim/tables/devices.py (+1 -1)
📝 netbox/dcim/tests/test_api.py (+27 -0)
📝 netbox/extras/dashboard/widgets.py (+5 -2)
📝 netbox/extras/management/commands/runscript.py (+8 -9)
📝 netbox/ipam/tests/test_api.py (+1 -0)
📝 netbox/netbox/graphql/schema.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/tests/test_graphql.py (+12 -1)
📝 netbox/project-static/yarn.lock (+6 -13)
📝 netbox/templates/extras/dashboard/widgets/objectcounts.html (+1 -1)
📝 netbox/tenancy/tests/test_api.py (+1 -0)
netbox/translations/cs/LC_MESSAGES/django.mo (+0 -0)
📝 netbox/translations/cs/LC_MESSAGES/django.po (+289 -285)
netbox/translations/da/LC_MESSAGES/django.mo (+0 -0)
📝 netbox/translations/da/LC_MESSAGES/django.po (+289 -285)

...and 29 more files

📄 Description

Bug Fixes

  • #17310 - Enforce restricted queryset for related objects in GraphQL API requests
  • #17321 - Ensure the job is attributed to the specified user when using the runscript management command
  • #17323 - Associate job with script object when executed using the runscript management command
  • #17337 - Fix ordering of virtual device contexts by device name
  • #17341 - Avoid NoReverseMatch exceptions with specific dashboard widget configurations

🔄 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/17346 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 9/3/2024 **Status:** ✅ Merged **Merged:** 9/3/2024 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`31f167d`](https://github.com/netbox-community/netbox/commit/31f167d0f9780f48bca685f5cab83a4e2ad9a569) PRVB - [`91ad3f2`](https://github.com/netbox-community/netbox/commit/91ad3f22a38ec9431e271decfe805035f3a9e16c) Update source translation strings - [`4fead1c`](https://github.com/netbox-community/netbox/commit/4fead1c85f69e9534f21b860bc8296d912992531) Fixes: #17310 - Properly restrict GraphQL related object queries (#17312) - [`b2bbdbf`](https://github.com/netbox-community/netbox/commit/b2bbdbf1d90652e5b6edef3d0e34adf68d6887a5) runscript: use the previously defined "user" - [`d18a853`](https://github.com/netbox-community/netbox/commit/d18a853baab38721566b1d2374043d224bb37e13) Fixes #17337: Fix ordering of virtual device contexts by device name - [`814b699`](https://github.com/netbox-community/netbox/commit/814b699204117fa6921f6eb124eed4d7a114b731) Fixes #17323: Associate job with script object when executed using runscript command - [`7a2ff96`](https://github.com/netbox-community/netbox/commit/7a2ff96abe3792e740e1d7e630c7cbd34e191b53) Hide exception in ObjectCountsWidget for models without a `xxx_list` view function (#17342) - [`52b7f62`](https://github.com/netbox-community/netbox/commit/52b7f62b106b0373770c9c2a8e5b20bb28a4bcb0) Updates for project NetBox (#17345) - [`2f1798c`](https://github.com/netbox-community/netbox/commit/2f1798c7de997b01798a1fed9d0d825d917534df) Bump micromatch from 4.0.5 to 4.0.8 in /netbox/project-static - [`77d1dc4`](https://github.com/netbox-community/netbox/commit/77d1dc48073b02b971abe7dc491d2574d3d433f7) Compile translations ### 📊 Changes **49 files changed** (+4454 additions, -4338 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/release-notes/version-4.0.md` (+10 -0) 📝 `netbox/circuits/tests/test_api.py` (+4 -0) 📝 `netbox/core/tests/test_api.py` (+1 -0) 📝 `netbox/dcim/tables/devices.py` (+1 -1) 📝 `netbox/dcim/tests/test_api.py` (+27 -0) 📝 `netbox/extras/dashboard/widgets.py` (+5 -2) 📝 `netbox/extras/management/commands/runscript.py` (+8 -9) 📝 `netbox/ipam/tests/test_api.py` (+1 -0) 📝 `netbox/netbox/graphql/schema.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/tests/test_graphql.py` (+12 -1) 📝 `netbox/project-static/yarn.lock` (+6 -13) 📝 `netbox/templates/extras/dashboard/widgets/objectcounts.html` (+1 -1) 📝 `netbox/tenancy/tests/test_api.py` (+1 -0) ➕ `netbox/translations/cs/LC_MESSAGES/django.mo` (+0 -0) 📝 `netbox/translations/cs/LC_MESSAGES/django.po` (+289 -285) ➕ `netbox/translations/da/LC_MESSAGES/django.mo` (+0 -0) 📝 `netbox/translations/da/LC_MESSAGES/django.po` (+289 -285) _...and 29 more files_ </details> ### 📄 Description ### Bug Fixes * [#17310](https://github.com/netbox-community/netbox/issues/17310) - Enforce restricted queryset for related objects in GraphQL API requests * [#17321](https://github.com/netbox-community/netbox/issues/17321) - Ensure the job is attributed to the specified user when using the `runscript` management command * [#17323](https://github.com/netbox-community/netbox/issues/17323) - Associate job with script object when executed using the `runscript` management command * [#17337](https://github.com/netbox-community/netbox/issues/17337) - Fix ordering of virtual device contexts by device name * [#17341](https://github.com/netbox-community/netbox/issues/17341) - Avoid `NoReverseMatch` exceptions with specific dashboard widget configurations --- <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-30 00:19:48 +01:00
adam closed this issue 2025-12-30 00:19:48 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#15075