[PR #13294] [MERGED] Release v3.5.7 #14148

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/13294
Author: @jeremystretch
Created: 7/28/2023
Status: Merged
Merged: 7/28/2023
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

28 files changed (+207 additions, -44 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/features/ipam.md (+1 -1)
📝 docs/installation/1-postgresql.md (+3 -0)
📝 docs/installation/upgrading.md (+14 -10)
📝 docs/release-notes/version-3.5.md (+20 -0)
📝 netbox/core/data_backends.py (+3 -0)
📝 netbox/dcim/choices.py (+22 -0)
📝 netbox/dcim/forms/bulk_edit.py (+2 -2)
📝 netbox/dcim/models/devices.py (+1 -1)
📝 netbox/dcim/views.py (+20 -8)
📝 netbox/extras/api/views.py (+3 -4)
📝 netbox/netbox/navigation/menu.py (+1 -1)
📝 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 (+12 -0)
📝 netbox/templates/core/datasource.html (+5 -1)
📝 netbox/templates/dcim/rack.html (+0 -1)

...and 8 more files

📄 Description

Enhancements

  • #11803 - Move non-rack devices list to a separate tab under the rack view
  • #12625 - Mask sensitive parameters when viewing a configured data source
  • #13009 - Add IEC 10609-1 and NBR 14136 power port & outlet types
  • #13097 - Implement a faster initial poll for report & script results
  • #13234 - Add 100GBASE-X-DSFP and 100GBASE-X-SFPDD interface types

Bug Fixes

  • #13051 - Fix Markdown support for table cell alignment
  • #13167 - Fix missing script results when fetched via REST API
  • #13233 - Remove extraneous VLAN group field from bulk edit form for interfaces
  • #13237 - Permit unauthenticated access to content types REST API endpoint when LOGIN_REQUIRED is false
  • #13285 - Fix exception when importing device type missing rack unit height value

🔄 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/13294 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/28/2023 **Status:** ✅ Merged **Merged:** 7/28/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`0f0cf68`](https://github.com/netbox-community/netbox/commit/0f0cf683c44f058a72a50fa90b889ab3fc6bea08) PRVB - [`8b8adfb`](https://github.com/netbox-community/netbox/commit/8b8adfbbbb4667dab4742c6ad66296670db42fe6) Use class_name instead of name to get script results - [`d075e7a`](https://github.com/netbox-community/netbox/commit/d075e7a66a26a6ca9154fb145b224472aaa5cd86) Fixes #13237 - Allow unauthenticated api access to content-types. - [`5a3d46a`](https://github.com/netbox-community/netbox/commit/5a3d46ac8dea930edb5e01ef4684878ff46d8526) Remove vlan_group from nullable fields in InterfaceBulkEditForm - [`0ab3f97`](https://github.com/netbox-community/netbox/commit/0ab3f979e0451444a4ce42330bf43c952d940402) Adds faster polling for scripts and reports (#13202) - [`bba4fe4`](https://github.com/netbox-community/netbox/commit/bba4fe437cc6b577d9d4f5973688b617b819b46d) Update the install doc for PostgreSQL 15 - [`1d52627`](https://github.com/netbox-community/netbox/commit/1d52627f71c230982b8b5a1c0806c7d050ec4955) Update ipam.md - [`0276f29`](https://github.com/netbox-community/netbox/commit/0276f29067c0ea4b9cb4c5712240d89ae0593690) adds sensitive_parameters to DataBackend #12625 - [`4b29223`](https://github.com/netbox-community/netbox/commit/4b2922312a3aa58d9c63e5b95577e8fd841b4a45) Allow the align property on th and td and add CSS rules for overriding text-alignment - [`3e12fbe`](https://github.com/netbox-community/netbox/commit/3e12fbe36791a67363652b4639861c1ffd7746bb) Changelog for #12625, #13051, #13097, #13167, #13233, #13237 ### 📊 Changes **28 files changed** (+207 additions, -44 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/features/ipam.md` (+1 -1) 📝 `docs/installation/1-postgresql.md` (+3 -0) 📝 `docs/installation/upgrading.md` (+14 -10) 📝 `docs/release-notes/version-3.5.md` (+20 -0) 📝 `netbox/core/data_backends.py` (+3 -0) 📝 `netbox/dcim/choices.py` (+22 -0) 📝 `netbox/dcim/forms/bulk_edit.py` (+2 -2) 📝 `netbox/dcim/models/devices.py` (+1 -1) 📝 `netbox/dcim/views.py` (+20 -8) 📝 `netbox/extras/api/views.py` (+3 -4) 📝 `netbox/netbox/navigation/menu.py` (+1 -1) 📝 `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` (+12 -0) 📝 `netbox/templates/core/datasource.html` (+5 -1) 📝 `netbox/templates/dcim/rack.html` (+0 -1) _...and 8 more files_ </details> ### 📄 Description ### Enhancements * [#11803](https://github.com/netbox-community/netbox/issues/11803) - Move non-rack devices list to a separate tab under the rack view * [#12625](https://github.com/netbox-community/netbox/issues/12625) - Mask sensitive parameters when viewing a configured data source * [#13009](https://github.com/netbox-community/netbox/issues/13009) - Add IEC 10609-1 and NBR 14136 power port & outlet types * [#13097](https://github.com/netbox-community/netbox/issues/13097) - Implement a faster initial poll for report & script results * [#13234](https://github.com/netbox-community/netbox/issues/13234) - Add 100GBASE-X-DSFP and 100GBASE-X-SFPDD interface types ### Bug Fixes * [#13051](https://github.com/netbox-community/netbox/issues/13051) - Fix Markdown support for table cell alignment * [#13167](https://github.com/netbox-community/netbox/issues/13167) - Fix missing script results when fetched via REST API * [#13233](https://github.com/netbox-community/netbox/issues/13233) - Remove extraneous VLAN group field from bulk edit form for interfaces * [#13237](https://github.com/netbox-community/netbox/issues/13237) - Permit unauthenticated access to content types REST API endpoint when `LOGIN_REQUIRED` is false * [#13285](https://github.com/netbox-community/netbox/issues/13285) - Fix exception when importing device type missing rack unit height value --- <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:22:48 +01:00
adam closed this issue 2025-12-29 23:22: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#14148