[PR #18307] [MERGED] Release v4.1.11 #15319

Closed
opened 2025-12-30 00:21:14 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/18307
Author: @jeremystretch
Created: 1/6/2025
Status: Merged
Merged: 1/6/2025
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (8)

  • f03489f Add distinct() to filtering VLANs by assigned interface (#18274)
  • 10748ed Fixes #18222: Include action data from event rule in webhook and custom script data
  • b9abb32 Fixes #18271: Require only encryption OR authentication algorithm when creating an IPSec proposal via REST API
  • e8e3981 Fixes: #18289 - Add 'created' and 'last_updated' fields to ModuleTypeTable (#18292)
  • 40f2253 Update source translation strings
  • c9ee699 Fixes: #18263 - Iterate through a freshly queried set of CableTerminations to find endpoints in update_connected_endpoints (#18264)
  • 67657ef Release v4.1.11
  • ab8fc3d Merge branch 'master' into develop

📊 Changes

17 files changed (+210 additions, -148 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/01-feature_request.yaml (+1 -1)
📝 .github/ISSUE_TEMPLATE/02-bug_report.yaml (+1 -1)
📝 base_requirements.txt (+1 -1)
📝 docs/models/extras/eventrule.md (+13 -1)
📝 docs/release-notes/version-4.1.md (+12 -0)
📝 netbox/dcim/models/cables.py (+4 -0)
📝 netbox/dcim/signals.py (+2 -1)
📝 netbox/dcim/tables/modules.py (+2 -1)
📝 netbox/extras/events.py (+8 -4)
📝 netbox/extras/tests/test_event_rules.py (+13 -3)
📝 netbox/ipam/filtersets.py (+2 -2)
📝 netbox/release.yaml (+2 -2)
📝 netbox/translations/en/LC_MESSAGES/django.po (+9 -9)
📝 netbox/translations/ru/LC_MESSAGES/django.mo (+0 -0)
📝 netbox/translations/ru/LC_MESSAGES/django.po (+130 -114)
📝 netbox/vpn/api/serializers_/crypto.py (+4 -2)
📝 requirements.txt (+6 -6)

📄 Description

Bug Fixes

  • #17771 - Fix duplicate entries appearing on VLAN list when filtering by interface assignment
  • #18222 - Pass event rule action data to webhooks as context data
  • #18263 - Fix recalculation of cable paths when modifying cable terminations via the REST API
  • #18271 - Require only encryption or authentication algorithm when creating an IPSec proposal via the REST API
  • #18289 - Enable ordering modules and module types by created & last updated times

🔄 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/18307 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 1/6/2025 **Status:** ✅ Merged **Merged:** 1/6/2025 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (8) - [`f03489f`](https://github.com/netbox-community/netbox/commit/f03489f58ee6452f9b0c60d84364f0c67c96b41e) Add distinct() to filtering VLANs by assigned interface (#18274) - [`10748ed`](https://github.com/netbox-community/netbox/commit/10748edc3a5e977bea264d5460466e14f01ee508) Fixes #18222: Include action data from event rule in webhook and custom script data - [`b9abb32`](https://github.com/netbox-community/netbox/commit/b9abb3200c3d637e86af126e3ca70da1e362b6c7) Fixes #18271: Require only encryption OR authentication algorithm when creating an IPSec proposal via REST API - [`e8e3981`](https://github.com/netbox-community/netbox/commit/e8e3981da53fa5cdfe82a742c8d15e31679a3e1f) Fixes: #18289 - Add 'created' and 'last_updated' fields to ModuleTypeTable (#18292) - [`40f2253`](https://github.com/netbox-community/netbox/commit/40f22533d164c49dac5443e6d7f73758190f1462) Update source translation strings - [`c9ee699`](https://github.com/netbox-community/netbox/commit/c9ee699633a05c3ce2e2735b55cad7fb48822ea1) Fixes: #18263 - Iterate through a freshly queried set of CableTerminations to find endpoints in update_connected_endpoints (#18264) - [`67657ef`](https://github.com/netbox-community/netbox/commit/67657efe1c39f94592af249dd0b7830c0cb3eaf9) Release v4.1.11 - [`ab8fc3d`](https://github.com/netbox-community/netbox/commit/ab8fc3de5e6880923744531af44bec658a716f20) Merge branch 'master' into develop ### 📊 Changes **17 files changed** (+210 additions, -148 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/01-feature_request.yaml` (+1 -1) 📝 `.github/ISSUE_TEMPLATE/02-bug_report.yaml` (+1 -1) 📝 `base_requirements.txt` (+1 -1) 📝 `docs/models/extras/eventrule.md` (+13 -1) 📝 `docs/release-notes/version-4.1.md` (+12 -0) 📝 `netbox/dcim/models/cables.py` (+4 -0) 📝 `netbox/dcim/signals.py` (+2 -1) 📝 `netbox/dcim/tables/modules.py` (+2 -1) 📝 `netbox/extras/events.py` (+8 -4) 📝 `netbox/extras/tests/test_event_rules.py` (+13 -3) 📝 `netbox/ipam/filtersets.py` (+2 -2) 📝 `netbox/release.yaml` (+2 -2) 📝 `netbox/translations/en/LC_MESSAGES/django.po` (+9 -9) 📝 `netbox/translations/ru/LC_MESSAGES/django.mo` (+0 -0) 📝 `netbox/translations/ru/LC_MESSAGES/django.po` (+130 -114) 📝 `netbox/vpn/api/serializers_/crypto.py` (+4 -2) 📝 `requirements.txt` (+6 -6) </details> ### 📄 Description ### Bug Fixes * [#17771](https://github.com/netbox-community/netbox/issues/17771) - Fix duplicate entries appearing on VLAN list when filtering by interface assignment * [#18222](https://github.com/netbox-community/netbox/issues/18222) - Pass event rule action data to webhooks as context data * [#18263](https://github.com/netbox-community/netbox/issues/18263) - Fix recalculation of cable paths when modifying cable terminations via the REST API * [#18271](https://github.com/netbox-community/netbox/issues/18271) - Require only encryption _or_ authentication algorithm when creating an IPSec proposal via the REST API * [#18289](https://github.com/netbox-community/netbox/issues/18289) - Enable ordering modules and module types by created & last updated times --- <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-30 00:21:14 +01:00
adam closed this issue 2025-12-30 00:21:14 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#15319