[PR #6172] [MERGED] Release v2.10.10 #13103

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6172
Author: @jeremystretch
Created: 4/15/2021
Status: Merged
Merged: 4/15/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 99f4b2c PRVB
  • d43d5a6 Change stale issues management to GitHub Actions
  • b197340 Removed the "Additional information" blocks from issue templates (no longer needed)
  • 3d8a3a2 Fix link
  • 9cbe3ff Enable close-stale-issue action
  • d54bf5f Fixes #6144: Fix MAC address field display in VM interfaces search form
  • c249cd4 Fixes #6152: Fix custom field filtering for cables, virtual chassis
  • 1fba4b7 Fixes #5419: Update parent device/VM when deleting a primary IP
  • cc43338 Fixes #6056: Optimize change log cleanup
  • 7c48e36 Closes #6157: Support Markdown rendering for report logs

📊 Changes

19 files changed (+234 additions, -83 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+0 -5)
📝 .github/ISSUE_TEMPLATE/documentation_change.yaml (+0 -5)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+0 -5)
📝 .github/ISSUE_TEMPLATE/housekeeping.yaml (+0 -5)
.github/stale.yml (+0 -30)
.github/workflows/stale.yml (+34 -0)
📝 docs/release-notes/version-2.10.md (+22 -0)
📝 docs/rest-api/overview.md (+1 -1)
📝 netbox/dcim/choices.py (+21 -0)
📝 netbox/dcim/filters.py (+34 -3)
📝 netbox/dcim/tests/test_filters.py (+16 -24)
📝 netbox/extras/models/customfields.py (+18 -0)
📝 netbox/extras/signals.py (+12 -2)
📝 netbox/extras/tests/test_customfields.py (+27 -0)
📝 netbox/ipam/apps.py (+3 -0)
netbox/ipam/signals.py (+21 -0)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/templates/extras/report_result.html (+3 -1)
📝 netbox/virtualization/forms.py (+21 -1)

📄 Description

Enhancements

  • #5796 - Add DC terminal power port, outlet types
  • #5980 - Add Saf-D-Grid power port, outlet types
  • #6157 - Support Markdown rendering for report logs
  • #6160 - Add F connector port type
  • #6168 - Add SFP56 50GE interface type

Bug Fixes

  • #5419 - Update parent device/VM when deleting a primary IP
  • #5643 - Fix VLAN assignment when editing VM interfaces in bulk
  • #5652 - Update object data when renaming a custom field
  • #6056 - Optimize change log cleanup
  • #6144 - Fix MAC address field display in VM interfaces search form
  • #6152 - Fix custom field filtering for cables, virtual chassis
  • #6162 - Fix choice field filters (multiple models)

🔄 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/6172 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/15/2021 **Status:** ✅ Merged **Merged:** 4/15/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`99f4b2c`](https://github.com/netbox-community/netbox/commit/99f4b2cf95861b22ce5a690bb20549a6e4f0d232) PRVB - [`d43d5a6`](https://github.com/netbox-community/netbox/commit/d43d5a6cb6035baaef3141f5a810dea1277cdfbd) Change stale issues management to GitHub Actions - [`b197340`](https://github.com/netbox-community/netbox/commit/b19734004a49b7a0c8653f6d0f134a450ab6f33a) Removed the "Additional information" blocks from issue templates (no longer needed) - [`3d8a3a2`](https://github.com/netbox-community/netbox/commit/3d8a3a2204ab7e413933f17f6dfb75838d2279ed) Fix link - [`9cbe3ff`](https://github.com/netbox-community/netbox/commit/9cbe3ff5517ee904cb97716d29c4f1686aabeee2) Enable close-stale-issue action - [`d54bf5f`](https://github.com/netbox-community/netbox/commit/d54bf5f75eef3b93ab0641a527576eed0a8eb7de) Fixes #6144: Fix MAC address field display in VM interfaces search form - [`c249cd4`](https://github.com/netbox-community/netbox/commit/c249cd4ffd07d0d05f40f9bb1421ec76c2f5cae6) Fixes #6152: Fix custom field filtering for cables, virtual chassis - [`1fba4b7`](https://github.com/netbox-community/netbox/commit/1fba4b7e32f18e643f6483068062c71a2019c807) Fixes #5419: Update parent device/VM when deleting a primary IP - [`cc43338`](https://github.com/netbox-community/netbox/commit/cc433388f5811823913bcf0e310d0af3f05a710d) Fixes #6056: Optimize change log cleanup - [`7c48e36`](https://github.com/netbox-community/netbox/commit/7c48e3632db052924c80213fc07faa8d3059fe7c) Closes #6157: Support Markdown rendering for report logs ### 📊 Changes **19 files changed** (+234 additions, -83 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+0 -5) 📝 `.github/ISSUE_TEMPLATE/documentation_change.yaml` (+0 -5) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+0 -5) 📝 `.github/ISSUE_TEMPLATE/housekeeping.yaml` (+0 -5) ➖ `.github/stale.yml` (+0 -30) ➕ `.github/workflows/stale.yml` (+34 -0) 📝 `docs/release-notes/version-2.10.md` (+22 -0) 📝 `docs/rest-api/overview.md` (+1 -1) 📝 `netbox/dcim/choices.py` (+21 -0) 📝 `netbox/dcim/filters.py` (+34 -3) 📝 `netbox/dcim/tests/test_filters.py` (+16 -24) 📝 `netbox/extras/models/customfields.py` (+18 -0) 📝 `netbox/extras/signals.py` (+12 -2) 📝 `netbox/extras/tests/test_customfields.py` (+27 -0) 📝 `netbox/ipam/apps.py` (+3 -0) ➕ `netbox/ipam/signals.py` (+21 -0) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/templates/extras/report_result.html` (+3 -1) 📝 `netbox/virtualization/forms.py` (+21 -1) </details> ### 📄 Description ### Enhancements * [#5796](https://github.com/netbox-community/netbox/issues/5796) - Add DC terminal power port, outlet types * [#5980](https://github.com/netbox-community/netbox/issues/5980) - Add Saf-D-Grid power port, outlet types * [#6157](https://github.com/netbox-community/netbox/issues/6157) - Support Markdown rendering for report logs * [#6160](https://github.com/netbox-community/netbox/issues/6160) - Add F connector port type * [#6168](https://github.com/netbox-community/netbox/issues/6168) - Add SFP56 50GE interface type ### Bug Fixes * [#5419](https://github.com/netbox-community/netbox/issues/5419) - Update parent device/VM when deleting a primary IP * [#5643](https://github.com/netbox-community/netbox/issues/5643) - Fix VLAN assignment when editing VM interfaces in bulk * [#5652](https://github.com/netbox-community/netbox/issues/5652) - Update object data when renaming a custom field * [#6056](https://github.com/netbox-community/netbox/issues/6056) - Optimize change log cleanup * [#6144](https://github.com/netbox-community/netbox/issues/6144) - Fix MAC address field display in VM interfaces search form * [#6152](https://github.com/netbox-community/netbox/issues/6152) - Fix custom field filtering for cables, virtual chassis * [#6162](https://github.com/netbox-community/netbox/issues/6162) - Fix choice field filters (multiple models) --- <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:25 +01:00
adam closed this issue 2025-12-29 22:25:26 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13103