[PR #2922] [MERGED] Release v2.5.7 #12463

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2922
Author: @jeremystretch
Created: 2/21/2019
Status: Merged
Merged: 2/21/2019
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

32 files changed (+1417 additions, -45 deletions)

View changed files

📝 CHANGELOG.md (+26 -0)
📝 docs/additional-features/reports.md (+1 -1)
netbox/circuits/tests/test_views.py (+91 -0)
📝 netbox/dcim/constants.py (+18 -0)
📝 netbox/dcim/filters.py (+5 -1)
📝 netbox/dcim/forms.py (+8 -3)
netbox/dcim/migrations/0069_deprecate_nullablecharfield.py (+38 -0)
📝 netbox/dcim/models.py (+10 -8)
📝 netbox/dcim/tables.py (+3 -0)
netbox/dcim/tests/test_views.py (+458 -0)
📝 netbox/dcim/views.py (+7 -1)
📝 netbox/extras/forms.py (+53 -13)
netbox/extras/tests/test_views.py (+105 -0)
netbox/ipam/tests/test_views.py (+282 -0)
📝 netbox/netbox/settings.py (+1 -1)
netbox/project-static/clipboard-2.0.4.min.js (+7 -0)
📝 netbox/project-static/js/secrets.js (+4 -0)
netbox/secrets/tests/test_views.py (+82 -0)
📝 netbox/templates/_base.html (+1 -0)
📝 netbox/templates/circuits/provider.html (+2 -2)

...and 12 more files

📄 Description

Enhancements

  • #2357 - Enable filtering of devices by rack face
  • #2638 - Add button to copy unlocked secret to clipboard
  • #2870 - Add Markdown rendering for provider NOC/admin contact fields
  • #2878 - Add cable types for OS1/OS2 singlemode fiber
  • #2890 - Add port types for APC fiber
  • #2898 - Enable filtering cables list by connection status
  • #2903 - Clarify purpose of tags field on interface edit form

Bug Fixes

  • #2852 - Allow filtering devices by null rack position
  • #2884 - Don't display connect button for wireless interfaces
  • #2888 - Correct foreground color of device roles in rack elevations
  • #2893 - Remove duplicate display of VRF RD on IP address view
  • #2895 - Fix filtering of nullable character fields
  • #2901 - Fix ordering regions by site count
  • #2910 - Fix config context list and edit forms to use Select2 elements
  • #2912 - Cable type in filter form should be blank by default
  • #2913 - Fix assigned prefixes link on VRF view
  • #2914 - Fix empty connected circuit link on device interfaces list
  • #2915 - Fix bulk editing of pass-through ports

🔄 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/2922 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 2/21/2019 **Status:** ✅ Merged **Merged:** 2/21/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`8d86e97`](https://github.com/netbox-community/netbox/commit/8d86e97247a9971057a96dd6b74cae7b194c4653) Clarify use of "runreport" CLI - [`d084d19`](https://github.com/netbox-community/netbox/commit/d084d19675483346790e057297b15b712e7b2313) Post-release version bump - [`0e8c3a8`](https://github.com/netbox-community/netbox/commit/0e8c3a8efe2200748d5d214dad2fa719fea16c76) Render correct foreground colour for rack devices - [`1ee6d16`](https://github.com/netbox-community/netbox/commit/1ee6d16d78e2ad3d465c353498319106ec62ac8b) add port type LC/APC, SC/APC, LSH/APC - [`3161120`](https://github.com/netbox-community/netbox/commit/31611203ebb81cd1e9a905b053f4330c48eb35ca) ipaddress.vrf already includes ipaddress.vrf.rd - [`2a1630e`](https://github.com/netbox-community/netbox/commit/2a1630e068ff34c901207ab61d137dd239867722) Merge pull request #2894 from TakeMeNL/bug/duplicate-vrf - [`008138c`](https://github.com/netbox-community/netbox/commit/008138cd0201678f37dc8d0b7412aa5213da3fe4) Merge pull request #2889 from stuntguy3000/patch-1 - [`d95b127`](https://github.com/netbox-community/netbox/commit/d95b127378417ba0b9e658d73fad5878231101f7) Changelog for #2888 and #2893 - [`fdbef8e`](https://github.com/netbox-community/netbox/commit/fdbef8ee712767cd8a5188ce3e499cbeaac57493) Closes #2836: Deprecate NullableCharField - [`7a0ab3a`](https://github.com/netbox-community/netbox/commit/7a0ab3aa15ddc1188e03ae38ab4025ee6a4d54cc) Fixes #2895: Fix filtering of nullable character fields ### 📊 Changes **32 files changed** (+1417 additions, -45 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+26 -0) 📝 `docs/additional-features/reports.md` (+1 -1) ➕ `netbox/circuits/tests/test_views.py` (+91 -0) 📝 `netbox/dcim/constants.py` (+18 -0) 📝 `netbox/dcim/filters.py` (+5 -1) 📝 `netbox/dcim/forms.py` (+8 -3) ➕ `netbox/dcim/migrations/0069_deprecate_nullablecharfield.py` (+38 -0) 📝 `netbox/dcim/models.py` (+10 -8) 📝 `netbox/dcim/tables.py` (+3 -0) ➕ `netbox/dcim/tests/test_views.py` (+458 -0) 📝 `netbox/dcim/views.py` (+7 -1) 📝 `netbox/extras/forms.py` (+53 -13) ➕ `netbox/extras/tests/test_views.py` (+105 -0) ➕ `netbox/ipam/tests/test_views.py` (+282 -0) 📝 `netbox/netbox/settings.py` (+1 -1) ➕ `netbox/project-static/clipboard-2.0.4.min.js` (+7 -0) 📝 `netbox/project-static/js/secrets.js` (+4 -0) ➕ `netbox/secrets/tests/test_views.py` (+82 -0) 📝 `netbox/templates/_base.html` (+1 -0) 📝 `netbox/templates/circuits/provider.html` (+2 -2) _...and 12 more files_ </details> ### 📄 Description ## Enhancements * [#2357](https://github.com/digitalocean/netbox/issues/2357) - Enable filtering of devices by rack face * [#2638](https://github.com/digitalocean/netbox/issues/2638) - Add button to copy unlocked secret to clipboard * [#2870](https://github.com/digitalocean/netbox/issues/2870) - Add Markdown rendering for provider NOC/admin contact fields * [#2878](https://github.com/digitalocean/netbox/issues/2878) - Add cable types for OS1/OS2 singlemode fiber * [#2890](https://github.com/digitalocean/netbox/issues/2890) - Add port types for APC fiber * [#2898](https://github.com/digitalocean/netbox/issues/2898) - Enable filtering cables list by connection status * [#2903](https://github.com/digitalocean/netbox/issues/2903) - Clarify purpose of tags field on interface edit form ## Bug Fixes * [#2852](https://github.com/digitalocean/netbox/issues/2852) - Allow filtering devices by null rack position * [#2884](https://github.com/digitalocean/netbox/issues/2884) - Don't display connect button for wireless interfaces * [#2888](https://github.com/digitalocean/netbox/issues/2888) - Correct foreground color of device roles in rack elevations * [#2893](https://github.com/digitalocean/netbox/issues/2893) - Remove duplicate display of VRF RD on IP address view * [#2895](https://github.com/digitalocean/netbox/issues/2895) - Fix filtering of nullable character fields * [#2901](https://github.com/digitalocean/netbox/issues/2901) - Fix ordering regions by site count * [#2910](https://github.com/digitalocean/netbox/issues/2910) - Fix config context list and edit forms to use Select2 elements * [#2912](https://github.com/digitalocean/netbox/issues/2912) - Cable type in filter form should be blank by default * [#2913](https://github.com/digitalocean/netbox/issues/2913) - Fix assigned prefixes link on VRF view * [#2914](https://github.com/digitalocean/netbox/issues/2914) - Fix empty connected circuit link on device interfaces list * [#2915](https://github.com/digitalocean/netbox/issues/2915) - Fix bulk editing of pass-through ports --- <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:43 +01:00
adam closed this issue 2025-12-29 22:21:43 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12463