[PR #6055] [MERGED] Release v2.10.7 #13093

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6055
Author: @jeremystretch
Created: 3/25/2021
Status: Merged
Merged: 3/25/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

38 files changed (+224 additions, -139 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/documentation_change.yaml (+10 -8)
📝 CONTRIBUTING.md (+1 -1)
📝 README.md (+1 -1)
📝 docs/additional-features/caching.md (+1 -1)
📝 docs/additional-features/napalm.md (+1 -1)
📝 docs/additional-features/reports.md (+1 -1)
📝 docs/administration/replicating-netbox.md (+6 -3)
📝 docs/configuration/optional-settings.md (+9 -1)
📝 docs/development/getting-started.md (+2 -2)
📝 docs/development/index.md (+1 -1)
📝 docs/installation/3-netbox.md (+4 -4)
📝 docs/installation/6-ldap.md (+1 -1)
📝 docs/installation/upgrading.md (+1 -1)
📝 docs/release-notes/version-2.10.md (+26 -0)
📝 docs/rest-api/authentication.md (+1 -1)
📝 docs/rest-api/overview.md (+4 -4)
📝 docs/rest-api/working-with-secrets.md (+1 -1)
📝 netbox/dcim/api/serializers.py (+3 -3)
📝 netbox/dcim/filters.py (+10 -10)
📝 netbox/dcim/forms.py (+21 -5)

...and 18 more files

📄 Description

Enhancements

  • #5641 - Allow filtering device components by label
  • #5723 - Allow customization of the geographic mapping service via MAPS_URL config parameter
  • #5736 - Allow changing site assignment when bulk editing devices
  • #5953 - Support Markdown rendering for custom script descriptions
  • #6040 - Add UI search fields for asset tag for devices and racks

Bug Fixes

  • #5595 - Restore ability to delete an uploaded device type image
  • #5650 - Denote when the total length of a cable trace may exceed the indicated value
  • #5962 - Ensure consistent display of change log action labels
  • #5966 - Skip Markdown reference link when tabbing through form fields
  • #5977 - Correct validation of RELEASE_CHECK_URL config parameter
  • #6006 - Fix VLAN group/site association for bulk prefix import
  • #6010 - Eliminate duplicate virtual chassis search results
  • #6012 - Pre-populate attributes when creating an available child prefix via the UI
  • #6023 - Fix display of bottom banner with uBlock Origin enabled

🔄 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/6055 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/25/2021 **Status:** ✅ Merged **Merged:** 3/25/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`02e8979`](https://github.com/netbox-community/netbox/commit/02e8979178783d562cc8a47cd6df097403b5fb6b) Changes to template, view and CablePath class to - [`9990fd2`](https://github.com/netbox-community/netbox/commit/9990fd25d47cc5e2313d9d5c78a07ee4b1f661c9) PRVB - [`04964cc`](https://github.com/netbox-community/netbox/commit/04964cc52b90a567a2b8a26e966d24bdc9ca4e07) Fixes #5595: Restore ability to delete an uploaded device type image - [`cb9478e`](https://github.com/netbox-community/netbox/commit/cb9478e0eaa5853e73718ef6bc52c1f1171678e5) Closes #5950: Use TimeZoneSerializerField from django-timezone-field - [`132b1ff`](https://github.com/netbox-community/netbox/commit/132b1ff47969341d1b243223582c33f10bdd6ecf) Fixes #5962: Ensure consistent display of change log action labels - [`d58291d`](https://github.com/netbox-community/netbox/commit/d58291d119cc65b248f7391a2426c95e88ce9d62) Closes #5953: Adds Markdown rendering of Custom Scripts' descriptions - [`720b880`](https://github.com/netbox-community/netbox/commit/720b88048d2ac32c7db8befcbfa0eaef82b4f358) Skip the cheatsheet link when tabbing - [`ad43373`](https://github.com/netbox-community/netbox/commit/ad43373f5bc68984055c7d37750b488e2d8f1e98) Merge pull request #5967 from abrahamvegh/tabindex - [`c061f70`](https://github.com/netbox-community/netbox/commit/c061f7021ebffdef992bac90f5f55fcd56c9797f) Merge pull request #5964 from rodvand/develop - [`a94e5c7`](https://github.com/netbox-community/netbox/commit/a94e5c7403a0aa07d60536a487cea2c868c9fa41) Changelog for #5953 and #5966 ### 📊 Changes **38 files changed** (+224 additions, -139 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/documentation_change.yaml` (+10 -8) 📝 `CONTRIBUTING.md` (+1 -1) 📝 `README.md` (+1 -1) 📝 `docs/additional-features/caching.md` (+1 -1) 📝 `docs/additional-features/napalm.md` (+1 -1) 📝 `docs/additional-features/reports.md` (+1 -1) 📝 `docs/administration/replicating-netbox.md` (+6 -3) 📝 `docs/configuration/optional-settings.md` (+9 -1) 📝 `docs/development/getting-started.md` (+2 -2) 📝 `docs/development/index.md` (+1 -1) 📝 `docs/installation/3-netbox.md` (+4 -4) 📝 `docs/installation/6-ldap.md` (+1 -1) 📝 `docs/installation/upgrading.md` (+1 -1) 📝 `docs/release-notes/version-2.10.md` (+26 -0) 📝 `docs/rest-api/authentication.md` (+1 -1) 📝 `docs/rest-api/overview.md` (+4 -4) 📝 `docs/rest-api/working-with-secrets.md` (+1 -1) 📝 `netbox/dcim/api/serializers.py` (+3 -3) 📝 `netbox/dcim/filters.py` (+10 -10) 📝 `netbox/dcim/forms.py` (+21 -5) _...and 18 more files_ </details> ### 📄 Description ### Enhancements * [#5641](https://github.com/netbox-community/netbox/issues/5641) - Allow filtering device components by label * [#5723](https://github.com/netbox-community/netbox/issues/5723) - Allow customization of the geographic mapping service via `MAPS_URL` config parameter * [#5736](https://github.com/netbox-community/netbox/issues/5736) - Allow changing site assignment when bulk editing devices * [#5953](https://github.com/netbox-community/netbox/issues/5953) - Support Markdown rendering for custom script descriptions * [#6040](https://github.com/netbox-community/netbox/issues/6040) - Add UI search fields for asset tag for devices and racks ### Bug Fixes * [#5595](https://github.com/netbox-community/netbox/issues/5595) - Restore ability to delete an uploaded device type image * [#5650](https://github.com/netbox-community/netbox/issues/5650) - Denote when the total length of a cable trace may exceed the indicated value * [#5962](https://github.com/netbox-community/netbox/issues/5962) - Ensure consistent display of change log action labels * [#5966](https://github.com/netbox-community/netbox/issues/5966) - Skip Markdown reference link when tabbing through form fields * [#5977](https://github.com/netbox-community/netbox/issues/5977) - Correct validation of `RELEASE_CHECK_URL` config parameter * [#6006](https://github.com/netbox-community/netbox/issues/6006) - Fix VLAN group/site association for bulk prefix import * [#6010](https://github.com/netbox-community/netbox/issues/6010) - Eliminate duplicate virtual chassis search results * [#6012](https://github.com/netbox-community/netbox/issues/6012) - Pre-populate attributes when creating an available child prefix via the UI * [#6023](https://github.com/netbox-community/netbox/issues/6023) - Fix display of bottom banner with uBlock Origin enabled --- <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:22 +01:00
adam closed this issue 2025-12-29 22:25:22 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13093