activejob 6.1.4.7 → 6.1.6

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: aba0689728ed5e18e29d2a9ec94adcee95be2e9c592dfc28e5fa997c993e4838
4
+ data.tar.gz: 1e05515106a88bf83f153646deca0a15e7dd80c76923abf1a8a01ffe9c89745f
5
5
  SHA512:
6
- metadata.gz: 5a78cc6a8d0225e5d277a91fe27bf5b64400e2c2cdb5fa14608b2e94bda2f46423419eb108b2c6b36903528cd882c7ed0c2776c2ddd046dbe76bae4ac3bed134
7
- data.tar.gz: 7bb40e2cfd70261578b6334984bb2353e33e712099f5e1269ecb1d0c0f54eb771f49f3f0da3f273db61405c39680180936d470118cf65e886731036661251332
6
+ metadata.gz: c7d0c78e869461b7bb1ab9bbce1dd655d1538e3da14808a1d37036868fb828532cb987a6848ec95a93f99b4514564cd8adb1722d4d8a50de7588c6e9b77f40ca
7
+ data.tar.gz: b51fe0ca5031c5a3245f0cec1b584fde53d742f5e6278f43406642649fb2fedbe040d4d5c229fdb59a411d4990196f34c09dc117ee8d1cb2090229e2da955d35
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## Rails 6.1.5.1 (April 26, 2022) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.1.5 (March 09, 2022) ##
7
+
8
+ * No changes.
9
+
10
+
1
11
  ## Rails 6.1.4.7 (March 08, 2022) ##
2
12
 
3
13
  * No changes.
@@ -130,7 +140,7 @@
130
140
  end
131
141
 
132
142
  `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.
143
+ This behaviour is a breaking change and won't take effect until Rails 7.0.
134
144
  To enable this behaviour in your app right now, you can add in your app's configuration file
135
145
  `config.active_job.skip_after_callbacks_if_terminated = true`.
136
146
 
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 = 6
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.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-08 00:00:00.000000000 Z
11
+ date: 2022-05-09 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.6
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.6
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: globalid
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -99,10 +99,11 @@ 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.6/activejob/CHANGELOG.md
103
+ documentation_uri: https://api.rubyonrails.org/v6.1.6/
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
105
+ source_code_uri: https://github.com/rails/rails/tree/v6.1.6/activejob
106
+ rubygems_mfa_required: 'true'
106
107
  post_install_message:
107
108
  rdoc_options: []
108
109
  require_paths:
@@ -118,7 +119,7 @@ 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
+ rubygems_version: 3.3.7
122
123
  signing_key:
123
124
  specification_version: 4
124
125
  summary: Job framework with pluggable queues.