[PR #15423] [MERGED] Release v3.7.4 #14593

Closed
opened 2025-12-29 23:25:23 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/15423
Author: @jeremystretch
Created: 3/14/2024
Status: Merged
Merged: 3/14/2024
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • d7e7137 PRVB
  • c21ec21 Delete obsolete file
  • 17ec264 added display on virtual disk api #15241
  • edb7d24 Added installed_module on NestedModuleBaySerializer (#15245)
  • 55ef24d Fixes #15316: Fix selection of 3DES encryption for IKE & IPSec proposals
  • 8afbb44 15232 fix inventory item template permission
  • c45acf0 Fixes: Use systemctl enable --now shortcut in docs #15249
  • bdcf4c4 Fixes #15220: Move IP mask validation logic from form to model
  • 6629c94 Closes #15297: Linkify platform column in device & virtual machine tables
  • 8bb49d2 Closes #15291: Add tunnel termination buttons to VM interfaces table

📊 Changes

31 files changed (+148 additions, -78 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+3 -2)
📝 .github/ISSUE_TEMPLATE/feature_request.yaml (+1 -1)
📝 .github/workflows/ci.yml (+1 -1)
📝 base_requirements.txt (+1 -1)
📝 contrib/generated_schema.json (+3 -0)
📝 docs/installation/1-postgresql.md (+1 -2)
📝 docs/installation/2-redis.md (+1 -2)
📝 docs/installation/4-gunicorn.md (+1 -2)
📝 docs/release-notes/version-3.7.md (+25 -0)
📝 netbox/dcim/api/nested_serializers.py (+2 -2)
📝 netbox/dcim/api/serializers.py (+3 -4)
📝 netbox/dcim/choices.py (+6 -0)
📝 netbox/dcim/models/devices.py (+4 -2)
📝 netbox/dcim/tables/devices.py (+5 -1)
📝 netbox/dcim/tests/test_api.py (+1 -1)
📝 netbox/dcim/views.py (+1 -1)
📝 netbox/extras/graphql/mixins.py (+1 -0)
📝 netbox/extras/models/configs.py (+3 -3)
📝 netbox/ipam/forms/model_forms.py (+0 -14)
📝 netbox/ipam/graphql/types.py (+2 -1)

...and 11 more files

📄 Description

Enhancements

  • #14206 - Add additional FibreChannel SFP+ interface types
  • #14366 - Enable custom links for config contexts & templates
  • #15291 - Add tunnel termination buttons to VM interfaces table
  • #15297 - Linkify platform column in device & virtual machine tables

Bug Fixes

  • #13722 - Fix range expansion for comma-separated numerical values
  • #14832 - Enable querying IP addresses for an FHRP group via GraphQL
  • #15220 - Fix validation check when bulk editing the mask length of IP addresses
  • #15232 - Permit user with sufficient permissions to assign an inventory item to a device type
  • #15241 - Restore missing display field on VirtualDisk serialization in REST API
  • #15243 - Correct representation of installed module when listing module bays using REST API brief mode
  • #15316 - Fix selection of 3DES encryption for IKE & IPSec proposals
  • #15322 - Add description field to YAML export for device & module types
  • #15336 - Correct label for recurring scheduled jobs
  • #15347 - Fix querying virtual machine contacts via GraphQL
  • #15356 - Fix assignment of front & rear images to device types via REST API

🔄 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/15423 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 3/14/2024 **Status:** ✅ Merged **Merged:** 3/14/2024 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`d7e7137`](https://github.com/netbox-community/netbox/commit/d7e7137582bfc8b1299b57e52896a88abaf344aa) PRVB - [`c21ec21`](https://github.com/netbox-community/netbox/commit/c21ec2139d5f675777b9dcfde258398525e02fe9) Delete obsolete file - [`17ec264`](https://github.com/netbox-community/netbox/commit/17ec264f3a0936e1157585133b075cac27f47647) added display on virtual disk api #15241 - [`edb7d24`](https://github.com/netbox-community/netbox/commit/edb7d24b458b60fa82b16bc37e79f37821e3685f) Added installed_module on NestedModuleBaySerializer (#15245) - [`55ef24d`](https://github.com/netbox-community/netbox/commit/55ef24d56d6d45fa40f766d22ca8f21ed75b2558) Fixes #15316: Fix selection of 3DES encryption for IKE & IPSec proposals - [`8afbb44`](https://github.com/netbox-community/netbox/commit/8afbb4421bc0f58734ad44dca8052652ae73802a) 15232 fix inventory item template permission - [`c45acf0`](https://github.com/netbox-community/netbox/commit/c45acf0a7c38cd8d04e38895baaf8765b53a5e32) Fixes: Use systemctl enable --now shortcut in docs #15249 - [`bdcf4c4`](https://github.com/netbox-community/netbox/commit/bdcf4c4154bcfc73f3c09c7f8cbc558af22e125c) Fixes #15220: Move IP mask validation logic from form to model - [`6629c94`](https://github.com/netbox-community/netbox/commit/6629c941483704c5092bc20d564ad9527a83908d) Closes #15297: Linkify platform column in device & virtual machine tables - [`8bb49d2`](https://github.com/netbox-community/netbox/commit/8bb49d229692fbc9e33edb4733a0d1d20f82ff37) Closes #15291: Add tunnel termination buttons to VM interfaces table ### 📊 Changes **31 files changed** (+148 additions, -78 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+3 -2) 📝 `.github/ISSUE_TEMPLATE/feature_request.yaml` (+1 -1) 📝 `.github/workflows/ci.yml` (+1 -1) 📝 `base_requirements.txt` (+1 -1) 📝 `contrib/generated_schema.json` (+3 -0) 📝 `docs/installation/1-postgresql.md` (+1 -2) 📝 `docs/installation/2-redis.md` (+1 -2) 📝 `docs/installation/4-gunicorn.md` (+1 -2) 📝 `docs/release-notes/version-3.7.md` (+25 -0) 📝 `netbox/dcim/api/nested_serializers.py` (+2 -2) 📝 `netbox/dcim/api/serializers.py` (+3 -4) 📝 `netbox/dcim/choices.py` (+6 -0) 📝 `netbox/dcim/models/devices.py` (+4 -2) 📝 `netbox/dcim/tables/devices.py` (+5 -1) 📝 `netbox/dcim/tests/test_api.py` (+1 -1) 📝 `netbox/dcim/views.py` (+1 -1) 📝 `netbox/extras/graphql/mixins.py` (+1 -0) 📝 `netbox/extras/models/configs.py` (+3 -3) 📝 `netbox/ipam/forms/model_forms.py` (+0 -14) 📝 `netbox/ipam/graphql/types.py` (+2 -1) _...and 11 more files_ </details> ### 📄 Description ### Enhancements * [#14206](https://github.com/netbox-community/netbox/issues/14206) - Add additional FibreChannel SFP+ interface types * [#14366](https://github.com/netbox-community/netbox/issues/14366) - Enable custom links for config contexts & templates * [#15291](https://github.com/netbox-community/netbox/issues/15291) - Add tunnel termination buttons to VM interfaces table * [#15297](https://github.com/netbox-community/netbox/issues/15297) - Linkify platform column in device & virtual machine tables ### Bug Fixes * [#13722](https://github.com/netbox-community/netbox/issues/13722) - Fix range expansion for comma-separated numerical values * [#14832](https://github.com/netbox-community/netbox/issues/14832) - Enable querying IP addresses for an FHRP group via GraphQL * [#15220](https://github.com/netbox-community/netbox/issues/15220) - Fix validation check when bulk editing the mask length of IP addresses * [#15232](https://github.com/netbox-community/netbox/issues/15232) - Permit user with sufficient permissions to assign an inventory item to a device type * [#15241](https://github.com/netbox-community/netbox/issues/15241) - Restore missing `display` field on VirtualDisk serialization in REST API * [#15243](https://github.com/netbox-community/netbox/issues/15243) - Correct representation of installed module when listing module bays using REST API brief mode * [#15316](https://github.com/netbox-community/netbox/issues/15316) - Fix selection of 3DES encryption for IKE & IPSec proposals * [#15322](https://github.com/netbox-community/netbox/issues/15322) - Add description field to YAML export for device & module types * [#15336](https://github.com/netbox-community/netbox/issues/15336) - Correct label for recurring scheduled jobs * [#15347](https://github.com/netbox-community/netbox/issues/15347) - Fix querying virtual machine contacts via GraphQL * [#15356](https://github.com/netbox-community/netbox/issues/15356) - Fix assignment of front & rear images to device types via REST API --- <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 23:25:23 +01:00
adam closed this issue 2025-12-29 23:25:23 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#14593