[PR #6947] [MERGED] Release v2.11.11 #13191

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/6947
Author: @jeremystretch
Created: 8/12/2021
Status: Merged
Merged: 8/12/2021
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

28 files changed (+142 additions, -60 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .github/workflows/stale.yml (+1 -1)
📝 docs/additional-features/custom-links.md (+3 -0)
📝 docs/additional-features/export-templates.md (+4 -1)
📝 docs/additional-features/webhooks.md (+3 -0)
📝 docs/installation/1-postgresql.md (+2 -2)
📝 docs/installation/3-netbox.md (+1 -1)
📝 docs/media/installation/netbox_application_stack.png (+0 -0)
📝 docs/release-notes/version-2.11.md (+22 -0)
📝 docs/rest-api/filtering.md (+17 -1)
📝 netbox/dcim/choices.py (+4 -0)
📝 netbox/dcim/forms.py (+21 -0)
📝 netbox/dcim/models/device_components.py (+9 -0)
📝 netbox/dcim/tables/devices.py (+0 -4)
📝 netbox/dcim/tests/test_views.py (+4 -4)
📝 netbox/ipam/forms.py (+10 -8)
📝 netbox/ipam/models/ip.py (+9 -12)
📝 netbox/ipam/tests/test_views.py (+4 -4)
📝 netbox/netbox/configuration.example.py (+1 -1)

...and 8 more files

📄 Description

Enhancements

  • #6883 - Add C21 & C22 power types
  • #6921 - Employ a sandbox when rendering Jinja2 code for increased security

Bug Fixes

  • #6740 - Add import button to VM interfaces list
  • #6892 - Fix validation of unit ranges when creating a rack reservation
  • #6896 - Fix validation of IP address assigned as device/VM primary via NAT relation
  • #6902 - Populate device field when cloning device components
  • #6908 - Allow assignment of scope to VLAN groups upon import
  • #6909 - Remove extraneous site column from VLAN group import form
  • #6910 - Fix exception on invalid CSV import column name
  • #6918 - Fix return URL persistence when adding multiple objects sequentially
  • #6935 - Remove extraneous columns from inventory item and device bay tables
  • #6936 - Add missing parent column to inventory item import form

🔄 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/6947 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/12/2021 **Status:** ✅ Merged **Merged:** 8/12/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`18a4232`](https://github.com/netbox-community/netbox/commit/18a4232783ae436f1bd976140a3631a9b4ed4a0a) PRVB - [`27f3816`](https://github.com/netbox-community/netbox/commit/27f3816fc63c8fc1410c5adf1c383df9772dd512) Escaping angle brackets in a device config file - [`288bf47`](https://github.com/netbox-community/netbox/commit/288bf477ce8f970335bb605aae1af1f65e757387) Bump GitHub stale action to v4.0 - [`49a949a`](https://github.com/netbox-community/netbox/commit/49a949aa9702ede57bdc0ea02cd3ee876816c9ab) Merge pull request #6836 from Ursadon/patch-1 - [`76df55d`](https://github.com/netbox-community/netbox/commit/76df55dfc070b8caae8c43a47b4b8701b9d065d2) Fixes #6740: Add import button to VM interfaces list - [`55cdbd5`](https://github.com/netbox-community/netbox/commit/55cdbd57ccecb9991e2cc68ac62eecf34c18e2b0) Add power outlet/port choice for C21/C22 - [`9379324`](https://github.com/netbox-community/netbox/commit/9379324b070ce7f47189e6f10e3cfd1575478afd) Merge pull request #6885 from bellwood/6883_add_power_outlet_port_c21_c22 - [`ee8fd70`](https://github.com/netbox-community/netbox/commit/ee8fd701ae2d86ad74ab2d88ead341a9974226ff) Changelog for #6883 - [`46d0af6`](https://github.com/netbox-community/netbox/commit/46d0af6cef3e98b0352fd8be72ceb76f8f07523a) Fixes #6892: Fix validation of unit ranges when creating a rack reservation - [`d347b97`](https://github.com/netbox-community/netbox/commit/d347b97f20f212184f0144d3601aca509e3c926f) Fixes #6887 Add Examples in the Lookup Expression Docs (#6898) ### 📊 Changes **28 files changed** (+142 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `.github/workflows/stale.yml` (+1 -1) 📝 `docs/additional-features/custom-links.md` (+3 -0) 📝 `docs/additional-features/export-templates.md` (+4 -1) 📝 `docs/additional-features/webhooks.md` (+3 -0) 📝 `docs/installation/1-postgresql.md` (+2 -2) 📝 `docs/installation/3-netbox.md` (+1 -1) 📝 `docs/media/installation/netbox_application_stack.png` (+0 -0) 📝 `docs/release-notes/version-2.11.md` (+22 -0) 📝 `docs/rest-api/filtering.md` (+17 -1) 📝 `netbox/dcim/choices.py` (+4 -0) 📝 `netbox/dcim/forms.py` (+21 -0) 📝 `netbox/dcim/models/device_components.py` (+9 -0) 📝 `netbox/dcim/tables/devices.py` (+0 -4) 📝 `netbox/dcim/tests/test_views.py` (+4 -4) 📝 `netbox/ipam/forms.py` (+10 -8) 📝 `netbox/ipam/models/ip.py` (+9 -12) 📝 `netbox/ipam/tests/test_views.py` (+4 -4) 📝 `netbox/netbox/configuration.example.py` (+1 -1) _...and 8 more files_ </details> ### 📄 Description ### Enhancements * [#6883](https://github.com/netbox-community/netbox/issues/6883) - Add C21 & C22 power types * [#6921](https://github.com/netbox-community/netbox/issues/6921) - Employ a sandbox when rendering Jinja2 code for increased security ### Bug Fixes * [#6740](https://github.com/netbox-community/netbox/issues/6740) - Add import button to VM interfaces list * [#6892](https://github.com/netbox-community/netbox/issues/6892) - Fix validation of unit ranges when creating a rack reservation * [#6896](https://github.com/netbox-community/netbox/issues/6896) - Fix validation of IP address assigned as device/VM primary via NAT relation * [#6902](https://github.com/netbox-community/netbox/issues/6902) - Populate device field when cloning device components * [#6908](https://github.com/netbox-community/netbox/issues/6908) - Allow assignment of scope to VLAN groups upon import * [#6909](https://github.com/netbox-community/netbox/issues/6909) - Remove extraneous `site` column from VLAN group import form * [#6910](https://github.com/netbox-community/netbox/issues/6910) - Fix exception on invalid CSV import column name * [#6918](https://github.com/netbox-community/netbox/issues/6918) - Fix return URL persistence when adding multiple objects sequentially * [#6935](https://github.com/netbox-community/netbox/issues/6935) - Remove extraneous columns from inventory item and device bay tables * [#6936](https://github.com/netbox-community/netbox/issues/6936) - Add missing `parent` column to inventory item import form --- <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:53 +01:00
adam closed this issue 2025-12-29 22:25:53 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13191