From 3fcadaa60ef959e83d0d766a6d2acdbfb0dae3b4 Mon Sep 17 00:00:00 2001 From: Chris Ashton Date: Fri, 20 May 2022 09:56:29 +0100 Subject: [PATCH 1/2] Fix gem name This was accidentally given the wrong name in the warning message. --- lib/govuk_app_config/govuk_error.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/govuk_app_config/govuk_error.rb b/lib/govuk_app_config/govuk_error.rb index d3d579c1..e1d98076 100644 --- a/lib/govuk_app_config/govuk_error.rb +++ b/lib/govuk_app_config/govuk_error.rb @@ -35,7 +35,7 @@ def self.configure raise GovukError::AlreadyInitialised if is_configured? if defined?(Sidekiq) && !defined?(Sentry::Sidekiq) - warn "Warning: GovukError is not configured to track Sidekiq errors, install the sidekiq-sentry gem to track them." + warn "Warning: GovukError is not configured to track Sidekiq errors, install the sentry-sidekiq gem to track them." end Sentry.init do |sentry_config| From bf8434f6980893ed10230f0e565fc6d82436d297 Mon Sep 17 00:00:00 2001 From: ChrisBAshton Date: Fri, 20 May 2022 10:18:51 +0100 Subject: [PATCH 2/2] Bump to 4.6.1 --- 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 b73dd4ad..7b50d9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 4.6.1 + +- Fixes warning message to refer to correct Sidekiq gem dependency name ([#243](https://github.com/alphagov/govuk_app_config/pull/243)). + # 4.6.0 - Add a warning for apps using GovukError with Sidekiq that don't have sentry-sidekiq installed ([#241](https://github.com/alphagov/govuk_app_config/pull/241)). diff --git a/lib/govuk_app_config/version.rb b/lib/govuk_app_config/version.rb index 69dd1f52..3801ad59 100644 --- a/lib/govuk_app_config/version.rb +++ b/lib/govuk_app_config/version.rb @@ -1,3 +1,3 @@ module GovukAppConfig - VERSION = "4.6.0".freeze + VERSION = "4.6.1".freeze end