[PR #14386] [MERGED] Release v3.6.6 #14377

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/14386
Author: @jeremystretch
Created: 11/30/2023
Status: Merged
Merged: 11/30/2023
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

26 files changed (+176 additions, -113 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/release-notes/version-3.6.md (+23 -0)
📝 netbox/core/models/data.py (+1 -0)
📝 netbox/core/models/files.py (+9 -0)
📝 netbox/core/models/jobs.py (+1 -1)
📝 netbox/extras/api/views.py (+1 -1)
📝 netbox/extras/filtersets.py (+1 -2)
📝 netbox/extras/views.py (+1 -1)
📝 netbox/extras/webhooks.py (+1 -1)
📝 netbox/ipam/tables/asn.py (+1 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views/generic/bulk_views.py (+4 -0)
📝 netbox/templates/dcim/device.html (+3 -20)
📝 netbox/templates/dcim/rack.html (+8 -15)
📝 netbox/templates/dcim/rackreservation.html (+19 -19)
📝 netbox/templates/dcim/site.html (+3 -16)
📝 netbox/templates/ipam/prefix.html (+10 -10)
📝 netbox/templates/ipam/vlan.html (+10 -10)
📝 netbox/tenancy/models/contacts.py (+2 -2)

...and 6 more files

📄 Description

Enhancements

  • #13735 - Show complete region hierarchy in UI for all relevant objects

Bug Fixes

  • #14056 - Record a pre-change snapshot when bulk editing objects via CSV
  • #14187 - Raise a validation error when attempting to create a duplicate script or report
  • #14199 - Fix jobs list for reports with a custom name
  • #14239 - Fix CustomFieldChoiceSet search filter
  • #14242 - Enable export templates for contact assignments
  • #14299 - Webhook timestamps should be in proper ISO 8601 format
  • #14325 - Fix numeric ordering of service ports
  • #14339 - Correctly hash local user password when set via REST API
  • #14343 - Fix ordering ASN table by ASDOT column
  • #14346 - Fix running reports via REST API
  • #14349 - Fix custom validation support for remote data sources
  • #14363 - Fix bulk editing of interfaces assigned to VM with no cluster

🔄 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/14386 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/30/2023 **Status:** ✅ Merged **Merged:** 11/30/2023 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`d52a6d3`](https://github.com/netbox-community/netbox/commit/d52a6d3b1090f408882e0875e04fb739fb492b75) PRVB - [`40763b5`](https://github.com/netbox-community/netbox/commit/40763b58bdad0892efff418ade3d98fc8cf184d6) 14299 change webhook timestamp to isoformat (#14331) - [`7d413ea`](https://github.com/netbox-community/netbox/commit/7d413ea3c2dccb78010a4664a23ac1c2b5494a8a) Fixes #14343: Set order_by accessor for asn_asdot column (#14369) - [`080da68`](https://github.com/netbox-community/netbox/commit/080da68b6adfd9e9d93c4ec2af92e997dc26e6c8) Fixes #14349: Fix custom validation support for DataSource - [`fc7d6e1`](https://github.com/netbox-community/netbox/commit/fc7d6e1387b3fcfd0490f94f249f54cea68bda04) Fixes #14325: Ensure expanded numeric arrays are ordered (#14370) - [`01ba4ce`](https://github.com/netbox-community/netbox/commit/01ba4ce129aa89d74a41b4fbd6994d7559019f96) Fixes #14242: Enable export templates for contact assignments - [`792b353`](https://github.com/netbox-community/netbox/commit/792b353f6477ce9bb3bc2a234dd6313c9fa38402) Fixes #14363: Fix bulk editing of interfaces assigned to VM with no cluster - [`c43c63a`](https://github.com/netbox-community/netbox/commit/c43c63a817444703f068cb6b05fd4b5c5a702f5e) 14346 fix missing function call convert - [`3a3d439`](https://github.com/netbox-community/netbox/commit/3a3d43911cd45e1b9ed09a39f8e172f987ed36f8) Fixed password was not hashed on REST API update (#14340) - [`ff021a8`](https://github.com/netbox-community/netbox/commit/ff021a8e4ece4655590e5555c030ed0220543f32) Adds region hierarchy in templates (#14213) ### 📊 Changes **26 files changed** (+176 additions, -113 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-3.6.md` (+23 -0) 📝 `netbox/core/models/data.py` (+1 -0) 📝 `netbox/core/models/files.py` (+9 -0) 📝 `netbox/core/models/jobs.py` (+1 -1) 📝 `netbox/extras/api/views.py` (+1 -1) 📝 `netbox/extras/filtersets.py` (+1 -2) 📝 `netbox/extras/views.py` (+1 -1) 📝 `netbox/extras/webhooks.py` (+1 -1) 📝 `netbox/ipam/tables/asn.py` (+1 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views/generic/bulk_views.py` (+4 -0) 📝 `netbox/templates/dcim/device.html` (+3 -20) 📝 `netbox/templates/dcim/rack.html` (+8 -15) 📝 `netbox/templates/dcim/rackreservation.html` (+19 -19) 📝 `netbox/templates/dcim/site.html` (+3 -16) 📝 `netbox/templates/ipam/prefix.html` (+10 -10) 📝 `netbox/templates/ipam/vlan.html` (+10 -10) 📝 `netbox/tenancy/models/contacts.py` (+2 -2) _...and 6 more files_ </details> ### 📄 Description ### Enhancements * [#13735](https://github.com/netbox-community/netbox/issues/13735) - Show complete region hierarchy in UI for all relevant objects ### Bug Fixes * [#14056](https://github.com/netbox-community/netbox/issues/14056) - Record a pre-change snapshot when bulk editing objects via CSV * [#14187](https://github.com/netbox-community/netbox/issues/14187) - Raise a validation error when attempting to create a duplicate script or report * [#14199](https://github.com/netbox-community/netbox/issues/14199) - Fix jobs list for reports with a custom name * [#14239](https://github.com/netbox-community/netbox/issues/14239) - Fix CustomFieldChoiceSet search filter * [#14242](https://github.com/netbox-community/netbox/issues/14242) - Enable export templates for contact assignments * [#14299](https://github.com/netbox-community/netbox/issues/14299) - Webhook timestamps should be in proper ISO 8601 format * [#14325](https://github.com/netbox-community/netbox/issues/14325) - Fix numeric ordering of service ports * [#14339](https://github.com/netbox-community/netbox/issues/14339) - Correctly hash local user password when set via REST API * [#14343](https://github.com/netbox-community/netbox/issues/14343) - Fix ordering ASN table by ASDOT column * [#14346](https://github.com/netbox-community/netbox/issues/14346) - Fix running reports via REST API * [#14349](https://github.com/netbox-community/netbox/issues/14349) - Fix custom validation support for remote data sources * [#14363](https://github.com/netbox-community/netbox/issues/14363) - Fix bulk editing of interfaces assigned to VM with no cluster --- <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:24:08 +01:00
adam closed this issue 2025-12-29 23:24:09 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#14377