activejob 7.1.3.4 → 7.1.4.1

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: c13b1ea6ba1e35ea17b2a2051b76b2d12912e746120f5c85170839cb43432e1f
4
- data.tar.gz: fd72f8bf538fe535a8cc8faa22671392789459265618228cbeda8cee73cc0cf5
3
+ metadata.gz: 919add19da344f3b8bd079787881220dc91b90510de5f801b422bb157fa87d63
4
+ data.tar.gz: 0ee24f05893b7d6f1a789aa56c064290a4d0fec4dea56fc8cde727476cc82cb0
5
5
  SHA512:
6
- metadata.gz: 0bc47ff3a65ba512ce75d6f33c9bcf59319eb3e749753f961cf4073b8785d48816f7a28d373675f4d710886b5e967474ff9f543f6ec0e697418397990f09ac92
7
- data.tar.gz: e69b622ce5699395aab14669d9afb5116743d6186530031c30a907c52ad8a622e08c256458d417af5fbeeb5a61e6a4c6a9fd4731ba38cb836e1b159004de75ea
6
+ metadata.gz: 25861f6eae1993757a69cc8b2fea266356a9e578c290b99f169cc2d424f9ae962a74915555162d48ba3f09f8c083b0a3fa73b6ee74e19100c657fc110d70e912
7
+ data.tar.gz: 928253f6352fa8056f3405242e694b7c23c961d3b2fafc46f57f83f098e6c42d90a971d19c50a971d30c0334dfaacfd7622cd4569f9f77a31e42bcb1c4e8f376
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## Rails 7.1.4.1 (October 15, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 7.1.4 (August 22, 2024) ##
7
+
8
+ * Register autoload for `ActiveJob::Arguments`.
9
+
10
+ *Rafael Mendonça França*
11
+
12
+
1
13
  ## Rails 7.1.3.4 (June 04, 2024) ##
2
14
 
3
15
  * No changes.
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "active_job/arguments"
4
-
5
3
  module ActiveJob
6
4
  # Provides behavior for enqueuing jobs.
7
5
 
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "active_support/rescuable"
4
- require "active_job/arguments"
5
4
 
6
5
  module ActiveJob
7
6
  # = Active Job \Execution
@@ -9,8 +9,8 @@ module ActiveJob
9
9
  module VERSION
10
10
  MAJOR = 7
11
11
  MINOR = 1
12
- TINY = 3
13
- PRE = "4"
12
+ TINY = 4
13
+ PRE = "1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
data/lib/active_job.rb CHANGED
@@ -30,12 +30,15 @@ require "active_job/deprecator"
30
30
  require "global_id"
31
31
 
32
32
  # :markup: markdown
33
- # :include: activejob/README.md
33
+ # :include: ../README.md
34
34
  module ActiveJob
35
35
  extend ActiveSupport::Autoload
36
36
 
37
37
  autoload :Base
38
38
  autoload :QueueAdapters
39
+ autoload :Arguments
40
+ autoload :DeserializationError, "active_job/arguments"
41
+ autoload :SerializationError, "active_job/arguments"
39
42
 
40
43
  eager_autoload do
41
44
  autoload :Serializers
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: 7.1.3.4
4
+ version: 7.1.4.1
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: 2024-06-04 00:00:00.000000000 Z
11
+ date: 2024-10-15 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: 7.1.3.4
19
+ version: 7.1.4.1
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: 7.1.3.4
26
+ version: 7.1.4.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: globalid
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -102,12 +102,12 @@ licenses:
102
102
  - MIT
103
103
  metadata:
104
104
  bug_tracker_uri: https://github.com/rails/rails/issues
105
- changelog_uri: https://github.com/rails/rails/blob/v7.1.3.4/activejob/CHANGELOG.md
106
- documentation_uri: https://api.rubyonrails.org/v7.1.3.4/
105
+ changelog_uri: https://github.com/rails/rails/blob/v7.1.4.1/activejob/CHANGELOG.md
106
+ documentation_uri: https://api.rubyonrails.org/v7.1.4.1/
107
107
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
108
- source_code_uri: https://github.com/rails/rails/tree/v7.1.3.4/activejob
108
+ source_code_uri: https://github.com/rails/rails/tree/v7.1.4.1/activejob
109
109
  rubygems_mfa_required: 'true'
110
- post_install_message:
110
+ post_install_message:
111
111
  rdoc_options: []
112
112
  require_paths:
113
113
  - lib
@@ -122,8 +122,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 3.3.27
126
- signing_key:
125
+ rubygems_version: 3.5.16
126
+ signing_key:
127
127
  specification_version: 4
128
128
  summary: Job framework with pluggable queues.
129
129
  test_files: []