[PR #3745] [MERGED] Release v2.6.8 #12625

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3745
Author: @jeremystretch
Created: 12/10/2019
Status: Merged
Merged: 12/10/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • a2a83a4 Post-release version bump
  • 7f779e3 Hide password change page when user is logged in using LDAP
  • 99a542e Closes #3663: API filter by created, last_updated
  • a11fa44 Closes #3663: fix inheritance error
  • bbd6598 3457 Display cable colors in device interface list
  • fb4283e Move alternative installations to the GitHub wiki
  • 5eb5c4b Fixes #3674: Include comments on PowerFeed view
  • fbde618 Fixes #3669: Include weight field in prefix/VLAN role form
  • 053f49c Merge pull request #3673 from ananace/cable-color-display
  • b4433a8 Merge pull request #3667 from steffann/3139-disable-user-password-change-if-come-in-with-ldap-auth

📊 Changes

30 files changed (+158 additions, -55 deletions)

View changed files

📝 .github/stale.yml (+0 -0)
📝 README.md (+0 -7)
📝 docs/additional-features/custom-scripts.md (+1 -1)
📝 docs/installation/3-http-daemon.md (+0 -1)
📝 docs/release-notes/version-2.6.md (+22 -0)
📝 mkdocs.yml (+1 -0)
📝 netbox/circuits/filters.py (+3 -3)
📝 netbox/dcim/constants.py (+2 -1)
📝 netbox/dcim/filters.py (+13 -11)
📝 netbox/dcim/migrations/0066_cables.py (+2 -2)
📝 netbox/dcim/models.py (+10 -0)
📝 netbox/dcim/signals.py (+1 -1)
📝 netbox/dcim/tables.py (+5 -3)
📝 netbox/extras/api/urls.py (+1 -1)
📝 netbox/extras/filters.py (+21 -0)
📝 netbox/ipam/filters.py (+7 -7)
📝 netbox/ipam/forms.py (+5 -1)
📝 netbox/ipam/migrations/0027_ipaddress_add_dns_name.py (+1 -1)
📝 netbox/ipam/tables.py (+2 -2)
📝 netbox/ipam/validators.py (+2 -2)

...and 10 more files

📄 Description

Enhancements

  • #3139 - Disable password change form for LDAP-authenticated users
  • #3457 - Display cable colors on device view
  • #3329 - Remove obsolete P3P policy header
  • #3663 - Add query filters for created and last_updated fields
  • #3722 - Allow the underscore character in IPAddress DNS names

Bug Fixes

  • #3312 - Fix validation error when editing power cables in bulk
  • #3644 - Fix exception when connecting a cable to a RearPort with no corresponding FrontPort
  • #3669 - Include weight field in prefix/VLAN role form
  • #3674 - Include comments on PowerFeed view
  • #3679 - Fix link for assigned ipaddress in interface page
  • #3709 - Prevent exception when importing an invalid cable definition
  • #3720 - Correctly indicate power feed terminations on cable list
  • #3724 - Fix API filtering of interfaces by more than one device name
  • #3725 - Enforce client validation for minimum service port number

🔄 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/3745 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/10/2019 **Status:** ✅ Merged **Merged:** 12/10/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`a2a83a4`](https://github.com/netbox-community/netbox/commit/a2a83a4a4c76c13dec39ea9ac86d6b833a6e4f30) Post-release version bump - [`7f779e3`](https://github.com/netbox-community/netbox/commit/7f779e39426eb3c24dda9684c1b1e2859ec4fac0) Hide password change page when user is logged in using LDAP - [`99a542e`](https://github.com/netbox-community/netbox/commit/99a542e4e4fd2b6b3e8b4b2652cd141722d4dd60) Closes #3663: API filter by created, last_updated - [`a11fa44`](https://github.com/netbox-community/netbox/commit/a11fa44170092bb5a0cf01097f625bd52c62fdc5) Closes #3663: fix inheritance error - [`bbd6598`](https://github.com/netbox-community/netbox/commit/bbd65988f92add4bf0c9699b506c3088cde896ec) 3457 Display cable colors in device interface list - [`fb4283e`](https://github.com/netbox-community/netbox/commit/fb4283ed53b0c4cb3f9dd2b498036eea9dc19ea5) Move alternative installations to the GitHub wiki - [`5eb5c4b`](https://github.com/netbox-community/netbox/commit/5eb5c4bac551d9875a3688aad36388af8f61e3a6) Fixes #3674: Include comments on PowerFeed view - [`fbde618`](https://github.com/netbox-community/netbox/commit/fbde6187eae6d37a8cded99a6b2899ed4a034060) Fixes #3669: Include weight field in prefix/VLAN role form - [`053f49c`](https://github.com/netbox-community/netbox/commit/053f49c76a2f2879e80144e670ff84fbd2f447d1) Merge pull request #3673 from ananace/cable-color-display - [`b4433a8`](https://github.com/netbox-community/netbox/commit/b4433a84715e02c65b9837d6e90c0f5cece195c8) Merge pull request #3667 from steffann/3139-disable-user-password-change-if-come-in-with-ldap-auth ### 📊 Changes **30 files changed** (+158 additions, -55 deletions) <details> <summary>View changed files</summary> 📝 `.github/stale.yml` (+0 -0) 📝 `README.md` (+0 -7) 📝 `docs/additional-features/custom-scripts.md` (+1 -1) 📝 `docs/installation/3-http-daemon.md` (+0 -1) 📝 `docs/release-notes/version-2.6.md` (+22 -0) 📝 `mkdocs.yml` (+1 -0) 📝 `netbox/circuits/filters.py` (+3 -3) 📝 `netbox/dcim/constants.py` (+2 -1) 📝 `netbox/dcim/filters.py` (+13 -11) 📝 `netbox/dcim/migrations/0066_cables.py` (+2 -2) 📝 `netbox/dcim/models.py` (+10 -0) 📝 `netbox/dcim/signals.py` (+1 -1) 📝 `netbox/dcim/tables.py` (+5 -3) 📝 `netbox/extras/api/urls.py` (+1 -1) 📝 `netbox/extras/filters.py` (+21 -0) 📝 `netbox/ipam/filters.py` (+7 -7) 📝 `netbox/ipam/forms.py` (+5 -1) 📝 `netbox/ipam/migrations/0027_ipaddress_add_dns_name.py` (+1 -1) 📝 `netbox/ipam/tables.py` (+2 -2) 📝 `netbox/ipam/validators.py` (+2 -2) _...and 10 more files_ </details> ### 📄 Description ## Enhancements * [#3139](https://github.com/netbox-community/netbox/issues/3139) - Disable password change form for LDAP-authenticated users * [#3457](https://github.com/netbox-community/netbox/issues/3457) - Display cable colors on device view * [#3329](https://github.com/netbox-community/netbox/issues/3329) - Remove obsolete P3P policy header * [#3663](https://github.com/netbox-community/netbox/issues/3663) - Add query filters for `created` and `last_updated` fields * [#3722](https://github.com/netbox-community/netbox/issues/3722) - Allow the underscore character in IPAddress DNS names ## Bug Fixes * [#3312](https://github.com/netbox-community/netbox/issues/3312) - Fix validation error when editing power cables in bulk * [#3644](https://github.com/netbox-community/netbox/issues/3644) - Fix exception when connecting a cable to a RearPort with no corresponding FrontPort * [#3669](https://github.com/netbox-community/netbox/issues/3669) - Include `weight` field in prefix/VLAN role form * [#3674](https://github.com/netbox-community/netbox/issues/3674) - Include comments on PowerFeed view * [#3679](https://github.com/netbox-community/netbox/issues/3679) - Fix link for assigned ipaddress in interface page * [#3709](https://github.com/netbox-community/netbox/issues/3709) - Prevent exception when importing an invalid cable definition * [#3720](https://github.com/netbox-community/netbox/issues/3720) - Correctly indicate power feed terminations on cable list * [#3724](https://github.com/netbox-community/netbox/issues/3724) - Fix API filtering of interfaces by more than one device name * [#3725](https://github.com/netbox-community/netbox/issues/3725) - Enforce client validation for minimum service port number --- <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:42 +01:00
adam closed this issue 2025-12-29 22:22:43 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12625