[PR #7465] [MERGED] Release v3.0.6 #13241

Closed
opened 2025-12-29 22:26:11 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/7465
Author: @jeremystretch
Created: 10/6/2021
Status: Merged
Merged: 10/6/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

43 files changed (+346 additions, -320 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/administration/housekeeping.md (+9 -2)
📝 docs/installation/3-netbox.md (+2 -2)
📝 docs/installation/upgrading.md (+2 -2)
📝 docs/release-notes/version-3.0.md (+20 -1)
📝 netbox/circuits/api/serializers.py (+5 -5)
📝 netbox/circuits/tests/test_api.py (+14 -8)
📝 netbox/dcim/filtersets.py (+56 -70)
📝 netbox/dcim/svg.py (+11 -7)
📝 netbox/dcim/tests/test_filtersets.py (+27 -9)
📝 netbox/dcim/views.py (+1 -0)
📝 netbox/extras/api/serializers.py (+8 -0)
📝 netbox/netbox/settings.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/styles/netbox.scss (+17 -17)
📝 netbox/project-static/styles/select.scss (+1 -0)
📝 netbox/project-static/styles/theme-light.scss (+1 -0)

...and 23 more files

📄 Description

Enhancements

  • #6850 - Default to current user when creating journal entries via REST API
  • #6955 - Include type, ID, and slug on object view
  • #7394 - Enable filtering cables by termination type & ID in REST API
  • #7462 - Include count of assigned virtual machines under platform view

Bug Fixes

  • #7442 - Fix missing actions column on user-configured tables
  • #7446 - Fix exception when viewing a large number of child IPs within a prefix
  • #7455 - Fix site/provider network validation for circuit termination API serializer
  • #7459 - Pre-populate location data when adding a device to a rack
  • #7460 - Fix filtering connections by site ID

🔄 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/7465 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 10/6/2021 **Status:** ✅ Merged **Merged:** 10/6/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`c262af5`](https://github.com/netbox-community/netbox/commit/c262af550d57d898132f26f5d249b2293a6d59bd) PRVB - [`1757102`](https://github.com/netbox-community/netbox/commit/1757102536981ed1d26bab3b346a602fb9a91a6f) Fixes #7442: Fix missing actions column on user-configured tables - [`e09024e`](https://github.com/netbox-community/netbox/commit/e09024e86f68dbd60f1c32b94abd6a64d54e7cc6) Fixes #7446: Fix exception when viewing a large number of child IPs within a prefix - [`087a018`](https://github.com/netbox-community/netbox/commit/087a018fafbfbe2a619bf85e4c1642c87afcd78d) Fix changelog for v3.0.5 - [`548a8c3`](https://github.com/netbox-community/netbox/commit/548a8c3be3e391786a98b990b21966bc5a3e2713) #7449: Fix login banner color - [`7041486`](https://github.com/netbox-community/netbox/commit/7041486b937e7e37de50d1f92da944ca55427f31) #7449: Remove color from panel headers on home view - [`cf173d4`](https://github.com/netbox-community/netbox/commit/cf173d4f508411b6c7ebf8cd49d80d0e18716d7d) #7449: Remove color from table header links - [`854a129`](https://github.com/netbox-community/netbox/commit/854a12982f1a20cf3966d76257ed345e53933c26) #7449: Lighten dropdown widget caret color - [`a34c8b8`](https://github.com/netbox-community/netbox/commit/a34c8b80e567444575a6c0d8985efa836c679ce7) #7449: Use original primary color - [`26e470f`](https://github.com/netbox-community/netbox/commit/26e470f521b5491bd4c0d7a0d16da677a01c49c3) #7449: Use lighter color for top-level nav menu items ### 📊 Changes **43 files changed** (+346 additions, -320 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/administration/housekeeping.md` (+9 -2) 📝 `docs/installation/3-netbox.md` (+2 -2) 📝 `docs/installation/upgrading.md` (+2 -2) 📝 `docs/release-notes/version-3.0.md` (+20 -1) 📝 `netbox/circuits/api/serializers.py` (+5 -5) 📝 `netbox/circuits/tests/test_api.py` (+14 -8) 📝 `netbox/dcim/filtersets.py` (+56 -70) 📝 `netbox/dcim/svg.py` (+11 -7) 📝 `netbox/dcim/tests/test_filtersets.py` (+27 -9) 📝 `netbox/dcim/views.py` (+1 -0) 📝 `netbox/extras/api/serializers.py` (+8 -0) 📝 `netbox/netbox/settings.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/styles/netbox.scss` (+17 -17) 📝 `netbox/project-static/styles/select.scss` (+1 -0) 📝 `netbox/project-static/styles/theme-light.scss` (+1 -0) _...and 23 more files_ </details> ### 📄 Description ### Enhancements * [#6850](https://github.com/netbox-community/netbox/issues/6850) - Default to current user when creating journal entries via REST API * [#6955](https://github.com/netbox-community/netbox/issues/6955) - Include type, ID, and slug on object view * [#7394](https://github.com/netbox-community/netbox/issues/7394) - Enable filtering cables by termination type & ID in REST API * [#7462](https://github.com/netbox-community/netbox/issues/7462) - Include count of assigned virtual machines under platform view ### Bug Fixes * [#7442](https://github.com/netbox-community/netbox/issues/7442) - Fix missing actions column on user-configured tables * [#7446](https://github.com/netbox-community/netbox/issues/7446) - Fix exception when viewing a large number of child IPs within a prefix * [#7455](https://github.com/netbox-community/netbox/issues/7455) - Fix site/provider network validation for circuit termination API serializer * [#7459](https://github.com/netbox-community/netbox/issues/7459) - Pre-populate location data when adding a device to a rack * [#7460](https://github.com/netbox-community/netbox/issues/7460) - Fix filtering connections by site ID --- <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 22:26:11 +01:00
adam closed this issue 2025-12-29 22:26:12 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13241