[PR #5512] [MERGED] Release v2.10.2 #13035

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/5512
Author: @jeremystretch
Created: 12/21/2020
Status: Merged
Merged: 12/21/2020
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • bd144c9 PRVB
  • 4ce7dfa Fixes #5473: Fix alignment of rack names in elevations list
  • 577c86f Fixes #5478: Fix display of route target description
  • 2ffdc46 Fixes #5123: Add tests for custom field select changelog
  • 52c9e3e Run CI for pull requests
  • 3c887b0 Fixes #5468: Fix unlocking secrets from device/VM view
  • 2fba20a Merge pull request #5481 from cloos/5123-cf-select-changelog
  • 26426c1 Fixes #5484: Fix "tagged" indication in VLAN members list
  • dc6e7cd Django templating language is no longer supported for export templates
  • 7449f36 Merge pull request #5485 from glennmatthews/gfm-doc-fix

📊 Changes

49 files changed (+377 additions, -181 deletions)

View changed files

📝 .github/workflows/ci.yml (+1 -1)
📝 README.md (+3 -3)
📝 docs/additional-features/export-templates.md (+1 -4)
📝 docs/configuration/optional-settings.md (+2 -2)
📝 docs/installation/5-http-server.md (+1 -1)
📝 docs/installation/6-ldap.md (+1 -1)
📝 docs/plugins/development.md (+4 -0)
📝 docs/release-notes/version-2.1.md (+1 -1)
📝 docs/release-notes/version-2.10.md (+24 -0)
📝 docs/release-notes/version-2.2.md (+1 -1)
📝 docs/rest-api/overview.md (+1 -1)
📝 netbox/circuits/api/views.py (+3 -4)
📝 netbox/circuits/views.py (+6 -6)
📝 netbox/dcim/api/views.py (+21 -22)
📝 netbox/dcim/filters.py (+9 -3)
📝 netbox/dcim/forms.py (+21 -2)
📝 netbox/dcim/signals.py (+2 -0)
📝 netbox/dcim/tables/devices.py (+2 -1)
📝 netbox/dcim/tests/test_filters.py (+6 -9)
📝 netbox/dcim/views.py (+18 -18)

...and 29 more files

📄 Description

Enhancements

  • #5489 - Add filters for type and width to racks list
  • #5496 - Add form field to filter rack reservation by user

Bug Fixes

  • #5254 - Require plugin authors to set zip_safe=False
  • #5468 - Fix unlocking secrets from device/VM view
  • #5473 - Fix alignment of rack names in elevations list
  • #5478 - Fix display of route target description
  • #5484 - Fix "tagged" indication in VLAN members list
  • #5486 - Optimize retrieval of config context data for device/VM REST API views
  • #5487 - Support filtering rack type/width with multiple values
  • #5488 - Fix caching error when viewing cable trace after toggling cable status
  • #5498 - Fix filtering rack reservations by username
  • #5499 - Fix filtering of displayed device/VM interfaces by regex
  • #5507 - Fix custom field data assignment via UI for IP addresses, secrets
  • #5510 - Fix filtering by boolean custom fields

🔄 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/5512 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 12/21/2020 **Status:** ✅ Merged **Merged:** 12/21/2020 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`bd144c9`](https://github.com/netbox-community/netbox/commit/bd144c996a03bafd29c2b806f577a7796cd8d585) PRVB - [`4ce7dfa`](https://github.com/netbox-community/netbox/commit/4ce7dfa55edc0ddc1229c22ad837bcb959c4ec60) Fixes #5473: Fix alignment of rack names in elevations list - [`577c86f`](https://github.com/netbox-community/netbox/commit/577c86fb80ca1b2bf35fcf2554b83591a22431a8) Fixes #5478: Fix display of route target description - [`2ffdc46`](https://github.com/netbox-community/netbox/commit/2ffdc46f8105ad67f1cdde802bb81c1531f38403) Fixes #5123: Add tests for custom field select changelog - [`52c9e3e`](https://github.com/netbox-community/netbox/commit/52c9e3ecefbe04f5abf7f4d110cc6b3199b1eaca) Run CI for pull requests - [`3c887b0`](https://github.com/netbox-community/netbox/commit/3c887b0dd90e79e507c5f40514d77ea3b0d99399) Fixes #5468: Fix unlocking secrets from device/VM view - [`2fba20a`](https://github.com/netbox-community/netbox/commit/2fba20acda576ff9d59d1398c129d122c132211c) Merge pull request #5481 from cloos/5123-cf-select-changelog - [`26426c1`](https://github.com/netbox-community/netbox/commit/26426c143143623322ad2a6affb5fd9f5f71ce53) Fixes #5484: Fix "tagged" indication in VLAN members list - [`dc6e7cd`](https://github.com/netbox-community/netbox/commit/dc6e7cd56c241a278a5c8d5854978a4ac5d5a719) Django templating language is no longer supported for export templates - [`7449f36`](https://github.com/netbox-community/netbox/commit/7449f36f22834b4e81768058dedca7963a21bdf4) Merge pull request #5485 from glennmatthews/gfm-doc-fix ### 📊 Changes **49 files changed** (+377 additions, -181 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+1 -1) 📝 `README.md` (+3 -3) 📝 `docs/additional-features/export-templates.md` (+1 -4) 📝 `docs/configuration/optional-settings.md` (+2 -2) 📝 `docs/installation/5-http-server.md` (+1 -1) 📝 `docs/installation/6-ldap.md` (+1 -1) 📝 `docs/plugins/development.md` (+4 -0) 📝 `docs/release-notes/version-2.1.md` (+1 -1) 📝 `docs/release-notes/version-2.10.md` (+24 -0) 📝 `docs/release-notes/version-2.2.md` (+1 -1) 📝 `docs/rest-api/overview.md` (+1 -1) 📝 `netbox/circuits/api/views.py` (+3 -4) 📝 `netbox/circuits/views.py` (+6 -6) 📝 `netbox/dcim/api/views.py` (+21 -22) 📝 `netbox/dcim/filters.py` (+9 -3) 📝 `netbox/dcim/forms.py` (+21 -2) 📝 `netbox/dcim/signals.py` (+2 -0) 📝 `netbox/dcim/tables/devices.py` (+2 -1) 📝 `netbox/dcim/tests/test_filters.py` (+6 -9) 📝 `netbox/dcim/views.py` (+18 -18) _...and 29 more files_ </details> ### 📄 Description ### Enhancements * [#5489](https://github.com/netbox-community/netbox/issues/5489) - Add filters for type and width to racks list * [#5496](https://github.com/netbox-community/netbox/issues/5496) - Add form field to filter rack reservation by user ### Bug Fixes * [#5254](https://github.com/netbox-community/netbox/issues/5254) - Require plugin authors to set `zip_safe=False` * [#5468](https://github.com/netbox-community/netbox/issues/5468) - Fix unlocking secrets from device/VM view * [#5473](https://github.com/netbox-community/netbox/issues/5473) - Fix alignment of rack names in elevations list * [#5478](https://github.com/netbox-community/netbox/issues/5478) - Fix display of route target description * [#5484](https://github.com/netbox-community/netbox/issues/5484) - Fix "tagged" indication in VLAN members list * [#5486](https://github.com/netbox-community/netbox/issues/5486) - Optimize retrieval of config context data for device/VM REST API views * [#5487](https://github.com/netbox-community/netbox/issues/5487) - Support filtering rack type/width with multiple values * [#5488](https://github.com/netbox-community/netbox/issues/5488) - Fix caching error when viewing cable trace after toggling cable status * [#5498](https://github.com/netbox-community/netbox/issues/5498) - Fix filtering rack reservations by username * [#5499](https://github.com/netbox-community/netbox/issues/5499) - Fix filtering of displayed device/VM interfaces by regex * [#5507](https://github.com/netbox-community/netbox/issues/5507) - Fix custom field data assignment via UI for IP addresses, secrets * [#5510](https://github.com/netbox-community/netbox/issues/5510) - Fix filtering by boolean custom fields --- <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:25:03 +01:00
adam closed this issue 2025-12-29 22:25:04 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13035