[PR #2838] [MERGED] Release v2.5.5 #12447

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

  • 170900e Fixes #2824: Fix template exception when viewing rack elevations list
  • e51e8b5 Updated link after the move of netbox-docker
  • fe30276 Merge pull request #2828 from cimnine/patch-1
  • 5138d12 Typo (#2822)
  • 0eced48 Updated link to netbox-docker, again
  • 51e5e49 Merge pull request #2832 from cimnine/patch-1
  • a98d014 Post-release version bump
  • b508415 Fixes #2833: Fix form widget for front port template creation
  • ae0c8de Closes #2809: Remove VRF child prefixes table; link to main prefixes view
  • 59f8f0c Closes #2825: Include directly connected device for front/rear ports

📊 Changes

25 files changed (+182 additions, -94 deletions)

View changed files

📝 CHANGELOG.md (+17 -0)
📝 README.md (+1 -1)
📝 docs/additional-features/tags.md (+1 -1)
📝 docs/core-functionality/ipam.md (+1 -1)
📝 netbox/circuits/filters.py (+2 -2)
📝 netbox/circuits/models.py (+5 -1)
📝 netbox/dcim/filters.py (+19 -34)
📝 netbox/dcim/forms.py (+0 -1)
📝 netbox/dcim/models.py (+12 -0)
📝 netbox/ipam/filters.py (+8 -4)
netbox/ipam/migrations/0024_vrf_allow_null_rd.py (+18 -0)
📝 netbox/ipam/models.py (+2 -0)
📝 netbox/ipam/tests/test_api.py (+18 -11)
📝 netbox/ipam/views.py (+2 -5)
📝 netbox/netbox/settings.py (+1 -1)
📝 netbox/project-static/js/forms.js (+2 -2)
📝 netbox/secrets/filters.py (+2 -2)
📝 netbox/templates/dcim/device.html (+4 -2)
📝 netbox/templates/dcim/inc/frontport.html (+12 -6)
📝 netbox/templates/dcim/inc/rearport.html (+12 -6)

...and 5 more files

📄 Description

Enhancements

  • #2805 - Allow null route distinguisher for VRFs
  • #2809 - Remove VRF child prefixes table; link to main prefixes view
  • #2825 - Include directly connected device for front/rear ports

Bug Fixes

  • #2824 - Fix template exception when viewing rack elevations list
  • #2833 - Fix form widget for front port template creation
  • #2835 - Fix certain model filters did not support the q query param
  • #2837 - Fix select2 nullable filter fields add multiple null_option elements when paging

🔄 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/2838 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/31/2019 **Status:** ✅ Merged **Merged:** 1/31/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`170900e`](https://github.com/netbox-community/netbox/commit/170900e80fde643352b91f47993f1487ee4ff388) Fixes #2824: Fix template exception when viewing rack elevations list - [`e51e8b5`](https://github.com/netbox-community/netbox/commit/e51e8b5c8a93f718a1680b6265050d60d2982482) Updated link after the move of `netbox-docker` - [`fe30276`](https://github.com/netbox-community/netbox/commit/fe30276db29d86d1ca1b64cb180b0078e2110070) Merge pull request #2828 from cimnine/patch-1 - [`5138d12`](https://github.com/netbox-community/netbox/commit/5138d129427c287276962e4fcb6873d0c239ce7e) Typo (#2822) - [`0eced48`](https://github.com/netbox-community/netbox/commit/0eced489da5bc916fbc0efbf914e658df09f897f) Updated link to netbox-docker, again - [`51e5e49`](https://github.com/netbox-community/netbox/commit/51e5e49d3bb03ce7256864b96a2e5b9fc5e17d44) Merge pull request #2832 from cimnine/patch-1 - [`a98d014`](https://github.com/netbox-community/netbox/commit/a98d0147632df4bb8c6b0f3dbdebb83ed452a6dd) Post-release version bump - [`b508415`](https://github.com/netbox-community/netbox/commit/b508415983f55887a06534813880b65c81fc9f8e) Fixes #2833: Fix form widget for front port template creation - [`ae0c8de`](https://github.com/netbox-community/netbox/commit/ae0c8deec201ce14684bccc44dcd5ca721ecb85f) Closes #2809: Remove VRF child prefixes table; link to main prefixes view - [`59f8f0c`](https://github.com/netbox-community/netbox/commit/59f8f0c7ea4cafd083e1f5c6857a32baa87f21a8) Closes #2825: Include directly connected device for front/rear ports ### 📊 Changes **25 files changed** (+182 additions, -94 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+17 -0) 📝 `README.md` (+1 -1) 📝 `docs/additional-features/tags.md` (+1 -1) 📝 `docs/core-functionality/ipam.md` (+1 -1) 📝 `netbox/circuits/filters.py` (+2 -2) 📝 `netbox/circuits/models.py` (+5 -1) 📝 `netbox/dcim/filters.py` (+19 -34) 📝 `netbox/dcim/forms.py` (+0 -1) 📝 `netbox/dcim/models.py` (+12 -0) 📝 `netbox/ipam/filters.py` (+8 -4) ➕ `netbox/ipam/migrations/0024_vrf_allow_null_rd.py` (+18 -0) 📝 `netbox/ipam/models.py` (+2 -0) 📝 `netbox/ipam/tests/test_api.py` (+18 -11) 📝 `netbox/ipam/views.py` (+2 -5) 📝 `netbox/netbox/settings.py` (+1 -1) 📝 `netbox/project-static/js/forms.js` (+2 -2) 📝 `netbox/secrets/filters.py` (+2 -2) 📝 `netbox/templates/dcim/device.html` (+4 -2) 📝 `netbox/templates/dcim/inc/frontport.html` (+12 -6) 📝 `netbox/templates/dcim/inc/rearport.html` (+12 -6) _...and 5 more files_ </details> ### 📄 Description ## Enhancements * [#2805](https://github.com/digitalocean/netbox/issues/2805) - Allow null route distinguisher for VRFs * [#2809](https://github.com/digitalocean/netbox/issues/2809) - Remove VRF child prefixes table; link to main prefixes view * [#2825](https://github.com/digitalocean/netbox/issues/2825) - Include directly connected device for front/rear ports ## Bug Fixes * [#2824](https://github.com/digitalocean/netbox/issues/2824) - Fix template exception when viewing rack elevations list * [#2833](https://github.com/digitalocean/netbox/issues/2833) - Fix form widget for front port template creation * [#2835](https://github.com/digitalocean/netbox/issues/2835) - Fix certain model filters did not support the `q` query param * [#2837](https://github.com/digitalocean/netbox/issues/2837) - Fix select2 nullable filter fields add multiple null_option elements when paging --- <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:38 +01:00
adam closed this issue 2025-12-29 22:21:38 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12447