[PR #2332] [MERGED] Release v2.4.2 #12357

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

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/2332
Author: @jeremystretch
Created: 8/8/2018
Status: Merged
Merged: 8/8/2018
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 507a023 Post-release version bump
  • f59682a Fixes #2318: ImportError when viewing a report
  • f4485dc Restore reports directory
  • c51c20a Fixes #2319: Extend ChoiceField to properly handle true/false choice keys
  • db71483 Fixes #2321: Allow explicitly setting a null value on nullable ChoiceFields
  • d523919 Fixes #2320: TypeError when dispatching a webhook with a secret key configured
  • f9911bf Added a "view all" link to the changelog panel
  • d5488ca Fixes #2322: Webhooks firing on non-enabled event types
  • 91b5f6d Fixes #2323: DoesNotExist raised when deleting devices or virtual machines
  • cfab9a6 Fixes #2330: Incorrect tab link in VRF changelog view

📊 Changes

14 files changed (+76 additions, -35 deletions)

View changed files

📝 docs/administration/replicating-netbox.md (+8 -0)
netbox/_reports (+0 -1)
📝 netbox/dcim/api/serializers.py (+4 -4)
📝 netbox/dcim/models.py (+11 -2)
📝 netbox/extras/reports.py (+22 -2)
📝 netbox/extras/webhooks.py (+9 -17)
📝 netbox/extras/webhooks_worker.py (+6 -2)
📝 netbox/ipam/api/serializers.py (+1 -1)
📝 netbox/netbox/settings.py (+1 -1)
netbox/reports/__init__.py (+0 -0)
📝 netbox/templates/home.html (+6 -3)
📝 netbox/templates/ipam/vrf.html (+1 -1)
📝 netbox/utilities/api.py (+6 -0)
📝 netbox/virtualization/api/serializers.py (+1 -1)

📄 Description

Bug Fixes

  • #2318 - ImportError when viewing a report
  • #2319 - Extend ChoiceField to properly handle true/false choice keys
  • #2320 - TypeError when dispatching a webhook with a secret key configured
  • #2321 - Allow explicitly setting a null value on nullable ChoiceFields
  • #2322 - Webhooks firing on non-enabled event types
  • #2323 - DoesNotExist raised when deleting devices or virtual machines
  • #2330 - Incorrect tab link in VRF changelog view

🔄 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/2332 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 8/8/2018 **Status:** ✅ Merged **Merged:** 8/8/2018 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`507a023`](https://github.com/netbox-community/netbox/commit/507a023f41115fdefd080130af23d2cfde7a8e1c) Post-release version bump - [`f59682a`](https://github.com/netbox-community/netbox/commit/f59682a7c955baa6b336ebe927d69c26f725ad67) Fixes #2318: ImportError when viewing a report - [`f4485dc`](https://github.com/netbox-community/netbox/commit/f4485dc72add8d4ab6207668286f0b33250450ae) Restore reports directory - [`c51c20a`](https://github.com/netbox-community/netbox/commit/c51c20a301686e589d3c0d2e017f1a0ce2154222) Fixes #2319: Extend ChoiceField to properly handle true/false choice keys - [`db71483`](https://github.com/netbox-community/netbox/commit/db7148350ea6f6602a7dcbedd0e852bf4a65652a) Fixes #2321: Allow explicitly setting a null value on nullable ChoiceFields - [`d523919`](https://github.com/netbox-community/netbox/commit/d5239191fed304b50d6bab0a01f8556a33fde19d) Fixes #2320: TypeError when dispatching a webhook with a secret key configured - [`f9911bf`](https://github.com/netbox-community/netbox/commit/f9911bff0d052571398a32757822613ab10ce2c2) Added a "view all" link to the changelog panel - [`d5488ca`](https://github.com/netbox-community/netbox/commit/d5488ca7da5209fd2cb36e427a938312841971c2) Fixes #2322: Webhooks firing on non-enabled event types - [`91b5f6d`](https://github.com/netbox-community/netbox/commit/91b5f6d79960a8fbaa30affc24a8d553a5dfb093) Fixes #2323: DoesNotExist raised when deleting devices or virtual machines - [`cfab9a6`](https://github.com/netbox-community/netbox/commit/cfab9a6a0a69e9d53403b25715235c45cb3793d0) Fixes #2330: Incorrect tab link in VRF changelog view ### 📊 Changes **14 files changed** (+76 additions, -35 deletions) <details> <summary>View changed files</summary> 📝 `docs/administration/replicating-netbox.md` (+8 -0) ➖ `netbox/_reports` (+0 -1) 📝 `netbox/dcim/api/serializers.py` (+4 -4) 📝 `netbox/dcim/models.py` (+11 -2) 📝 `netbox/extras/reports.py` (+22 -2) 📝 `netbox/extras/webhooks.py` (+9 -17) 📝 `netbox/extras/webhooks_worker.py` (+6 -2) 📝 `netbox/ipam/api/serializers.py` (+1 -1) 📝 `netbox/netbox/settings.py` (+1 -1) ➕ `netbox/reports/__init__.py` (+0 -0) 📝 `netbox/templates/home.html` (+6 -3) 📝 `netbox/templates/ipam/vrf.html` (+1 -1) 📝 `netbox/utilities/api.py` (+6 -0) 📝 `netbox/virtualization/api/serializers.py` (+1 -1) </details> ### 📄 Description ## Bug Fixes * [#2318](https://github.com/digitalocean/netbox/issues/2318) - ImportError when viewing a report * [#2319](https://github.com/digitalocean/netbox/issues/2319) - Extend ChoiceField to properly handle true/false choice keys * [#2320](https://github.com/digitalocean/netbox/issues/2320) - TypeError when dispatching a webhook with a secret key configured * [#2321](https://github.com/digitalocean/netbox/issues/2321) - Allow explicitly setting a null value on nullable ChoiceFields * [#2322](https://github.com/digitalocean/netbox/issues/2322) - Webhooks firing on non-enabled event types * [#2323](https://github.com/digitalocean/netbox/issues/2323) - DoesNotExist raised when deleting devices or virtual machines * [#2330](https://github.com/digitalocean/netbox/issues/2330) - Incorrect tab link in VRF changelog view --- <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:04 +01:00
adam closed this issue 2025-12-29 22:21:04 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12357