activejob 6.0.3.5 → 6.0.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: 58a72da3fcb4244d6f3259199ab9a6f72a51025bdad59f4ca0afffac41e12174
4
- data.tar.gz: 5cad2273265dfed3486b3312efbd35075fc51c9415f02d92173d43b73f6967c9
3
+ metadata.gz: 93bd0641bc7bbe7d45f4df5a5db36c02635ade79403cdb0e701e88fed3166698
4
+ data.tar.gz: 2ca73570c1157a72b714ad0fc3b5d58355c5f21c05603a1871cf788f4aabbc92
5
5
  SHA512:
6
- metadata.gz: 6e5946a1c8bf9d506c187693cbb0cd89bc189b1a04977f56f2cdf8614f7f215716fb19a65b5275da63261fc5651e88c9b5249e96002b2b8ffe452d5a25df3fc4
7
- data.tar.gz: c747c96eccc633a4a7a0a590ddcb8a3adf6a914a88083e4c81407f463debd00503ce1869f0c73044b6154c52f23c402fe1076014be06132567986aa381919305
6
+ metadata.gz: 06ccaaeff4ba30b5d52dbeda1274d2520ccdbc71d8e31e0ccf846dd71556148865c6228bc422ca975567dc09355f73d1e1277f67ccdaae0c1607a0f97aacccff
7
+ data.tar.gz: 3a132cb37a9f9703992d6af12144f4979a6fdbda4c6a950f4b108de5a7ab9f14c8739b4231825bcc0233ecc06f24da287659c3be07897d03f1f4c2c54c7f5047
data/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## Rails 6.0.4.1 (August 19, 2021) ##
2
+
3
+ * No changes.
4
+
5
+
6
+ ## Rails 6.0.4 (June 15, 2021) ##
7
+
8
+ * No changes.
9
+
10
+
11
+ ## Rails 6.0.3.7 (May 05, 2021) ##
12
+
13
+ * No changes.
14
+
15
+
16
+ ## Rails 6.0.3.6 (March 26, 2021) ##
17
+
18
+ * No changes.
19
+
20
+
1
21
  ## Rails 6.0.3.5 (February 10, 2021) ##
2
22
 
3
23
  * No changes.
data/README.md CHANGED
@@ -109,7 +109,7 @@ The latest version of Active Job can be installed with RubyGems:
109
109
 
110
110
  Source code can be downloaded as part of the Rails project on GitHub:
111
111
 
112
- * https://github.com/rails/rails/tree/master/activejob
112
+ * https://github.com/rails/rails/tree/main/activejob
113
113
 
114
114
  ## License
115
115
 
@@ -85,6 +85,7 @@ module ActiveJob
85
85
  @priority = self.class.priority
86
86
  @executions = 0
87
87
  @exception_executions = {}
88
+ @timezone = Time.zone.try(:name)
88
89
  end
89
90
  ruby2_keywords(:initialize) if respond_to?(:ruby2_keywords, true)
90
91
 
@@ -101,7 +102,7 @@ module ActiveJob
101
102
  "executions" => executions,
102
103
  "exception_executions" => exception_executions,
103
104
  "locale" => I18n.locale.to_s,
104
- "timezone" => Time.zone.try(:name),
105
+ "timezone" => timezone,
105
106
  "enqueued_at" => Time.now.utc.iso8601
106
107
  }
107
108
  end
@@ -9,8 +9,8 @@ module ActiveJob
9
9
  module VERSION
10
10
  MAJOR = 6
11
11
  MINOR = 0
12
- TINY = 3
13
- PRE = "5"
12
+ TINY = 4
13
+ PRE = "1"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
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.0.3.5
4
+ version: 6.0.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: 2021-02-10 00:00:00.000000000 Z
11
+ date: 2021-08-19 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.0.3.5
19
+ version: 6.0.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: 6.0.3.5
26
+ version: 6.0.4.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: globalid
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -95,11 +95,11 @@ licenses:
95
95
  - MIT
96
96
  metadata:
97
97
  bug_tracker_uri: https://github.com/rails/rails/issues
98
- changelog_uri: https://github.com/rails/rails/blob/v6.0.3.5/activejob/CHANGELOG.md
99
- documentation_uri: https://api.rubyonrails.org/v6.0.3.5/
98
+ changelog_uri: https://github.com/rails/rails/blob/v6.0.4.1/activejob/CHANGELOG.md
99
+ documentation_uri: https://api.rubyonrails.org/v6.0.4.1/
100
100
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
101
- source_code_uri: https://github.com/rails/rails/tree/v6.0.3.5/activejob
102
- post_install_message:
101
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.4.1/activejob
102
+ post_install_message:
103
103
  rdoc_options: []
104
104
  require_paths:
105
105
  - lib
@@ -114,8 +114,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
114
  - !ruby/object:Gem::Version
115
115
  version: '0'
116
116
  requirements: []
117
- rubygems_version: 3.0.3
118
- signing_key:
117
+ rubygems_version: 3.2.15
118
+ signing_key:
119
119
  specification_version: 4
120
120
  summary: Job framework with pluggable queues.
121
121
  test_files: []