[PR #3661] [MERGED] Release v2.6.7 #12608

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3661
Author: @jeremystretch
Created: 11/1/2019
Status: Merged
Merged: 11/1/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • b25faec Post-release version bump
  • 4cc2972 Update pillow version to 6.2.0
  • 09d7d38 implemented #3499 - Add to Webhook model to support user supplied CA certificate verrification of webhook requests
  • 5e88313 typo in change log
  • 8480c0d Merge pull request #3603 from netbox-community/3499-webhooks-ca-filepath
  • c7d9bf8 implemented #3445 - Add support for additional user defined headers to be added to webhook requests
  • 64575fe Merge pull request #3605 from netbox-community/3445-webhooks-additional-headers
  • b8feba1 implemented #3606 - added stale bot config
  • a7380ba Add SCRIPTS_ROOT to configuration.example.py
  • f9b7f18 Merge pull request #3609 from ScanPlusGmbH/missing-variable

📊 Changes

39 files changed (+521 additions, -99 deletions)

View changed files

📝 .github/PULL_REQUEST_TEMPLATE.md (+1 -2)
.github/stale.yaml (+23 -0)
📝 CONTRIBUTING.md (+27 -1)
📝 README.md (+11 -1)
📝 docs/additional-features/custom-scripts.md (+17 -0)
📝 docs/additional-features/export-templates.md (+1 -1)
📝 docs/additional-features/webhooks.md (+8 -4)
📝 docs/administration/netbox-shell.md (+4 -4)
📝 docs/administration/replicating-netbox.md (+5 -0)
📝 docs/configuration/optional-settings.md (+2 -2)
📝 docs/configuration/required-settings.md (+4 -2)
📝 docs/development/style-guide.md (+1 -1)
📝 docs/installation/2-netbox.md (+1 -0)
📝 docs/installation/3-http-daemon.md (+3 -1)
📝 docs/release-notes/version-2.6.md (+24 -0)
📝 netbox/dcim/constants.py (+2 -0)
📝 netbox/dcim/migrations/0075_cable_devices.py (+5 -2)
📝 netbox/dcim/models.py (+11 -0)
📝 netbox/dcim/views.py (+6 -2)
📝 netbox/extras/admin.py (+27 -4)

...and 19 more files

📄 Description

Enhancements

  • #3445 - Add support for additional user defined headers to be added to webhook requests
  • #3499 - Add ca_file_path to Webhook model to support user supplied CA certificate verification of webhook requests
  • #3594 - Add ChoiceVar for custom scripts
  • #3619 - Add 400GE OSFP interface type
  • #3659 - Add filtering for objects in admin UI

Bug Fixes

  • #3309 - Rewrite change logging middleware to resolve sporadic testing failures
  • #3340 - Add missing options to connect front ports to console ports
  • #3357 - Enable filter sites/devices/VMs by null region
  • #3460 - Extend upgrade script to validate Python dependencies
  • #3596 - Prevent server error when reassigning a device to a new device bay
  • #3629 - Use get_lldp_neighors_detail to validation LLDP neighbors
  • #3635 - Add missing cache support for the circuits app
  • #3636 - Add missing rack_group field to PowerFeed CSV export
  • #3652 - Limit next/previous rack by assigned rack group

🔄 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/3661 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 11/1/2019 **Status:** ✅ Merged **Merged:** 11/1/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`b25faec`](https://github.com/netbox-community/netbox/commit/b25faec1593a35b84034fe98f98e28ef3ee1adda) Post-release version bump - [`4cc2972`](https://github.com/netbox-community/netbox/commit/4cc29729f98afe2f4271b2ee1c0ff34c1c1e8f60) Update pillow version to 6.2.0 - [`09d7d38`](https://github.com/netbox-community/netbox/commit/09d7d38b0430ca6252efb63fd57aa6adc711e475) implemented #3499 - Add to Webhook model to support user supplied CA certificate verrification of webhook requests - [`5e88313`](https://github.com/netbox-community/netbox/commit/5e88313276fabf379fca637978338cd8ff438ba0) typo in change log - [`8480c0d`](https://github.com/netbox-community/netbox/commit/8480c0da5335c1bf726e38431fecb479bf602595) Merge pull request #3603 from netbox-community/3499-webhooks-ca-filepath - [`c7d9bf8`](https://github.com/netbox-community/netbox/commit/c7d9bf839ee6cf977525bc3378b21b0544431773) implemented #3445 - Add support for additional user defined headers to be added to webhook requests - [`64575fe`](https://github.com/netbox-community/netbox/commit/64575fec42fe64885e39b79d59d8c92a592357c2) Merge pull request #3605 from netbox-community/3445-webhooks-additional-headers - [`b8feba1`](https://github.com/netbox-community/netbox/commit/b8feba107065585f11d0da2adcb8911e541fec03) implemented #3606 - added stale bot config - [`a7380ba`](https://github.com/netbox-community/netbox/commit/a7380ba353bd6587713e113e21044b109bfb1db0) Add SCRIPTS_ROOT to configuration.example.py - [`f9b7f18`](https://github.com/netbox-community/netbox/commit/f9b7f18be6e047519da210c10572a41a13432e11) Merge pull request #3609 from ScanPlusGmbH/missing-variable ### 📊 Changes **39 files changed** (+521 additions, -99 deletions) <details> <summary>View changed files</summary> 📝 `.github/PULL_REQUEST_TEMPLATE.md` (+1 -2) ➕ `.github/stale.yaml` (+23 -0) 📝 `CONTRIBUTING.md` (+27 -1) 📝 `README.md` (+11 -1) 📝 `docs/additional-features/custom-scripts.md` (+17 -0) 📝 `docs/additional-features/export-templates.md` (+1 -1) 📝 `docs/additional-features/webhooks.md` (+8 -4) 📝 `docs/administration/netbox-shell.md` (+4 -4) 📝 `docs/administration/replicating-netbox.md` (+5 -0) 📝 `docs/configuration/optional-settings.md` (+2 -2) 📝 `docs/configuration/required-settings.md` (+4 -2) 📝 `docs/development/style-guide.md` (+1 -1) 📝 `docs/installation/2-netbox.md` (+1 -0) 📝 `docs/installation/3-http-daemon.md` (+3 -1) 📝 `docs/release-notes/version-2.6.md` (+24 -0) 📝 `netbox/dcim/constants.py` (+2 -0) 📝 `netbox/dcim/migrations/0075_cable_devices.py` (+5 -2) 📝 `netbox/dcim/models.py` (+11 -0) 📝 `netbox/dcim/views.py` (+6 -2) 📝 `netbox/extras/admin.py` (+27 -4) _...and 19 more files_ </details> ### 📄 Description ## Enhancements * [#3445](https://github.com/netbox-community/netbox/issues/3445) - Add support for additional user defined headers to be added to webhook requests * [#3499](https://github.com/netbox-community/netbox/issues/3499) - Add `ca_file_path` to Webhook model to support user supplied CA certificate verification of webhook requests * [#3594](https://github.com/netbox-community/netbox/issues/3594) - Add ChoiceVar for custom scripts * [#3619](https://github.com/netbox-community/netbox/issues/3619) - Add 400GE OSFP interface type * [#3659](https://github.com/netbox-community/netbox/issues/3659) - Add filtering for objects in admin UI ## Bug Fixes * [#3309](https://github.com/netbox-community/netbox/issues/3309) - Rewrite change logging middleware to resolve sporadic testing failures * [#3340](https://github.com/netbox-community/netbox/issues/3340) - Add missing options to connect front ports to console ports * [#3357](https://github.com/netbox-community/netbox/issues/3357) - Enable filter sites/devices/VMs by null region * [#3460](https://github.com/netbox-community/netbox/issues/3460) - Extend upgrade script to validate Python dependencies * [#3596](https://github.com/netbox-community/netbox/issues/3596) - Prevent server error when reassigning a device to a new device bay * [#3629](https://github.com/netbox-community/netbox/issues/3629) - Use `get_lldp_neighors_detail` to validation LLDP neighbors * [#3635](https://github.com/netbox-community/netbox/issues/3635) - Add missing cache support for the circuits app * [#3636](https://github.com/netbox-community/netbox/issues/3636) - Add missing `rack_group` field to PowerFeed CSV export * [#3652](https://github.com/netbox-community/netbox/issues/3652) - Limit next/previous rack by assigned rack group --- <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:37 +01:00
adam closed this issue 2025-12-29 22:22:37 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12608