From ebffe7d57f471129a2609e9fb7dd1a44ba9076b6 Mon Sep 17 00:00:00 2001 From: Chris Banks Date: Tue, 13 Feb 2024 14:56:25 +0000 Subject: [PATCH 1/2] Don't send SignalExceptions to Sentry. These don't represent app issues so let's not log them to Sentry. Some teams have all their Sentry events going to Slack and these have been making the noise even worse than it need be. --- lib/govuk_app_config/govuk_error/configuration.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/govuk_app_config/govuk_error/configuration.rb b/lib/govuk_app_config/govuk_error/configuration.rb index 6224b96..be4d5d5 100644 --- a/lib/govuk_app_config/govuk_error/configuration.rb +++ b/lib/govuk_app_config/govuk_error/configuration.rb @@ -45,6 +45,7 @@ def set_up_defaults "Sinatra::NotFound", "Slimmer::IntermittentRetrievalError", "Sidekiq::JobRetry::Skip", + "SignalException", ] # This will exclude exceptions that are triggered by one of the ignored From 370fb15357e1903cfd20752387f14dae3c55683e Mon Sep 17 00:00:00 2001 From: Chris Banks Date: Tue, 13 Feb 2024 15:04:31 +0000 Subject: [PATCH 2/2] Cut 9.9.1 release. --- CHANGELOG.md | 4 ++++ lib/govuk_app_config/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06acf84..960b7cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 9.9.1 + +* Stop sending SignalExceptions to Sentry by default. + # 9.9.0 * Drop support for Ruby 3.0. The minimum required Ruby version is now 3.1.4. diff --git a/lib/govuk_app_config/version.rb b/lib/govuk_app_config/version.rb index ae6a559..680b18f 100644 --- a/lib/govuk_app_config/version.rb +++ b/lib/govuk_app_config/version.rb @@ -1,3 +1,3 @@ module GovukAppConfig - VERSION = "9.9.0".freeze + VERSION = "9.9.1".freeze end