[PR #6292] [MERGED] Release v2.11.2 #13109

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 83f520f PRVB
  • 396c91f Fixes #6246: Permit full-length descriptions when creating device components and VM interfaces
  • 648b9dd Closes #6239: Fix sudo invokations of echo
  • 1901e93 Fixes #6258: Fix parent assignment for SiteGroup API serializer
  • 52747e3 Fixes #6254: Disable ordering of space column in racks table
  • 4939b6b Fixes #6252: Fix assignment of console port speed values above 19.2kbps
  • 1dd9f8c Fixes #6248: Fix table column reconfiguration under Chrome
  • 2618dde Fixes #6236: Journal entry title should account for configured timezone
  • 19a2b90 Closes #6275: Linkify rack, device counts on locations list
  • 87b4cff Closes #6278: Note device locations on cable traces

📊 Changes

28 files changed (+140 additions, -75 deletions)

View changed files

.github/FUNDING.yml (+0 -1)
📝 docs/installation/3-netbox.md (+2 -2)
📝 docs/installation/6-ldap.md (+1 -1)
📝 docs/release-notes/version-2.11.md (+23 -0)
📝 netbox/circuits/api/views.py (+2 -2)
📝 netbox/circuits/filters.py (+3 -3)
📝 netbox/dcim/api/serializers.py (+1 -1)
📝 netbox/dcim/filters.py (+15 -15)
📝 netbox/dcim/forms.py (+2 -2)
netbox/dcim/migrations/0131_consoleport_speed.py (+21 -0)
📝 netbox/dcim/models/device_components.py (+2 -2)
📝 netbox/dcim/models/devices.py (+11 -4)
📝 netbox/dcim/tables/racks.py (+1 -0)
📝 netbox/dcim/tables/sites.py (+6 -2)
📝 netbox/dcim/views.py (+2 -2)
📝 netbox/extras/filters.py (+24 -24)
📝 netbox/extras/models/models.py (+3 -1)
📝 netbox/ipam/filters.py (+4 -4)
📝 netbox/ipam/forms.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)

...and 8 more files

📄 Description

Enhancements

  • #6275 - Linkify rack, device counts on locations list
  • #6278 - Note device locations on cable traces
  • #6287 - Add option to clear assigned max length filter on prefixes list

Bug Fixes

  • #6236 - Journal entry title should account for configured timezone
  • #6246 - Permit full-length descriptions when creating device components and VM interfaces
  • #6248 - Fix table column reconfiguration under Chrome
  • #6252 - Fix assignment of console port speed values above 19.2kbps
  • #6254 - Disable ordering of space column in racks table
  • #6258 - Fix parent assignment for SiteGroup API serializer
  • #6262 - Support filtering by created/updated time for all relevant objects
  • #6267 - Fix cable tracing API endpoint for circuit terminations
  • #6289 - Fix assignment of VC member interfaces to LAG interfaces

🔄 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/6292 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/27/2021 **Status:** ✅ Merged **Merged:** 4/27/2021 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`83f520f`](https://github.com/netbox-community/netbox/commit/83f520f7a8e640cb24890ade1e7cc413c527b917) PRVB - [`396c91f`](https://github.com/netbox-community/netbox/commit/396c91f8f79b6960906fa22ef4f494603f29b978) Fixes #6246: Permit full-length descriptions when creating device components and VM interfaces - [`648b9dd`](https://github.com/netbox-community/netbox/commit/648b9dd7d81b773258907e16a4d88e13ab3054c4) Closes #6239: Fix sudo invokations of echo - [`1901e93`](https://github.com/netbox-community/netbox/commit/1901e93b1e56a8ddf987ab4543e326fceed5ef24) Fixes #6258: Fix parent assignment for SiteGroup API serializer - [`52747e3`](https://github.com/netbox-community/netbox/commit/52747e364ae305631846e88a5229331e3dfeb059) Fixes #6254: Disable ordering of space column in racks table - [`4939b6b`](https://github.com/netbox-community/netbox/commit/4939b6b641020467a859b781e4de408647023d87) Fixes #6252: Fix assignment of console port speed values above 19.2kbps - [`1dd9f8c`](https://github.com/netbox-community/netbox/commit/1dd9f8c1d45e600acd007a67bd127de6a99dfc71) Fixes #6248: Fix table column reconfiguration under Chrome - [`2618dde`](https://github.com/netbox-community/netbox/commit/2618dde1e2837fd4c587bed89d2358199176f01e) Fixes #6236: Journal entry title should account for configured timezone - [`19a2b90`](https://github.com/netbox-community/netbox/commit/19a2b9042fff08ffd03f4519e6810a0865eeede2) Closes #6275: Linkify rack, device counts on locations list - [`87b4cff`](https://github.com/netbox-community/netbox/commit/87b4cfff1aaf57cb3913209f25d770d7820ef9e1) Closes #6278: Note device locations on cable traces ### 📊 Changes **28 files changed** (+140 additions, -75 deletions) <details> <summary>View changed files</summary> ➖ `.github/FUNDING.yml` (+0 -1) 📝 `docs/installation/3-netbox.md` (+2 -2) 📝 `docs/installation/6-ldap.md` (+1 -1) 📝 `docs/release-notes/version-2.11.md` (+23 -0) 📝 `netbox/circuits/api/views.py` (+2 -2) 📝 `netbox/circuits/filters.py` (+3 -3) 📝 `netbox/dcim/api/serializers.py` (+1 -1) 📝 `netbox/dcim/filters.py` (+15 -15) 📝 `netbox/dcim/forms.py` (+2 -2) ➕ `netbox/dcim/migrations/0131_consoleport_speed.py` (+21 -0) 📝 `netbox/dcim/models/device_components.py` (+2 -2) 📝 `netbox/dcim/models/devices.py` (+11 -4) 📝 `netbox/dcim/tables/racks.py` (+1 -0) 📝 `netbox/dcim/tables/sites.py` (+6 -2) 📝 `netbox/dcim/views.py` (+2 -2) 📝 `netbox/extras/filters.py` (+24 -24) 📝 `netbox/extras/models/models.py` (+3 -1) 📝 `netbox/ipam/filters.py` (+4 -4) 📝 `netbox/ipam/forms.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) _...and 8 more files_ </details> ### 📄 Description ### Enhancements * [#6275](https://github.com/netbox-community/netbox/issues/6275) - Linkify rack, device counts on locations list * [#6278](https://github.com/netbox-community/netbox/issues/6278) - Note device locations on cable traces * [#6287](https://github.com/netbox-community/netbox/issues/6287) - Add option to clear assigned max length filter on prefixes list ### Bug Fixes * [#6236](https://github.com/netbox-community/netbox/issues/6236) - Journal entry title should account for configured timezone * [#6246](https://github.com/netbox-community/netbox/issues/6246) - Permit full-length descriptions when creating device components and VM interfaces * [#6248](https://github.com/netbox-community/netbox/issues/6248) - Fix table column reconfiguration under Chrome * [#6252](https://github.com/netbox-community/netbox/issues/6252) - Fix assignment of console port speed values above 19.2kbps * [#6254](https://github.com/netbox-community/netbox/issues/6254) - Disable ordering of space column in racks table * [#6258](https://github.com/netbox-community/netbox/issues/6258) - Fix parent assignment for SiteGroup API serializer * [#6262](https://github.com/netbox-community/netbox/issues/6262) - Support filtering by created/updated time for all relevant objects * [#6267](https://github.com/netbox-community/netbox/issues/6267) - Fix cable tracing API endpoint for circuit terminations * [#6289](https://github.com/netbox-community/netbox/issues/6289) - Fix assignment of VC member interfaces to LAG interfaces --- <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:27 +01:00
adam closed this issue 2025-12-29 22:25:27 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#13109