[PR #3295] [MERGED] Release v2.6.1 #12538

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • e89343e dcim: filter group by site in rack filter (fixes #3229)
  • 86d5b48 Post-release version bump
  • 94ca3ab Fixes Cacheops with a password protected redis
  • c067549 Fixes #3275: Fix error when adding power outlets to a device type
  • bd9ef99 Merge pull request #3284 from cimnine/fix_pwd_protected_redis_cache
  • 5a6c928 Fixes #3279: Reset the PostgreSQL sequence for Tag and TaggedItem IDs
  • 70ef6a6 Fixes #3290: Fix server error when viewing cascaded PDUs
  • 653770e Fixes #3292: Ignore empty URL query parameters
  • 251ba08 Fixes #3283: Fix rack group assignment on PowerFeed CSV import
  • 5de242f Closes #3281: Hide custom links which render as empty text

📊 Changes

13 files changed (+178 additions, -86 deletions)

View changed files

📝 CHANGELOG.md (+20 -0)
📝 netbox/dcim/filters.py (+7 -0)
📝 netbox/dcim/forms.py (+32 -14)
📝 netbox/dcim/models.py (+63 -49)
📝 netbox/dcim/tables.py (+1 -1)
📝 netbox/extras/admin.py (+2 -1)
netbox/extras/migrations/0023_fix_tag_sequences.py (+14 -0)
📝 netbox/extras/templatetags/custom_links.py (+25 -16)
📝 netbox/netbox/settings.py (+2 -2)
📝 netbox/templates/dcim/device.html (+1 -1)
📝 netbox/templates/dcim/inc/consoleport.html (+3 -0)
📝 netbox/templates/dcim/inc/powerport.html (+3 -0)
📝 netbox/utilities/filters.py (+5 -2)

📄 Description

Enhancements

  • #3154 - Add virtual_chassis_member device filter
  • #3277 - Add cable trace buttons for console and power ports
  • #3281 - Hide custom links which render as empty text

Bug Fixes

  • #3229 - Limit rack group selection by parent site on racks list
  • #3269 - Raise validation error when specifying non-existent cable terminations
  • #3275 - Fix error when adding power outlets to a device type
  • #3279 - Reset the PostgreSQL sequence for Tag and TaggedItem IDs
  • #3283 - Fix rack group assignment on PowerFeed CSV import
  • #3290 - Fix server error when viewing cascaded PDUs
  • #3292 - Ignore empty URL query parameters

🔄 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/3295 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 6/25/2019 **Status:** ✅ Merged **Merged:** 6/25/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`e89343e`](https://github.com/netbox-community/netbox/commit/e89343e10051a6dc84f099efe93eb2543e2bed0b) dcim: filter group by site in rack filter (fixes #3229) - [`86d5b48`](https://github.com/netbox-community/netbox/commit/86d5b48007a514e0c7968c9711fed5ede0a78f6c) Post-release version bump - [`94ca3ab`](https://github.com/netbox-community/netbox/commit/94ca3abefc682c74be26b51404ee9061bea61dd0) Fixes Cacheops with a password protected redis - [`c067549`](https://github.com/netbox-community/netbox/commit/c067549f212a4a7fa4cc54e7ef49a84e1d851627) Fixes #3275: Fix error when adding power outlets to a device type - [`bd9ef99`](https://github.com/netbox-community/netbox/commit/bd9ef9951bbd8a0f33f6954c56139067ea6f5394) Merge pull request #3284 from cimnine/fix_pwd_protected_redis_cache - [`5a6c928`](https://github.com/netbox-community/netbox/commit/5a6c928a7c83bca4b9f8b8d3303a3a2b74c12214) Fixes #3279: Reset the PostgreSQL sequence for Tag and TaggedItem IDs - [`70ef6a6`](https://github.com/netbox-community/netbox/commit/70ef6a69ee0ee74926b524cb57083c3bc7427064) Fixes #3290: Fix server error when viewing cascaded PDUs - [`653770e`](https://github.com/netbox-community/netbox/commit/653770ede90f9eaeabbb2f2b769b2b7bd0cba75a) Fixes #3292: Ignore empty URL query parameters - [`251ba08`](https://github.com/netbox-community/netbox/commit/251ba08e0954bc509161b5181150fbf384d836a9) Fixes #3283: Fix rack group assignment on PowerFeed CSV import - [`5de242f`](https://github.com/netbox-community/netbox/commit/5de242fe5357cb4791eaef6b090f602712a20a61) Closes #3281: Hide custom links which render as empty text ### 📊 Changes **13 files changed** (+178 additions, -86 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+20 -0) 📝 `netbox/dcim/filters.py` (+7 -0) 📝 `netbox/dcim/forms.py` (+32 -14) 📝 `netbox/dcim/models.py` (+63 -49) 📝 `netbox/dcim/tables.py` (+1 -1) 📝 `netbox/extras/admin.py` (+2 -1) ➕ `netbox/extras/migrations/0023_fix_tag_sequences.py` (+14 -0) 📝 `netbox/extras/templatetags/custom_links.py` (+25 -16) 📝 `netbox/netbox/settings.py` (+2 -2) 📝 `netbox/templates/dcim/device.html` (+1 -1) 📝 `netbox/templates/dcim/inc/consoleport.html` (+3 -0) 📝 `netbox/templates/dcim/inc/powerport.html` (+3 -0) 📝 `netbox/utilities/filters.py` (+5 -2) </details> ### 📄 Description ## Enhancements * [#3154](https://github.com/digitalocean/netbox/issues/3154) - Add `virtual_chassis_member` device filter * [#3277](https://github.com/digitalocean/netbox/issues/3277) - Add cable trace buttons for console and power ports * [#3281](https://github.com/digitalocean/netbox/issues/3281) - Hide custom links which render as empty text ## Bug Fixes * [#3229](https://github.com/digitalocean/netbox/issues/3229) - Limit rack group selection by parent site on racks list * [#3269](https://github.com/digitalocean/netbox/issues/3269) - Raise validation error when specifying non-existent cable terminations * [#3275](https://github.com/digitalocean/netbox/issues/3275) - Fix error when adding power outlets to a device type * [#3279](https://github.com/digitalocean/netbox/issues/3279) - Reset the PostgreSQL sequence for Tag and TaggedItem IDs * [#3283](https://github.com/digitalocean/netbox/issues/3283) - Fix rack group assignment on PowerFeed CSV import * [#3290](https://github.com/digitalocean/netbox/issues/3290) - Fix server error when viewing cascaded PDUs * [#3292](https://github.com/digitalocean/netbox/issues/3292) - Ignore empty URL query parameters --- <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:09 +01:00
adam closed this issue 2025-12-29 22:22:09 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12538