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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f18d43cdf849a9bde25d8ed6fab34042625e60d5b8a2fb76a7a03a189279063
4
- data.tar.gz: 1faadde1713824aa50a83bc43f080e88b96e828f532f286726bfd036d08b4b13
3
+ metadata.gz: 7af862a106f037d52fe4ef3048cd488d46ad96ff4dc29c1c592296f412e41c4c
4
+ data.tar.gz: 5be5def25edb9b0e692b79aae51515ea4b5d55fc6471a4e81f5f53b047285b5a
5
5
  SHA512:
6
- metadata.gz: 5a78cc6a8d0225e5d277a91fe27bf5b64400e2c2cdb5fa14608b2e94bda2f46423419eb108b2c6b36903528cd882c7ed0c2776c2ddd046dbe76bae4ac3bed134
7
- data.tar.gz: 7bb40e2cfd70261578b6334984bb2353e33e712099f5e1269ecb1d0c0f54eb771f49f3f0da3f273db61405c39680180936d470118cf65e886731036661251332
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 6.2.
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-2020 David Heinemeier Hansson
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
-
@@ -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 6.2, `after_enqueue`/`after_perform` callbacks no longer run if `before_enqueue`/`before_perform` respectively halts with `throw :abort`.
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
@@ -9,8 +9,8 @@ module ActiveJob
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 1
12
- TINY = 4
13
- PRE = "7"
12
+ TINY = 5
13
+ PRE = nil
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
data/lib/active_job.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  #--
4
- # Copyright (c) 2014-2020 David Heinemeier Hansson
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.7
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-08 00:00:00.000000000 Z
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.4.7
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.4.7
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.4.7/activejob/CHANGELOG.md
103
- documentation_uri: https://api.rubyonrails.org/v6.1.4.7/
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.4.7/activejob
106
- post_install_message:
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.1.6
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: []