[PR #3230] [MERGED] Release v2.5.13 #12526

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/3230
Author: @jeremystretch
Created: 5/31/2019
Status: Merged
Merged: 5/31/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • f78c228 Fixes #2813: Add Filter for TenantGroup to the following Forms and Filter classes:
  • 8683efe Fixes #2813: Add Filter and List View for TenantGroup
  • 679aa0f Update tables.py
  • b4d7f9e Fixes #2781: Fixes filter by regions on site and device list
  • 5fcd673 Merge remote-tracking branch 'dansheps/2813-addtenantgroupfilter' into 2813-addtenantgroupfilter
  • 3bb1cbc * Resolve conflict with virtualization filters.
  • 37811d3 * Resolve conflict with virtualization filters.
  • a91a796 Merge branch 'develop' of https://github.com/digitalocean/netbox into 2813-addtenantgroupfilter
  • 6e8e680 Move Filter and Form to new file, update all files
  • 6fa54be Fix PEP8 Errors

📊 Changes

41 files changed (+774 additions, -754 deletions)

View changed files

📝 CHANGELOG.md (+27 -0)
📝 netbox/circuits/filters.py (+3 -13)
📝 netbox/circuits/forms.py (+3 -11)
📝 netbox/circuits/models.py (+6 -1)
📝 netbox/circuits/urls.py (+31 -31)
📝 netbox/dcim/constants.py (+5 -1)
📝 netbox/dcim/filters.py (+6 -46)
📝 netbox/dcim/forms.py (+58 -68)
📝 netbox/dcim/tables.py (+24 -9)
📝 netbox/dcim/urls.py (+207 -206)
📝 netbox/dcim/views.py (+10 -1)
📝 netbox/extras/middleware.py (+3 -7)
📝 netbox/extras/models.py (+9 -4)
📝 netbox/extras/querysets.py (+18 -0)
📝 netbox/extras/urls.py (+20 -20)
📝 netbox/ipam/filters.py (+12 -46)
📝 netbox/ipam/forms.py (+14 -44)
📝 netbox/ipam/tables.py (+3 -0)
📝 netbox/ipam/tests/test_api.py (+18 -0)
📝 netbox/ipam/urls.py (+77 -77)

...and 21 more files

📄 Description

Enhancements

  • #2813 - Add tenant group filters
  • #3085 - Catch all exceptions during export template rendering
  • #3138 - Add 2.5GE and 5GE interface form factors
  • #3151 - Add inventory item count to manufacturers list
  • #3156 - Add site link to rack reservations overview
  • #3183 - Enable bulk deletion of sites
  • #3185 - Improve performance for custom field access within templates
  • #3186 - Add interface name filter for IP addresses

Bug Fixes

  • #3031 - Fixed form field population of tags with spaces
  • #3132 - Circuit termination missing from available cable termination types
  • #3150 - Fix formatting of cable length during cable trace
  • #3184 - Correctly display color block for white cables
  • #3190 - Fix custom field rendering for Jinja2 export templates
  • #3211 - Fix error handling when attempting to delete a protected object via API
  • #3223 - Fix filtering devices by "has power outlets"
  • #3227 - Fix exception when deleting a circuit with a termination(s)
  • #3228 - Fixed login link retaining query parameters

🔄 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/3230 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 5/31/2019 **Status:** ✅ Merged **Merged:** 5/31/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`f78c228`](https://github.com/netbox-community/netbox/commit/f78c228c757832abd7fabe41fa90ecd1d9eda3ea) Fixes #2813: Add Filter for TenantGroup to the following Forms and Filter classes: - [`8683efe`](https://github.com/netbox-community/netbox/commit/8683efe54ae438b589fcd9fdb580956d4024abef) Fixes #2813: Add Filter and List View for TenantGroup - [`679aa0f`](https://github.com/netbox-community/netbox/commit/679aa0f764d6b0c830d093cd59c9a753757c49e0) Update tables.py - [`b4d7f9e`](https://github.com/netbox-community/netbox/commit/b4d7f9ea43564567b19a8dbe203d1b21d3f64aff) Fixes #2781: Fixes filter by regions on site and device list - [`5fcd673`](https://github.com/netbox-community/netbox/commit/5fcd673f9f9f3513e6dd9ddeff7cc8b40d2d5d8a) Merge remote-tracking branch 'dansheps/2813-addtenantgroupfilter' into 2813-addtenantgroupfilter - [`3bb1cbc`](https://github.com/netbox-community/netbox/commit/3bb1cbcdb01be878d16ba34d5ce2199a1c2d91d3) * Resolve conflict with virtualization filters. - [`37811d3`](https://github.com/netbox-community/netbox/commit/37811d3f7e3c04d7d2828f7695975e133fd01cbd) * Resolve conflict with virtualization filters. - [`a91a796`](https://github.com/netbox-community/netbox/commit/a91a79681f1a13ca6400d76bf27d9c2ffe495447) Merge branch 'develop' of https://github.com/digitalocean/netbox into 2813-addtenantgroupfilter - [`6e8e680`](https://github.com/netbox-community/netbox/commit/6e8e6809f344e335bd07834ae4cee35d4690c7a3) Move Filter and Form to new file, update all files - [`6fa54be`](https://github.com/netbox-community/netbox/commit/6fa54bed73aaa27ed9307c6ddac3b8def4b36666) Fix PEP8 Errors ### 📊 Changes **41 files changed** (+774 additions, -754 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+27 -0) 📝 `netbox/circuits/filters.py` (+3 -13) 📝 `netbox/circuits/forms.py` (+3 -11) 📝 `netbox/circuits/models.py` (+6 -1) 📝 `netbox/circuits/urls.py` (+31 -31) 📝 `netbox/dcim/constants.py` (+5 -1) 📝 `netbox/dcim/filters.py` (+6 -46) 📝 `netbox/dcim/forms.py` (+58 -68) 📝 `netbox/dcim/tables.py` (+24 -9) 📝 `netbox/dcim/urls.py` (+207 -206) 📝 `netbox/dcim/views.py` (+10 -1) 📝 `netbox/extras/middleware.py` (+3 -7) 📝 `netbox/extras/models.py` (+9 -4) 📝 `netbox/extras/querysets.py` (+18 -0) 📝 `netbox/extras/urls.py` (+20 -20) 📝 `netbox/ipam/filters.py` (+12 -46) 📝 `netbox/ipam/forms.py` (+14 -44) 📝 `netbox/ipam/tables.py` (+3 -0) 📝 `netbox/ipam/tests/test_api.py` (+18 -0) 📝 `netbox/ipam/urls.py` (+77 -77) _...and 21 more files_ </details> ### 📄 Description ## Enhancements * [#2813](https://github.com/digitalocean/netbox/issues/2813) - Add tenant group filters * [#3085](https://github.com/digitalocean/netbox/issues/3085) - Catch all exceptions during export template rendering * [#3138](https://github.com/digitalocean/netbox/issues/3138) - Add 2.5GE and 5GE interface form factors * [#3151](https://github.com/digitalocean/netbox/issues/3151) - Add inventory item count to manufacturers list * [#3156](https://github.com/digitalocean/netbox/issues/3156) - Add site link to rack reservations overview * [#3183](https://github.com/digitalocean/netbox/issues/3183) - Enable bulk deletion of sites * [#3185](https://github.com/digitalocean/netbox/issues/3185) - Improve performance for custom field access within templates * [#3186](https://github.com/digitalocean/netbox/issues/3186) - Add interface name filter for IP addresses ## Bug Fixes * [#3031](https://github.com/digitalocean/netbox/issues/3031) - Fixed form field population of tags with spaces * [#3132](https://github.com/digitalocean/netbox/issues/3132) - Circuit termination missing from available cable termination types * [#3150](https://github.com/digitalocean/netbox/issues/3150) - Fix formatting of cable length during cable trace * [#3184](https://github.com/digitalocean/netbox/issues/3184) - Correctly display color block for white cables * [#3190](https://github.com/digitalocean/netbox/issues/3190) - Fix custom field rendering for Jinja2 export templates * [#3211](https://github.com/digitalocean/netbox/issues/3211) - Fix error handling when attempting to delete a protected object via API * [#3223](https://github.com/digitalocean/netbox/issues/3223) - Fix filtering devices by "has power outlets" * [#3227](https://github.com/digitalocean/netbox/issues/3227) - Fix exception when deleting a circuit with a termination(s) * [#3228](https://github.com/digitalocean/netbox/issues/3228) - Fixed login link retaining query parameters --- <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:22:05 +01:00
adam closed this issue 2025-12-29 22:22:05 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12526