[PR #3518] [MERGED] Release v2.6.4 #12569

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3518
Author: @jeremystretch
Created: 9/19/2019
Status: Merged
Merged: 9/19/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 2ce0ff5 Post-release version bump
  • 8f5e73a Add filter for has local context data (#3159)
  • 9c6dbd7 Add in in-line vlan editing and Bulk vlan editing (#3350)
  • 050f247 Fixes: #3318 - Increases length of platform name and slug to 64 characters (#3353)
  • e67d4fb Update Changelog with Future Changes
  • 355910e Fixes #3489: Prevent exception triggered by webhook upon object deletion
  • f533530 Moved related projects list to the wiki
  • 062c65f Changelog cleanup
  • a8ca536 Bump platform name/slug max length to 100 chars (#3318)
  • 73065fa Using static element to determine brief parameter, corrected to $(element)

📊 Changes

32 files changed (+480 additions, -244 deletions)

View changed files

📝 CHANGELOG.md (+28 -9)
📝 README.md (+1 -12)
📝 docs/additional-features/custom-links.md (+9 -1)
📝 docs/api/overview.md (+4 -2)
📝 docs/configuration/required-settings.md (+22 -22)
📝 docs/installation/2-netbox.md (+18 -16)
📝 netbox/circuits/api/views.py (+1 -1)
📝 netbox/dcim/api/nested_serializers.py (+1 -1)
📝 netbox/dcim/api/serializers.py (+2 -2)
📝 netbox/dcim/api/views.py (+15 -3)
📝 netbox/dcim/filters.py (+2 -2)
📝 netbox/dcim/forms.py (+158 -90)
netbox/dcim/migrations/0074_increase_field_length_platform_name_slug.py (+23 -0)
📝 netbox/dcim/models.py (+3 -2)
📝 netbox/dcim/urls.py (+0 -1)
📝 netbox/dcim/views.py (+4 -11)
📝 netbox/extras/constants.py (+2 -0)
📝 netbox/extras/filters.py (+14 -0)
📝 netbox/extras/forms.py (+19 -2)
📝 netbox/extras/middleware.py (+22 -12)

...and 12 more files

📄 Description

Enhancements

  • #2160 - Add bulk editing for interface VLAN assignment
  • #3027 - Add local_context_data boolean filter for devices
  • #3318 - Increase length of platform name and slug to 100 characters
  • #3341 - Enable inline VLAN assignment while editing an interface
  • #3485 - Enable embedded graphs for devices
  • #3510 - Add minimum/maximum prefix length enforcement for IPNetworkVar

Bug Fixes

  • #3489 - Prevent exception triggered by webhook upon object deletion
  • #3501 - Fix rendering of checkboxes on custom script forms
  • #3511 - Correct API URL for nested device bays
  • #3513 - Fix assignment of tags when creating front/rear ports
  • #3514 - Label TextVar fields when rendering custom script forms

🔄 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/3518 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 9/19/2019 **Status:** ✅ Merged **Merged:** 9/19/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`2ce0ff5`](https://github.com/netbox-community/netbox/commit/2ce0ff505aff54ba7faad84780e45952922f69f6) Post-release version bump - [`8f5e73a`](https://github.com/netbox-community/netbox/commit/8f5e73a5987ae5bdb83b84c0d87369269a6acb9e) Add filter for has local context data (#3159) - [`9c6dbd7`](https://github.com/netbox-community/netbox/commit/9c6dbd73376d0596d906686c5f3f287f28137d5f) Add in in-line vlan editing and Bulk vlan editing (#3350) - [`050f247`](https://github.com/netbox-community/netbox/commit/050f2478d3692467c8ec152645e651d7d8ac99fa) Fixes: #3318 - Increases length of platform name and slug to 64 characters (#3353) - [`e67d4fb`](https://github.com/netbox-community/netbox/commit/e67d4fb2e58454948dc427ca31604a6330d8144a) Update Changelog with Future Changes - [`355910e`](https://github.com/netbox-community/netbox/commit/355910e182abe412b2a1b3ac46204dde69e1eb67) Fixes #3489: Prevent exception triggered by webhook upon object deletion - [`f533530`](https://github.com/netbox-community/netbox/commit/f5335306939d8c95adbd4067d5d3278a12d248cb) Moved related projects list to the wiki - [`062c65f`](https://github.com/netbox-community/netbox/commit/062c65fd67a55fef88c12da32dad469119d7b8fa) Changelog cleanup - [`a8ca536`](https://github.com/netbox-community/netbox/commit/a8ca536d44cafe2b799033ee0b413a18ef91511e) Bump platform name/slug max length to 100 chars (#3318) - [`73065fa`](https://github.com/netbox-community/netbox/commit/73065fa6e73ca7af2a24c0b5d0a06108929663ba) Using static element to determine brief parameter, corrected to $(element) ### 📊 Changes **32 files changed** (+480 additions, -244 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+28 -9) 📝 `README.md` (+1 -12) 📝 `docs/additional-features/custom-links.md` (+9 -1) 📝 `docs/api/overview.md` (+4 -2) 📝 `docs/configuration/required-settings.md` (+22 -22) 📝 `docs/installation/2-netbox.md` (+18 -16) 📝 `netbox/circuits/api/views.py` (+1 -1) 📝 `netbox/dcim/api/nested_serializers.py` (+1 -1) 📝 `netbox/dcim/api/serializers.py` (+2 -2) 📝 `netbox/dcim/api/views.py` (+15 -3) 📝 `netbox/dcim/filters.py` (+2 -2) 📝 `netbox/dcim/forms.py` (+158 -90) ➕ `netbox/dcim/migrations/0074_increase_field_length_platform_name_slug.py` (+23 -0) 📝 `netbox/dcim/models.py` (+3 -2) 📝 `netbox/dcim/urls.py` (+0 -1) 📝 `netbox/dcim/views.py` (+4 -11) 📝 `netbox/extras/constants.py` (+2 -0) 📝 `netbox/extras/filters.py` (+14 -0) 📝 `netbox/extras/forms.py` (+19 -2) 📝 `netbox/extras/middleware.py` (+22 -12) _...and 12 more files_ </details> ### 📄 Description ## Enhancements * [#2160](https://github.com/netbox-community/netbox/issues/2160) - Add bulk editing for interface VLAN assignment * [#3027](https://github.com/netbox-community/netbox/issues/3028) - Add `local_context_data` boolean filter for devices * [#3318](https://github.com/netbox-community/netbox/issues/3318) - Increase length of platform name and slug to 100 characters * [#3341](https://github.com/netbox-community/netbox/issues/3341) - Enable inline VLAN assignment while editing an interface * [#3485](https://github.com/netbox-community/netbox/issues/3485) - Enable embedded graphs for devices * [#3510](https://github.com/netbox-community/netbox/issues/3510) - Add minimum/maximum prefix length enforcement for `IPNetworkVar` ## Bug Fixes * [#3489](https://github.com/netbox-community/netbox/issues/3489) - Prevent exception triggered by webhook upon object deletion * [#3501](https://github.com/netbox-community/netbox/issues/3501) - Fix rendering of checkboxes on custom script forms * [#3511](https://github.com/netbox-community/netbox/issues/3511) - Correct API URL for nested device bays * [#3513](https://github.com/netbox-community/netbox/issues/3513) - Fix assignment of tags when creating front/rear ports * [#3514](https://github.com/netbox-community/netbox/issues/3514) - Label TextVar fields when rendering custom script forms --- <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:22:22 +01:00
adam closed this issue 2025-12-29 22:22:22 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12569