aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/CHANGELOG.md')
-rw-r--r--activejob/CHANGELOG.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md
index 39503caeea..585ade7229 100644
--- a/activejob/CHANGELOG.md
+++ b/activejob/CHANGELOG.md
@@ -1,6 +1,10 @@
## Rails 5.1.0.alpha ##
-* Added declarative exception handling via ActiveJob::Base.retry_on and ActiveJob::Base.discard_on.
+* Yield the job instance so you have access to things like `job.arguments` on the custom logic after retries fail.
+
+ *DHH*
+
+* Added declarative exception handling via `ActiveJob::Base.retry_on` and `ActiveJob::Base.discard_on`.
Examples: