[PR #3544] [MERGED] Release v2.6.5 #12574

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 0903362 Adding a reference to deploying NetBox via Kubernetes manifests
  • 3531958 Post-release version bump
  • a1216fc Fixed thrown error in parseURL
  • 0798533 Add docs link for custom scripts; arrange links alphabetically
  • f8e10f6 Remove extraneous demo scripts
  • a17060c Update CHANGELOG.md
  • b0724df Add developer guidance
  • 8996c53 Fixes: #3534 - Add none option for untagged vlan field
  • fb34507 Fixes: #3532 - add device to graph type for documentation
  • 6fdd357 Fixes: #3531 - Fix FG Color for Rack Role

📊 Changes

25 files changed (+324 additions, -315 deletions)

View changed files

📝 CHANGELOG.md (+22 -0)
📝 CONTRIBUTING.md (+22 -0)
📝 README.md (+1 -0)
📝 docs/additional-features/graphs.md (+1 -1)
📝 mkdocs.yml (+7 -6)
📝 netbox/circuits/forms.py (+13 -2)
📝 netbox/dcim/forms.py (+14 -4)
📝 netbox/dcim/models.py (+28 -17)
📝 netbox/dcim/tables.py (+2 -1)
📝 netbox/dcim/tests/test_models.py (+16 -7)
📝 netbox/extras/api/serializers.py (+2 -2)
📝 netbox/extras/constants.py (+1 -0)
📝 netbox/extras/filters.py (+3 -1)
📝 netbox/extras/models.py (+8 -3)
📝 netbox/ipam/models.py (+2 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/css/base.css (+0 -110)
📝 netbox/project-static/js/forms.js (+5 -8)
netbox/scripts/examples.py (+0 -66)
netbox/scripts/myscripts.py (+0 -54)

...and 5 more files

📄 Description

Enhancements

  • #3297 - Include reserved units when calculating rack utilization
  • #3347 - Extend upgrade script to automatically remove stale content types
  • #3352 - Enable filtering changelog API by changed_object_id
  • #3515 - Enable export templates for inventory items
  • #3524 - Enable bulk editing of power outlet/power port associations
  • #3529 - Enable filtering circuits list by region

Bug Fixes

  • #3435 - Change IP/prefix CSV export to reference VRF name instead of RD
  • #3464 - Fix foreground text color on color picker fields
  • #3519 - Prevent cables from being terminated to virtual/wireless interfaces via API
  • #3521 - Fix error in parseURL related to variables in API URL
  • #3531 - Fixed rack role foreground color
  • #3534 - Added blank option for untagged VLANs
  • #3540 - Fixed virtual machine interface edit with new inline vlan edit fields
  • #3543 - Added inline VLAN editing to virtual machine interfaces

🔄 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/3544 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 9/25/2019 **Status:** ✅ Merged **Merged:** 9/25/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`0903362`](https://github.com/netbox-community/netbox/commit/090336233484aeb3ce8f5e6532effb204a37dd52) Adding a reference to deploying NetBox via Kubernetes manifests - [`3531958`](https://github.com/netbox-community/netbox/commit/353195850f5ab9ca6f8e6a6c1541c42b5834cdec) Post-release version bump - [`a1216fc`](https://github.com/netbox-community/netbox/commit/a1216fc1b7f48be207de7ea99ea1a957a9a1a458) Fixed thrown error in parseURL - [`0798533`](https://github.com/netbox-community/netbox/commit/0798533201eb4b13b7357853b35264eadb421ee9) Add docs link for custom scripts; arrange links alphabetically - [`f8e10f6`](https://github.com/netbox-community/netbox/commit/f8e10f66e136a05db4ee70206f506ad28c663153) Remove extraneous demo scripts - [`a17060c`](https://github.com/netbox-community/netbox/commit/a17060c060392862ba51a2650a2821f44426d53f) Update CHANGELOG.md - [`b0724df`](https://github.com/netbox-community/netbox/commit/b0724dfd1466e22ed1e21c23c5788fbdcbfe205e) Add developer guidance - [`8996c53`](https://github.com/netbox-community/netbox/commit/8996c530c92522652796224be312dfcc3b655dc5) Fixes: #3534 - Add none option for untagged vlan field - [`fb34507`](https://github.com/netbox-community/netbox/commit/fb34507defb09f96c5591d42ba294f6f5e7e0696) Fixes: #3532 - add device to graph type for documentation - [`6fdd357`](https://github.com/netbox-community/netbox/commit/6fdd35785edf6e0806432268521ac0ad6c3771bc) Fixes: #3531 - Fix FG Color for Rack Role ### 📊 Changes **25 files changed** (+324 additions, -315 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+22 -0) 📝 `CONTRIBUTING.md` (+22 -0) 📝 `README.md` (+1 -0) 📝 `docs/additional-features/graphs.md` (+1 -1) 📝 `mkdocs.yml` (+7 -6) 📝 `netbox/circuits/forms.py` (+13 -2) 📝 `netbox/dcim/forms.py` (+14 -4) 📝 `netbox/dcim/models.py` (+28 -17) 📝 `netbox/dcim/tables.py` (+2 -1) 📝 `netbox/dcim/tests/test_models.py` (+16 -7) 📝 `netbox/extras/api/serializers.py` (+2 -2) 📝 `netbox/extras/constants.py` (+1 -0) 📝 `netbox/extras/filters.py` (+3 -1) 📝 `netbox/extras/models.py` (+8 -3) 📝 `netbox/ipam/models.py` (+2 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/css/base.css` (+0 -110) 📝 `netbox/project-static/js/forms.js` (+5 -8) ➖ `netbox/scripts/examples.py` (+0 -66) ➖ `netbox/scripts/myscripts.py` (+0 -54) _...and 5 more files_ </details> ### 📄 Description ## Enhancements * [#3297](https://github.com/netbox-community/netbox/issues/3297) - Include reserved units when calculating rack utilization * [#3347](https://github.com/netbox-community/netbox/issues/3347) - Extend upgrade script to automatically remove stale content types * [#3352](https://github.com/netbox-community/netbox/issues/3352) - Enable filtering changelog API by `changed_object_id` * [#3515](https://github.com/netbox-community/netbox/issues/3515) - Enable export templates for inventory items * [#3524](https://github.com/netbox-community/netbox/issues/3524) - Enable bulk editing of power outlet/power port associations * [#3529](https://github.com/netbox-community/netbox/issues/3529) - Enable filtering circuits list by region ## Bug Fixes * [#3435](https://github.com/netbox-community/netbox/issues/3435) - Change IP/prefix CSV export to reference VRF name instead of RD * [#3464](https://github.com/netbox-community/netbox/issues/3464) - Fix foreground text color on color picker fields * [#3519](https://github.com/netbox-community/netbox/issues/3519) - Prevent cables from being terminated to virtual/wireless interfaces via API * [#3521](https://github.com/netbox-community/netbox/issues/3521) - Fix error in `parseURL` related to variables in API URL * [#3531](https://github.com/netbox-community/netbox/issues/3531) - Fixed rack role foreground color * [#3534](https://github.com/netbox-community/netbox/issues/3534) - Added blank option for untagged VLANs * [#3540](https://github.com/netbox-community/netbox/issues/3540) - Fixed virtual machine interface edit with new inline vlan edit fields * [#3543](https://github.com/netbox-community/netbox/issues/3543) - Added inline VLAN editing to virtual machine interfaces --- <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:24 +01:00
adam closed this issue 2025-12-29 22:22:25 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12574