From e2d3b879bbc6c0f12a5457d75519d14a072add06 Mon Sep 17 00:00:00 2001 From: Joe Haines Date: Tue, 10 Aug 2021 16:00:34 +0100 Subject: [PATCH 1/4] Fix a possible LocalJumpError See https://github.com/bugsnag/bugsnag-ruby/issues/674 --- lib/bugsnag/integrations/rails/active_job.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bugsnag/integrations/rails/active_job.rb b/lib/bugsnag/integrations/rails/active_job.rb index 703abbe5..f262e63b 100644 --- a/lib/bugsnag/integrations/rails/active_job.rb +++ b/lib/bugsnag/integrations/rails/active_job.rb @@ -35,7 +35,7 @@ def self.included(base) # if we have an integration for this queue adapter already then we should # leave this job alone or we'll end up with duplicate metadata - return block.call if EXISTING_INTEGRATIONS.include?(adapter) + next block.call if EXISTING_INTEGRATIONS.include?(adapter) Bugsnag.configuration.detected_app_type = 'active job' From 98b9c47108e1ae20075a59919b0e5908ecea81d7 Mon Sep 17 00:00:00 2001 From: Joe Haines Date: Tue, 10 Aug 2021 16:04:17 +0100 Subject: [PATCH 2/4] Update changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59f3a300..ad80d4aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog ========= +## v6.22.1 (10 August 2021) + +### Enhancements + +* Fix possible `LocalJumpError` introduced in v6.22.0 + | [#675](https://github.com/bugsnag/bugsnag-ruby/pull/675) + ## v6.22.0 (10 August 2021) ### Enhancements From 34efa1d05d2393388e97c77e8581bcb845a14b9f Mon Sep 17 00:00:00 2001 From: Joe Haines Date: Tue, 10 Aug 2021 16:04:27 +0100 Subject: [PATCH 3/4] Bump version --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index fe675047..261151bf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.22.0 +6.22.1 From 6a3676d05dc0a1695ced6332cd6c468a72a1becf Mon Sep 17 00:00:00 2001 From: Joe Haines Date: Wed, 11 Aug 2021 09:03:06 +0100 Subject: [PATCH 4/4] Update changelog date GitHub issues stopped us releasing this yesterday --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad80d4aa..de2dc42d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Changelog ========= -## v6.22.1 (10 August 2021) +## v6.22.1 (11 August 2021) ### Enhancements