[PR #3828] [MERGED] Release v2.6.10 #12654

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3828
Author: @jeremystretch
Created: 1/2/2020
Status: Merged
Merged: 1/2/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

37 files changed (+2160 additions, -137 deletions)

View changed files

📝 CONTRIBUTING.md (+30 -29)
📝 README.md (+1 -1)
📝 docs/additional-features/custom-scripts.md (+12 -0)
📝 docs/index.md (+1 -1)
📝 docs/installation/2-netbox.md (+1 -1)
📝 docs/installation/4-ldap.md (+4 -0)
docs/netbox_logo.svg (+21 -0)
📝 docs/release-notes/version-2.6.md (+30 -0)
📝 netbox/circuits/forms.py (+2 -3)
📝 netbox/dcim/filters.py (+27 -18)
📝 netbox/dcim/forms.py (+78 -29)
📝 netbox/dcim/models.py (+1 -1)
📝 netbox/extras/admin.py (+34 -1)
📝 netbox/extras/api/customfields.py (+3 -0)
📝 netbox/extras/forms.py (+9 -11)
📝 netbox/extras/models.py (+9 -4)
📝 netbox/extras/scripts.py (+8 -1)
📝 netbox/extras/templatetags/custom_links.py (+23 -15)
📝 netbox/extras/tests/test_api.py (+69 -1)
📝 netbox/extras/views.py (+1 -1)

...and 17 more files

📄 Description

Enhancements

  • #2233 - Add ability to move inventory items between devices
  • #2892 - Extend admin UI to allow deleting old report results
  • #3062 - Add assigned_to_interface filter for IP addresses
  • #3461 - Fail gracefully on custom link rendering exception
  • #3705 - Provide request context when executing custom scripts
  • #3762 - Add date/time picker widgets
  • #3788 - Enable partial search for inventory items
  • #3812 - Optimize size of pages containing a dynamic selection field
  • #3827 - Allow filtering console/power/interface connections by device ID

Bug Fixes

  • #3106 - Restrict queryset of chained fields when form validation fails
  • #3695 - Include A/Z termination sites for circuits in global search
  • #3712 - Scrolling to target (hash) did not account for the header size
  • #3780 - Fix AttributeError exception in API docs
  • #3809 - Filter platform by manufacturer when editing devices
  • #3811 - Fix filtering of racks by group on device list
  • #3822 - Fix exception when editing a device bay (regression from #3596)

🔄 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/3828 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/2/2020 **Status:** ✅ Merged **Merged:** 1/2/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`aff4ad0`](https://github.com/netbox-community/netbox/commit/aff4ad0f9774856eff8a6fad906366899cb88209) Post-release version bump - [`55b503d`](https://github.com/netbox-community/netbox/commit/55b503da5bdf2a95e903fb657ade195ff89cae91) Fixes #3780: Fix AttributeError exception in API docs - [`0174c97`](https://github.com/netbox-community/netbox/commit/0174c9747b563f95bf0708a0f9a49aee2b13cc5d) Implement request passing as a property of Script - [`d315079`](https://github.com/netbox-community/netbox/commit/d31507985b4549cad8cbef983583b33e9f4e9654) Closes #3663: add Filter Tests - [`407a60d`](https://github.com/netbox-community/netbox/commit/407a60dcc47528e2d992de613b182b4b9faeebf7) Closes #3663: fix PEP errors - [`84a2b72`](https://github.com/netbox-community/netbox/commit/84a2b726f5467f38db37ca9025ce0bbb5969a2ce) Merge pull request #3775 from steffann/3705-make-current-user-available-in-custom-scripts - [`adeee0b`](https://github.com/netbox-community/netbox/commit/adeee0bf5c3ffedf24faab5e5a098884e2c74572) Docs & changelog for #3705 - [`5fedcd1`](https://github.com/netbox-community/netbox/commit/5fedcd1f4e1d7d3a775af06f66a06a1addb5b709) Fixes #3789: Typo - [`fbb93c7`](https://github.com/netbox-community/netbox/commit/fbb93c72d0bd3ef49648fa1bc63585763ed46b36) Closes #3663: improve tests - [`14401c3`](https://github.com/netbox-community/netbox/commit/14401c30b62ec869cefb4e3b932eaef1c62f6351) Update contributing guide to reference the issue intake policy ### 📊 Changes **37 files changed** (+2160 additions, -137 deletions) <details> <summary>View changed files</summary> 📝 `CONTRIBUTING.md` (+30 -29) 📝 `README.md` (+1 -1) 📝 `docs/additional-features/custom-scripts.md` (+12 -0) 📝 `docs/index.md` (+1 -1) 📝 `docs/installation/2-netbox.md` (+1 -1) 📝 `docs/installation/4-ldap.md` (+4 -0) ➕ `docs/netbox_logo.svg` (+21 -0) 📝 `docs/release-notes/version-2.6.md` (+30 -0) 📝 `netbox/circuits/forms.py` (+2 -3) 📝 `netbox/dcim/filters.py` (+27 -18) 📝 `netbox/dcim/forms.py` (+78 -29) 📝 `netbox/dcim/models.py` (+1 -1) 📝 `netbox/extras/admin.py` (+34 -1) 📝 `netbox/extras/api/customfields.py` (+3 -0) 📝 `netbox/extras/forms.py` (+9 -11) 📝 `netbox/extras/models.py` (+9 -4) 📝 `netbox/extras/scripts.py` (+8 -1) 📝 `netbox/extras/templatetags/custom_links.py` (+23 -15) 📝 `netbox/extras/tests/test_api.py` (+69 -1) 📝 `netbox/extras/views.py` (+1 -1) _...and 17 more files_ </details> ### 📄 Description ## Enhancements * [#2233](https://github.com/netbox-community/netbox/issues/2233) - Add ability to move inventory items between devices * [#2892](https://github.com/netbox-community/netbox/issues/2892) - Extend admin UI to allow deleting old report results * [#3062](https://github.com/netbox-community/netbox/issues/3062) - Add `assigned_to_interface` filter for IP addresses * [#3461](https://github.com/netbox-community/netbox/issues/3461) - Fail gracefully on custom link rendering exception * [#3705](https://github.com/netbox-community/netbox/issues/3705) - Provide request context when executing custom scripts * [#3762](https://github.com/netbox-community/netbox/issues/3762) - Add date/time picker widgets * [#3788](https://github.com/netbox-community/netbox/issues/3788) - Enable partial search for inventory items * [#3812](https://github.com/netbox-community/netbox/issues/3812) - Optimize size of pages containing a dynamic selection field * [#3827](https://github.com/netbox-community/netbox/issues/3827) - Allow filtering console/power/interface connections by device ID ## Bug Fixes * [#3106](https://github.com/netbox-community/netbox/issues/3106) - Restrict queryset of chained fields when form validation fails * [#3695](https://github.com/netbox-community/netbox/issues/3695) - Include A/Z termination sites for circuits in global search * [#3712](https://github.com/netbox-community/netbox/issues/3712) - Scrolling to target (hash) did not account for the header size * [#3780](https://github.com/netbox-community/netbox/issues/3780) - Fix AttributeError exception in API docs * [#3809](https://github.com/netbox-community/netbox/issues/3809) - Filter platform by manufacturer when editing devices * [#3811](https://github.com/netbox-community/netbox/issues/3811) - Fix filtering of racks by group on device list * [#3822](https://github.com/netbox-community/netbox/issues/3822) - Fix exception when editing a device bay (regression from #3596) --- <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:52 +01:00
adam closed this issue 2025-12-29 22:22:52 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12654