[PR #10937] [MERGED] Release v3.3.8 #13720

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

28 files changed (+302 additions, -202 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/installation/3-netbox.md (+1 -1)
📝 docs/release-notes/version-3.3.md (+26 -0)
📝 netbox/dcim/choices.py (+25 -0)
📝 netbox/dcim/forms/models.py (+13 -2)
📝 netbox/dcim/svg/cables.py (+1 -1)
📝 netbox/extras/context_managers.py (+7 -24)
📝 netbox/extras/signals.py (+38 -23)
📝 netbox/ipam/forms/filtersets.py (+1 -0)
📝 netbox/ipam/forms/models.py (+5 -0)
📝 netbox/netbox/__init__.py (+0 -3)
📝 netbox/netbox/authentication.py (+1 -0)
netbox/netbox/context.py (+10 -0)
netbox/netbox/request_context.py (+0 -9)
📝 netbox/netbox/settings.py (+3 -4)
netbox/project-static/js/setmode.js (+72 -0)
📝 netbox/templates/base/base.html (+7 -70)
📝 netbox/templates/dcim/device/status.html (+5 -5)
📝 netbox/templates/dcim/inc/cable_termination.html (+4 -0)

...and 8 more files

📄 Description

Enhancements

  • #10356 - Add backplane Ethernet interface types
  • #10902 - Add location selector to power feed form
  • #10904 - Use front/rear port colors in cable trace SVG
  • #10914 - Include "add module type" button on manufacturer view
  • #10915 - Add count of L2VPNs to tenant view
  • #10919 - Include device location under cable view
  • #10920 - Include request cookies when queuing a custom script

Bug Fixes

  • #9439 - Ensure thread safety of change logging functions
  • #10709 - Correct UI display for azuread-v2-tenant-oauth2 SSO backend
  • #10829 - Fix bulk edit/delete buttons ad top of object lists
  • #10837 - Correct cookie paths when BASE_PATH is set
  • #10874 - Remove erroneous link for contact assignment count
  • #10881 - Fix dark mode coloring for data on device status page
  • #10891 - Populate tag selection list for service filter form
  • #10897 - Fix form widget styling on FHRP group form
  • #10910 - Fix cable creation links on power port 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/10937 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/16/2022 **Status:** ✅ Merged **Merged:** 11/16/2022 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`18332bd`](https://github.com/netbox-community/netbox/commit/18332bdbf10d8d79d2110a6a18cc80efbb8dc67d) PRVB - [`edb5220`](https://github.com/netbox-community/netbox/commit/edb522022848b7a00a08dbe4206e16526a1e585a) Changelog for #10666 (missed in v3.3.6) - [`8f4fa06`](https://github.com/netbox-community/netbox/commit/8f4fa065f90b94f1a840331289677384fe4d6b3a) 10770 fix social auth - [`867af61`](https://github.com/netbox-community/netbox/commit/867af61875538c8d305b26b622a7555be354c50a) 10282 fix race condition in API IP creation - [`a25ee66`](https://github.com/netbox-community/netbox/commit/a25ee66150884f122c3c5e58ff97b355ca1119c2) Changelog for #10282, #10770 - [`7990cfb`](https://github.com/netbox-community/netbox/commit/7990cfb078db1800d557bd06785239cfc84d8db0) Fixes #10803: Fix exception when ordering contacts by number of assignments - [`aaf1ea5`](https://github.com/netbox-community/netbox/commit/aaf1ea52b769571991292211bb2ca477d557006c) Fixes #10791: Permit nullifying VLAN group scope_type via REST API - [`aa7f04b`](https://github.com/netbox-community/netbox/commit/aa7f04bf1b8200ef9c5b261cd642862229444d8f) Fixes #10809: Permit nullifying site time_zone via REST API - [`4f5caa5`](https://github.com/netbox-community/netbox/commit/4f5caa5ed27692fac07eda11f0d7bb6295fed08a) Release v3.3.7 - [`4e39021`](https://github.com/netbox-community/netbox/commit/4e39021b6f630dd511e5af435dcd6f01f40f6bf2) Merge branch 'master' into develop ### 📊 Changes **28 files changed** (+302 additions, -202 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/installation/3-netbox.md` (+1 -1) 📝 `docs/release-notes/version-3.3.md` (+26 -0) 📝 `netbox/dcim/choices.py` (+25 -0) 📝 `netbox/dcim/forms/models.py` (+13 -2) 📝 `netbox/dcim/svg/cables.py` (+1 -1) 📝 `netbox/extras/context_managers.py` (+7 -24) 📝 `netbox/extras/signals.py` (+38 -23) 📝 `netbox/ipam/forms/filtersets.py` (+1 -0) 📝 `netbox/ipam/forms/models.py` (+5 -0) 📝 `netbox/netbox/__init__.py` (+0 -3) 📝 `netbox/netbox/authentication.py` (+1 -0) ➕ `netbox/netbox/context.py` (+10 -0) ➖ `netbox/netbox/request_context.py` (+0 -9) 📝 `netbox/netbox/settings.py` (+3 -4) ➕ `netbox/project-static/js/setmode.js` (+72 -0) 📝 `netbox/templates/base/base.html` (+7 -70) 📝 `netbox/templates/dcim/device/status.html` (+5 -5) 📝 `netbox/templates/dcim/inc/cable_termination.html` (+4 -0) _...and 8 more files_ </details> ### 📄 Description ### Enhancements * [#10356](https://github.com/netbox-community/netbox/issues/10356) - Add backplane Ethernet interface types * [#10902](https://github.com/netbox-community/netbox/issues/10902) - Add location selector to power feed form * [#10904](https://github.com/netbox-community/netbox/issues/10904) - Use front/rear port colors in cable trace SVG * [#10914](https://github.com/netbox-community/netbox/issues/10914) - Include "add module type" button on manufacturer view * [#10915](https://github.com/netbox-community/netbox/issues/10915) - Add count of L2VPNs to tenant view * [#10919](https://github.com/netbox-community/netbox/issues/10919) - Include device location under cable view * [#10920](https://github.com/netbox-community/netbox/issues/10920) - Include request cookies when queuing a custom script ### Bug Fixes * [#9439](https://github.com/netbox-community/netbox/issues/9439) - Ensure thread safety of change logging functions * [#10709](https://github.com/netbox-community/netbox/issues/10709) - Correct UI display for `azuread-v2-tenant-oauth2` SSO backend * [#10829](https://github.com/netbox-community/netbox/issues/10829) - Fix bulk edit/delete buttons ad top of object lists * [#10837](https://github.com/netbox-community/netbox/issues/10837) - Correct cookie paths when `BASE_PATH` is set * [#10874](https://github.com/netbox-community/netbox/issues/10874) - Remove erroneous link for contact assignment count * [#10881](https://github.com/netbox-community/netbox/issues/10881) - Fix dark mode coloring for data on device status page * [#10891](https://github.com/netbox-community/netbox/issues/10891) - Populate tag selection list for service filter form * [#10897](https://github.com/netbox-community/netbox/issues/10897) - Fix form widget styling on FHRP group form * [#10910](https://github.com/netbox-community/netbox/issues/10910) - Fix cable creation links on power port 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:20:26 +01:00
adam closed this issue 2025-12-29 23:20:26 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13720