[PR #6700] [MERGED] Release v2.11.8 #13155

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6700
Author: @jeremystretch
Created: 7/6/2021
Status: Merged
Merged: 7/6/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

50 files changed (+325 additions, -185 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 docs/release-notes/version-2.11.md (+24 -0)
📝 docs/rest-api/filtering.md (+19 -14)
📝 netbox/dcim/forms.py (+14 -4)
📝 netbox/dcim/models/device_component_templates.py (+16 -11)
📝 netbox/dcim/tests/test_views.py (+6 -4)
📝 netbox/dcim/views.py (+2 -0)
📝 netbox/extras/apps.py (+1 -0)
netbox/extras/lookups.py (+17 -0)
📝 netbox/extras/models/customfields.py (+4 -2)
📝 netbox/extras/models/models.py (+2 -3)
📝 netbox/ipam/tables.py (+1 -1)
📝 netbox/ipam/utils.py (+21 -5)
📝 netbox/ipam/views.py (+1 -2)
📝 netbox/netbox/constants.py (+10 -4)
📝 netbox/netbox/filtersets.py (+5 -8)
📝 netbox/netbox/forms.py (+3 -2)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/netbox/views/generic.py (+20 -18)

...and 30 more files

📄 Description

Enhancements

  • #5503 - Annotate short date & time fields with their longer form
  • #6138 - Add an empty filter modifier for character fields
  • #6200 - Add rack reservations to global search
  • #6368 - Enable virtual chassis assignment during bulk import of devices
  • #6620 - Show assigned VMs count under device role view
  • #6666 - Show management-only status under interface detail view
  • #6667 - Display VM memory as GB/TB as appropriate

Bug Fixes

  • #6626 - Fix site field on VM search form; add site group
  • #6637 - Fix group assignment in "available VLANs" link under VLAN group view
  • #6640 - Disallow numeric values in custom text fields
  • #6652 - Fix exception when adding components in bulk to multiple devices
  • #6676 - Fix device/VM counts per cluster under cluster type/group views
  • #6680 - Allow setting custom field values for VM interfaces on initial creation
  • #6695 - Fix exception when importing device type with invalid front port definition

🔄 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/6700 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/6/2021 **Status:** ✅ Merged **Merged:** 7/6/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`697161b`](https://github.com/netbox-community/netbox/commit/697161beb1867260fa3e63dc4b3e8cdbb5d273b7) PRVB - [`fb379b6`](https://github.com/netbox-community/netbox/commit/fb379b63ec19345b1707ebd0f5638afe5c08f50c) Fixes #6626: Fix site field on VM search form; add site group - [`607039f`](https://github.com/netbox-community/netbox/commit/607039f043f0a43437db05aae18bae6f1ef49f85) Cleanup for #5139 - [`ebb2918`](https://github.com/netbox-community/netbox/commit/ebb2918a88894695cf113d2ce45163a7102d15c6) Fixes #6652: Fix exception when adding components in bulk to multiple devices - [`efa0fc2`](https://github.com/netbox-community/netbox/commit/efa0fc2b0996cea4c6b823f76aec52b9b339ef8e) Fixes #6640: Disallow numeric values in custom text fields - [`a8af24d`](https://github.com/netbox-community/netbox/commit/a8af24d7ca5af79987a8b2fb68a7e389638e7461) Fixes #6637: Fix group assignment in 'available VLANs' link under VLAN group view - [`4292d88`](https://github.com/netbox-community/netbox/commit/4292d88a9230789ef0c5af627e7245d2d3dd4bda) Closes #6620: Show assigned VMs count under device role view - [`98ff00b`](https://github.com/netbox-community/netbox/commit/98ff00bc62ea2ee1cdcaa7273cf961e9425c724c) Fixes #6676: Fix device/VM counts per cluster under cluster type/group views - [`18934bc`](https://github.com/netbox-community/netbox/commit/18934bcc691fb5e1df28c20a26c5f83fd604dcc9) Closes #6666: Show management-only status under interface detail view - [`18a9e39`](https://github.com/netbox-community/netbox/commit/18a9e39be60c29e8d19be275b86c4f9b189c1207) Closes #6667: Display VM memory as GB/TB as appropriate ### 📊 Changes **50 files changed** (+325 additions, -185 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `docs/release-notes/version-2.11.md` (+24 -0) 📝 `docs/rest-api/filtering.md` (+19 -14) 📝 `netbox/dcim/forms.py` (+14 -4) 📝 `netbox/dcim/models/device_component_templates.py` (+16 -11) 📝 `netbox/dcim/tests/test_views.py` (+6 -4) 📝 `netbox/dcim/views.py` (+2 -0) 📝 `netbox/extras/apps.py` (+1 -0) ➕ `netbox/extras/lookups.py` (+17 -0) 📝 `netbox/extras/models/customfields.py` (+4 -2) 📝 `netbox/extras/models/models.py` (+2 -3) 📝 `netbox/ipam/tables.py` (+1 -1) 📝 `netbox/ipam/utils.py` (+21 -5) 📝 `netbox/ipam/views.py` (+1 -2) 📝 `netbox/netbox/constants.py` (+10 -4) 📝 `netbox/netbox/filtersets.py` (+5 -8) 📝 `netbox/netbox/forms.py` (+3 -2) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/netbox/views/generic.py` (+20 -18) _...and 30 more files_ </details> ### 📄 Description ### Enhancements * [#5503](https://github.com/netbox-community/netbox/issues/5503) - Annotate short date & time fields with their longer form * [#6138](https://github.com/netbox-community/netbox/issues/6138) - Add an `empty` filter modifier for character fields * [#6200](https://github.com/netbox-community/netbox/issues/6200) - Add rack reservations to global search * [#6368](https://github.com/netbox-community/netbox/issues/6368) - Enable virtual chassis assignment during bulk import of devices * [#6620](https://github.com/netbox-community/netbox/issues/6620) - Show assigned VMs count under device role view * [#6666](https://github.com/netbox-community/netbox/issues/6666) - Show management-only status under interface detail view * [#6667](https://github.com/netbox-community/netbox/issues/6667) - Display VM memory as GB/TB as appropriate ### Bug Fixes * [#6626](https://github.com/netbox-community/netbox/issues/6626) - Fix site field on VM search form; add site group * [#6637](https://github.com/netbox-community/netbox/issues/6637) - Fix group assignment in "available VLANs" link under VLAN group view * [#6640](https://github.com/netbox-community/netbox/issues/6640) - Disallow numeric values in custom text fields * [#6652](https://github.com/netbox-community/netbox/issues/6652) - Fix exception when adding components in bulk to multiple devices * [#6676](https://github.com/netbox-community/netbox/issues/6676) - Fix device/VM counts per cluster under cluster type/group views * [#6680](https://github.com/netbox-community/netbox/issues/6680) - Allow setting custom field values for VM interfaces on initial creation * [#6695](https://github.com/netbox-community/netbox/issues/6695) - Fix exception when importing device type with invalid front port definition --- <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:42 +01:00
adam closed this issue 2025-12-29 22:25:42 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13155