[PR #2990] [MERGED] Release v2.5.8 #12483

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2990
Author: @jeremystretch
Created: 3/11/2019
Status: Merged
Merged: 3/11/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

115 files changed (+396 additions, -274 deletions)

View changed files

📝 CHANGELOG.md (+32 -0)
📝 netbox/circuits/forms.py (+1 -1)
📝 netbox/circuits/tables.py (+1 -1)
📝 netbox/dcim/api/serializers.py (+1 -1)
📝 netbox/dcim/api/views.py (+3 -3)
📝 netbox/dcim/filters.py (+17 -34)
📝 netbox/dcim/managers.py (+1 -1)
📝 netbox/dcim/models.py (+8 -9)
📝 netbox/dcim/tables.py (+8 -8)
📝 netbox/dcim/views.py (+3 -1)
📝 netbox/extras/middleware.py (+5 -1)
netbox/extras/migrations/0017_exporttemplate_mime_type_length.py (+18 -0)
📝 netbox/extras/models.py (+1 -1)
📝 netbox/extras/tables.py (+1 -1)
📝 netbox/ipam/forms.py (+6 -6)
📝 netbox/ipam/models.py (+24 -2)
📝 netbox/ipam/tables.py (+4 -4)
📝 netbox/netbox/settings.py (+4 -3)
📝 netbox/netbox/views.py (+1 -0)
📝 netbox/project-static/css/base.css (+14 -1)

...and 80 more files

📄 Description

Enhancements

  • #2435 - Printer friendly CSS

Bug Fixes

  • #2065 - Correct documentation for VM interface serializer
  • #2705 - Fix endpoint grouping in API docs
  • #2781 - Fix filtering of sites/devices/VMs by multiple regions
  • #2923 - Provider filter form's site field should be blank by default
  • #2938 - Enforce deterministic ordering of device components returned by API
  • #2939 - Exclude circuit terminations from API interface connections endpoint
  • #2940 - Allow CSV import of prefixes/IPs to VRF without an RD assigned
  • #2944 - Record the deletion of an IP address in the changelog of its parent interface (if any)
  • #2952 - Added the slug field to the Tenant filter for use in the API and search function
  • #2954 - Remove trailing slashes to fix root/template paths on Windows
  • #2961 - Prevent exception when exporting inventory items belonging to unnamed devices
  • #2962 - Increase ExportTemplate mime_type field length
  • #2966 - Accept null cable length_unit via API
  • #2972 - Improve ContentTypeField serializer to elegantly handle invalid data
  • #2976 - Add delete button to tag view
  • #2980 - Improve rendering time for API docs
  • #2982 - Correct CSS class assignment on color picker
  • #2984 - Fix logging of unlabeled cable ID on cable deletion
  • #2985 - Fix pagination page length for rack elevations

🔄 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/2990 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/11/2019 **Status:** ✅ Merged **Merged:** 3/11/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`77c387a`](https://github.com/netbox-community/netbox/commit/77c387a559cd66a0bfa734832041e0764e00ffa6) Post-release version bump - [`3ffea43`](https://github.com/netbox-community/netbox/commit/3ffea432534dce9de6774b38416bd554243aa7b9) Fixes #2923: Changes Site Filter on Provider List to APISelectMultiple - [`d707844`](https://github.com/netbox-community/netbox/commit/d707844c3021cd24d1fe86be927968af908bbc07) Merge pull request #2928 from DanSheps/2923-changecircuitsitefiltermulti - [`8dfef83`](https://github.com/netbox-community/netbox/commit/8dfef83f1ab1eec15c7c9345e23af880d29ac5bb) Changelog for #2923 - [`beff774`](https://github.com/netbox-community/netbox/commit/beff774295b82db0cbe56b09650406f03b528d32) Fixes #2705: Fix endpoint grouping in API docs - [`f2471ae`](https://github.com/netbox-community/netbox/commit/f2471aedb28b232f926ec3f43dddb981d0d404f9) Fixes #2781: Fixes filter by regions on site and device list - [`00aaf50`](https://github.com/netbox-community/netbox/commit/00aaf500de1ac67bcba46fbcc75d9ea51cf6ddca) Fixes #2781: Fixes filter by regions on site and device list - [`32f63a1`](https://github.com/netbox-community/netbox/commit/32f63a18ff4f0edf8cd165459cd9da7a13b2dd0f) Fixes #2938: Enforce deterministic ordering of device components returned by API - [`3e6033e`](https://github.com/netbox-community/netbox/commit/3e6033e9ff0adb7942e420e0d83f6166a1057756) Fixes #2938: Exclude circuit terminations from API interface connections endpoint - [`6f5c35c`](https://github.com/netbox-community/netbox/commit/6f5c35c2781a1dab157313b1ef87de2ae8de92be) Force resolution of request User object when logging an object deletion (resolves intermittent test failures) ### 📊 Changes **115 files changed** (+396 additions, -274 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+32 -0) 📝 `netbox/circuits/forms.py` (+1 -1) 📝 `netbox/circuits/tables.py` (+1 -1) 📝 `netbox/dcim/api/serializers.py` (+1 -1) 📝 `netbox/dcim/api/views.py` (+3 -3) 📝 `netbox/dcim/filters.py` (+17 -34) 📝 `netbox/dcim/managers.py` (+1 -1) 📝 `netbox/dcim/models.py` (+8 -9) 📝 `netbox/dcim/tables.py` (+8 -8) 📝 `netbox/dcim/views.py` (+3 -1) 📝 `netbox/extras/middleware.py` (+5 -1) ➕ `netbox/extras/migrations/0017_exporttemplate_mime_type_length.py` (+18 -0) 📝 `netbox/extras/models.py` (+1 -1) 📝 `netbox/extras/tables.py` (+1 -1) 📝 `netbox/ipam/forms.py` (+6 -6) 📝 `netbox/ipam/models.py` (+24 -2) 📝 `netbox/ipam/tables.py` (+4 -4) 📝 `netbox/netbox/settings.py` (+4 -3) 📝 `netbox/netbox/views.py` (+1 -0) 📝 `netbox/project-static/css/base.css` (+14 -1) _...and 80 more files_ </details> ### 📄 Description ## Enhancements * [#2435](https://github.com/digitalocean/netbox/issues/2435) - Printer friendly CSS ## Bug Fixes * [#2065](https://github.com/digitalocean/netbox/issues/2065) - Correct documentation for VM interface serializer * [#2705](https://github.com/digitalocean/netbox/issues/2705) - Fix endpoint grouping in API docs * [#2781](https://github.com/digitalocean/netbox/issues/2781) - Fix filtering of sites/devices/VMs by multiple regions * [#2923](https://github.com/digitalocean/netbox/issues/2923) - Provider filter form's site field should be blank by default * [#2938](https://github.com/digitalocean/netbox/issues/2938) - Enforce deterministic ordering of device components returned by API * [#2939](https://github.com/digitalocean/netbox/issues/2939) - Exclude circuit terminations from API interface connections endpoint * [#2940](https://github.com/digitalocean/netbox/issues/2940) - Allow CSV import of prefixes/IPs to VRF without an RD assigned * [#2944](https://github.com/digitalocean/netbox/issues/2944) - Record the deletion of an IP address in the changelog of its parent interface (if any) * [#2952](https://github.com/digitalocean/netbox/issues/2952) - Added the `slug` field to the Tenant filter for use in the API and search function * [#2954](https://github.com/digitalocean/netbox/issues/2954) - Remove trailing slashes to fix root/template paths on Windows * [#2961](https://github.com/digitalocean/netbox/issues/2961) - Prevent exception when exporting inventory items belonging to unnamed devices * [#2962](https://github.com/digitalocean/netbox/issues/2962) - Increase ExportTemplate `mime_type` field length * [#2966](https://github.com/digitalocean/netbox/issues/2966) - Accept `null` cable length_unit via API * [#2972](https://github.com/digitalocean/netbox/issues/2972) - Improve ContentTypeField serializer to elegantly handle invalid data * [#2976](https://github.com/digitalocean/netbox/issues/2976) - Add delete button to tag view * [#2980](https://github.com/digitalocean/netbox/issues/2980) - Improve rendering time for API docs * [#2982](https://github.com/digitalocean/netbox/issues/2982) - Correct CSS class assignment on color picker * [#2984](https://github.com/digitalocean/netbox/issues/2984) - Fix logging of unlabeled cable ID on cable deletion * [#2985](https://github.com/digitalocean/netbox/issues/2985) - Fix pagination page length for rack elevations --- <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:21:50 +01:00
adam closed this issue 2025-12-29 22:21:51 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12483