activejob 6.1.4.7 → 6.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/MIT-LICENSE +1 -2
- data/lib/active_job/callbacks.rb +1 -1
- data/lib/active_job/gem_version.rb +2 -2
- data/lib/active_job.rb +1 -1
- metadata +12 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7af862a106f037d52fe4ef3048cd488d46ad96ff4dc29c1c592296f412e41c4c
|
4
|
+
data.tar.gz: 5be5def25edb9b0e692b79aae51515ea4b5d55fc6471a4e81f5f53b047285b5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2bb5c6a24fae1809170e1b7f01be7f67bd7cbe4f9d3b5d28f3ee81dddbfdf6535be3ecd46700b9df652710fadbf38dbbadd4ab6530a3605ca32d482f8660b53
|
7
|
+
data.tar.gz: 4f9b9ec30e43f88ae83ec7c5fac978b58aefa1dd7867fe2b49f169605202d2e385b9da4c5fd49405ef3116854e7731c6fa80b110b556de63c3d27a692df49df0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## Rails 6.1.5 (March 09, 2022) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
1
6
|
## Rails 6.1.4.7 (March 08, 2022) ##
|
2
7
|
|
3
8
|
* No changes.
|
@@ -130,7 +135,7 @@
|
|
130
135
|
end
|
131
136
|
|
132
137
|
`after_enqueue` and `after_perform` callbacks will no longer run if the callback chain is halted.
|
133
|
-
This behaviour is a breaking change and won't take effect until Rails
|
138
|
+
This behaviour is a breaking change and won't take effect until Rails 7.0.
|
134
139
|
To enable this behaviour in your app right now, you can add in your app's configuration file
|
135
140
|
`config.active_job.skip_after_callbacks_if_terminated = true`.
|
136
141
|
|
data/MIT-LICENSE
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Copyright (c) 2014-
|
1
|
+
Copyright (c) 2014-2022 David Heinemeier Hansson
|
2
2
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
4
|
a copy of this software and associated documentation files (the
|
@@ -18,4 +18,3 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
18
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
19
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
20
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
-
|
data/lib/active_job/callbacks.rb
CHANGED
@@ -186,7 +186,7 @@ module ActiveJob
|
|
186
186
|
|
187
187
|
if !self.class.skip_after_callbacks_if_terminated && callbacks.any? { |c| c.kind == :after }
|
188
188
|
ActiveSupport::Deprecation.warn(<<~EOM)
|
189
|
-
In Rails
|
189
|
+
In Rails 7.0, `after_enqueue`/`after_perform` callbacks no longer run if `before_enqueue`/`before_perform` respectively halts with `throw :abort`.
|
190
190
|
To enable this behavior, uncomment the `config.active_job.skip_after_callbacks_if_terminated` config
|
191
191
|
in the new 6.1 framework defaults initializer.
|
192
192
|
EOM
|
data/lib/active_job.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
#--
|
4
|
-
# Copyright (c) 2014-
|
4
|
+
# Copyright (c) 2014-2022 David Heinemeier Hansson
|
5
5
|
#
|
6
6
|
# Permission is hereby granted, free of charge, to any person obtaining
|
7
7
|
# a copy of this software and associated documentation files (the
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activejob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.
|
4
|
+
version: 6.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.1.
|
19
|
+
version: 6.1.5
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.1.
|
26
|
+
version: 6.1.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: globalid
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -99,11 +99,12 @@ licenses:
|
|
99
99
|
- MIT
|
100
100
|
metadata:
|
101
101
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
102
|
-
changelog_uri: https://github.com/rails/rails/blob/v6.1.
|
103
|
-
documentation_uri: https://api.rubyonrails.org/v6.1.
|
102
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.1.5/activejob/CHANGELOG.md
|
103
|
+
documentation_uri: https://api.rubyonrails.org/v6.1.5/
|
104
104
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
105
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.1.
|
106
|
-
|
105
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.1.5/activejob
|
106
|
+
rubygems_mfa_required: 'true'
|
107
|
+
post_install_message:
|
107
108
|
rdoc_options: []
|
108
109
|
require_paths:
|
109
110
|
- lib
|
@@ -118,8 +119,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
118
119
|
- !ruby/object:Gem::Version
|
119
120
|
version: '0'
|
120
121
|
requirements: []
|
121
|
-
rubygems_version: 3.
|
122
|
-
signing_key:
|
122
|
+
rubygems_version: 3.3.7
|
123
|
+
signing_key:
|
123
124
|
specification_version: 4
|
124
125
|
summary: Job framework with pluggable queues.
|
125
126
|
test_files: []
|