From 3291fa3630c456450f8c6a9b771f77c293d036cd Mon Sep 17 00:00:00 2001 From: Aidan Haran Date: Sat, 16 Sep 2017 19:59:32 +0100 Subject: Allow for custom handling of exceptions that are discarded --- activejob/CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 77dfdefc05..32bf5a4b50 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,3 +1,19 @@ +* Allow block to be passed to ActiveJob::Base.discard_on to allow custom handling of discard jobs. + + Example: + + class RemoteServiceJob < ActiveJob::Base + discard_on(CustomAppException) do |job, exception| + ExceptionNotifier.caught(exception) + end + + def perform(*args) + # Might raise CustomAppException for something domain specific + end + end + + *Aidan Haran* + * Change logging instrumentation to log errors when a job raises an exception. Fixes #26848. -- cgit v1.2.3 From cdb15ba7cd28a432b21821c2758c6c9d6970791c Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Wed, 24 Jan 2018 09:24:49 +0900 Subject: Fix CHANGELOG format [ci skip] * Add backticks * Expand tabs * Fix indentation --- activejob/CHANGELOG.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 0867ba4e9b..ff8375e690 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,11 +1,11 @@ -* Allow block to be passed to ActiveJob::Base.discard_on to allow custom handling of discard jobs. +* Allow block to be passed to `ActiveJob::Base.discard_on` to allow custom handling of discard jobs. Example: class RemoteServiceJob < ActiveJob::Base - discard_on(CustomAppException) do |job, exception| - ExceptionNotifier.caught(exception) - end + discard_on(CustomAppException) do |job, exception| + ExceptionNotifier.caught(exception) + end def perform(*args) # Might raise CustomAppException for something domain specific @@ -14,6 +14,7 @@ *Aidan Haran* + ## Rails 5.2.0.beta2 (November 28, 2017) ## * No changes. -- cgit v1.2.3 From 1c383df324fdf0b68b3f54a649eb7d2a4f55bcb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Tue, 30 Jan 2018 18:51:17 -0500 Subject: Start Rails 6.0 development!!! :tada::tada::tada: --- activejob/CHANGELOG.md | 28 +--------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index ff8375e690..ec99b5d975 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,29 +1,3 @@ -* Allow block to be passed to `ActiveJob::Base.discard_on` to allow custom handling of discard jobs. - Example: - class RemoteServiceJob < ActiveJob::Base - discard_on(CustomAppException) do |job, exception| - ExceptionNotifier.caught(exception) - end - - def perform(*args) - # Might raise CustomAppException for something domain specific - end - end - - *Aidan Haran* - - -## Rails 5.2.0.beta2 (November 28, 2017) ## - -* No changes. - - -## Rails 5.2.0.beta1 (November 27, 2017) ## - -* Support redis-rb 4.0. - - *Jeremy Daer* - -Please check [5-1-stable](https://github.com/rails/rails/blob/5-1-stable/activejob/CHANGELOG.md) for previous changes. +Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/activejob/CHANGELOG.md) for previous changes. -- cgit v1.2.3 From 25a14bf2bde90224debee343ebfbb882c02b9588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Wed, 14 Feb 2018 13:13:51 -0500 Subject: Add CHANGELOG entry --- activejob/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index ec99b5d975..e4768eb3d4 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,3 +1,6 @@ +* Add support to define custom argument serializers. + + *Evgenii Pecherkin*, *Rafael Mendonça França* Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/activejob/CHANGELOG.md) for previous changes. -- cgit v1.2.3 From d4eb0dc89ee6b476e2e10869dc282a96f956c6c7 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Sat, 17 Feb 2018 13:02:18 -0800 Subject: Rails 6 requires Ruby 2.4.1+ Skipping over 2.4.0 to sidestep the `"symbol_from_string".to_sym.dup` bug. References #32028 --- activejob/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index e4768eb3d4..097433c3d0 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,3 +1,9 @@ +## Rails 6.0.0.alpha (Unreleased) ## + +* Rails 6 requires Ruby 2.4.1 or newer. + + *Jeremy Daer* + * Add support to define custom argument serializers. *Evgenii Pecherkin*, *Rafael Mendonça França* -- cgit v1.2.3 From a9d1167b1fdae6f5f5496738b3e7d1e05949dcd0 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Thu, 22 Feb 2018 14:14:42 +0000 Subject: Add support for timezones to Active Job Record what was the current timezone in effect when the job was enqueued and then restore when the job is executed in same way that the current locale is recorded and restored. --- activejob/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'activejob/CHANGELOG.md') diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md index 097433c3d0..c6a3ad8ade 100644 --- a/activejob/CHANGELOG.md +++ b/activejob/CHANGELOG.md @@ -1,5 +1,13 @@ ## Rails 6.0.0.alpha (Unreleased) ## +* Add support for timezones to Active Job + + Record what was the current timezone in effect when the job was + enqueued and then restore when the job is executed in same way + that the current locale is recorded and restored. + + *Andrew White* + * Rails 6 requires Ruby 2.4.1 or newer. *Jeremy Daer* -- cgit v1.2.3