[PR #3034] [MERGED] Release v2.5.9 #12490

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

📋 Pull Request Information

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

Base: masterHead: develop


📝 Commits (10+)

📊 Changes

24 files changed (+122 additions, -44 deletions)

View changed files

📝 CHANGELOG.md (+25 -0)
📝 README.md (+4 -4)
📝 docs/api/overview.md (+1 -1)
📝 docs/configuration/optional-settings.md (+7 -0)
📝 netbox/dcim/api/serializers.py (+7 -2)
📝 netbox/dcim/api/views.py (+2 -2)
📝 netbox/dcim/constants.py (+2 -0)
📝 netbox/dcim/forms.py (+0 -1)
📝 netbox/dcim/managers.py (+5 -1)
📝 netbox/extras/api/serializers.py (+19 -5)
📝 netbox/extras/api/views.py (+2 -2)
📝 netbox/extras/apps.py (+1 -0)
📝 netbox/extras/middleware.py (+2 -2)
📝 netbox/extras/models.py (+1 -1)
📝 netbox/extras/webhooks.py (+4 -2)
📝 netbox/extras/webhooks_worker.py (+3 -1)
📝 netbox/ipam/api/serializers.py (+2 -0)
📝 netbox/ipam/forms.py (+2 -6)
📝 netbox/netbox/configuration.example.py (+1 -0)
📝 netbox/netbox/settings.py (+3 -1)

...and 4 more files

📄 Description

Enhancements

  • #2933 - Add username to outbound webhook requests
  • #3011 - Add SSL support for django-rq (requires django-rq v1.3.1+)
  • #3025 - Add request ID to outbound webhook requests (for correlating all changes part of a single request)

Bug Fixes

  • #2207 - Fixes deterministic ordering of interfaces
  • #2577 - Clarification of wording in API regarding filtering
  • #2924 - Add interface type for QSFP28 50GE
  • #2936 - Fix device role selection showing duplicate first entry
  • #2998 - Limit device query to non-racked devices if no rack selected when creating a cable
  • #3001 - Fix API representation of ObjectChange action and add changed_object_type
  • #3014 - Fixes VM Role filtering
  • #3019 - Fix tag population when running NetBox within a path
  • #3022 - Add missing cable termination types to DCIM _choices endpoint
  • #3026 - Tweak prefix/IP filter forms to filter using VRF ID rather than route distinguisher
  • #3027 - Ignore empty local context data when rendering config contexts
  • #3032 - Save assigned tags when creating a new secret

🔄 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/3034 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 4/2/2019 **Status:** ✅ Merged **Merged:** 4/2/2019 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`28331df`](https://github.com/netbox-community/netbox/commit/28331dfd53f8a6f541b43d12b9fac31db23c7548) Post-release version bump - [`332487e`](https://github.com/netbox-community/netbox/commit/332487efcd9143b19ae6aaf03377ae60b8d904dd) API Filtering Documentation Changes - [`0022a5a`](https://github.com/netbox-community/netbox/commit/0022a5a6e2cdb740490eea8beb087cfc063bba91) Merge pull request #2992 from DanSheps/api-documentation-filtering - [`61efe61`](https://github.com/netbox-community/netbox/commit/61efe6102e4eed5aa4f3f5a51be90eae9feeb7c2) Fixes #2207 - [`9292534`](https://github.com/netbox-community/netbox/commit/929253432476058088a75db419ee39aa7d894268) Changelog Updates - [`520af82`](https://github.com/netbox-community/netbox/commit/520af82f051110c7862d9915af2ccfe5d4a55b58) Closes #2924: Add interface type for QSFP28 50GE - [`aab84ba`](https://github.com/netbox-community/netbox/commit/aab84ba6f3777c305df2186568b6031c2ebb766d) Change ID to PK - [`dd7249d`](https://github.com/netbox-community/netbox/commit/dd7249d2ef09a8f09139c228b8186683237ad3ee) Merge pull request #2996 from DanSheps/2207-fix_deterministic_ordering_of_interfaces - [`7edad4e`](https://github.com/netbox-community/netbox/commit/7edad4eba9b5f58deb9ea1af53faee824a6edc38) Add support for configuring use of an SSL connection to Redis. - [`1bf04f2`](https://github.com/netbox-community/netbox/commit/1bf04f2e30abda3b30c4d12a4ee39a53c403efcc) fixes #2936 - device role selection showing duplicate first entry ### 📊 Changes **24 files changed** (+122 additions, -44 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+25 -0) 📝 `README.md` (+4 -4) 📝 `docs/api/overview.md` (+1 -1) 📝 `docs/configuration/optional-settings.md` (+7 -0) 📝 `netbox/dcim/api/serializers.py` (+7 -2) 📝 `netbox/dcim/api/views.py` (+2 -2) 📝 `netbox/dcim/constants.py` (+2 -0) 📝 `netbox/dcim/forms.py` (+0 -1) 📝 `netbox/dcim/managers.py` (+5 -1) 📝 `netbox/extras/api/serializers.py` (+19 -5) 📝 `netbox/extras/api/views.py` (+2 -2) 📝 `netbox/extras/apps.py` (+1 -0) 📝 `netbox/extras/middleware.py` (+2 -2) 📝 `netbox/extras/models.py` (+1 -1) 📝 `netbox/extras/webhooks.py` (+4 -2) 📝 `netbox/extras/webhooks_worker.py` (+3 -1) 📝 `netbox/ipam/api/serializers.py` (+2 -0) 📝 `netbox/ipam/forms.py` (+2 -6) 📝 `netbox/netbox/configuration.example.py` (+1 -0) 📝 `netbox/netbox/settings.py` (+3 -1) _...and 4 more files_ </details> ### 📄 Description ## Enhancements * [#2933](https://github.com/digitalocean/netbox/issues/2933) - Add username to outbound webhook requests * [#3011](https://github.com/digitalocean/netbox/issues/3011) - Add SSL support for django-rq (requires django-rq v1.3.1+) * [#3025](https://github.com/digitalocean/netbox/issues/3025) - Add request ID to outbound webhook requests (for correlating all changes part of a single request) ## Bug Fixes * [#2207](https://github.com/digitalocean/netbox/issues/2207) - Fixes deterministic ordering of interfaces * [#2577](https://github.com/digitalocean/netbox/issues/2577) - Clarification of wording in API regarding filtering * [#2924](https://github.com/digitalocean/netbox/issues/2924) - Add interface type for QSFP28 50GE * [#2936](https://github.com/digitalocean/netbox/issues/2936) - Fix device role selection showing duplicate first entry * [#2998](https://github.com/digitalocean/netbox/issues/2998) - Limit device query to non-racked devices if no rack selected when creating a cable * [#3001](https://github.com/digitalocean/netbox/issues/3001) - Fix API representation of ObjectChange `action` and add `changed_object_type` * [#3014](https://github.com/digitalocean/netbox/issues/3014) - Fixes VM Role filtering * [#3019](https://github.com/digitalocean/netbox/issues/3019) - Fix tag population when running NetBox within a path * [#3022](https://github.com/digitalocean/netbox/issues/3022) - Add missing cable termination types to DCIM `_choices` endpoint * [#3026](https://github.com/digitalocean/netbox/issues/3026) - Tweak prefix/IP filter forms to filter using VRF ID rather than route distinguisher * [#3027](https://github.com/digitalocean/netbox/issues/3027) - Ignore empty local context data when rendering config contexts * [#3032](https://github.com/digitalocean/netbox/issues/3032) - Save assigned tags when creating a new secret --- <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:52 +01:00
adam closed this issue 2025-12-29 22:21:52 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12490