cloudtasker 0.12.rc11 → 0.12.0

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: 1c7677889e31eccaadb3cf019f168e2d7133f10682379d0c2ccf1987da450105
4
- data.tar.gz: 66ea1098cfbfdc9e5261dba0d6d033e44c8d84ee7623c464fc3bccd3999e708e
3
+ metadata.gz: c1ddbb417da7795762b05246c8f6c66331632e28fb1dc4aac95882eb1d592a91
4
+ data.tar.gz: 4e392625eab9dd00201fe9b4f0590137afb1887472a0a0c1e3df88d836743f51
5
5
  SHA512:
6
- metadata.gz: b7ccd9a1e2950d57f51dad86c847373c29caf753b092711cc9be167a8574cdaaec7eeff99dfe08fc3c0e29c4af1a7a21b04e92f36fcc6769b9e3b8f1561c6231
7
- data.tar.gz: 7fc85d30cab6c80e8e64afa3285a50dfafb47f66dc214d228c758b7e19481239cf5900fad3bbbd29c3220658529eeeb106f12daf9e10f52a10f4d1bb10864354
6
+ metadata.gz: 7b75bac785eb416cc982d95dc4144c3accc4b1e9dde1256ba163a7cfc3adef7fde5f1f91af06e81b143b7a97d83a3a2e7269b3f6ae98b3e603496f3e10149581
7
+ data.tar.gz: 1452b8478277be45e391856c05c333c597f8dc33bbbef5416c9b154f56db0f73f8400be1220ee4bb1b349709e46cc66909c72c853c768284c1946bdf34fa394a
data/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## Latest RC [v0.12.rc11](https://github.com/keypup-io/cloudtasker/tree/v0.12.rc11) (2021-06-26)
3
+ ## [v0.12.0](https://github.com/keypup-io/cloudtasker/tree/v0.12.0) (2021-08-19)
4
4
 
5
- [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.11.0...v0.12.rc11)
5
+ [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.11.0...v0.12.0)
6
6
 
7
7
  **Improvements:**
8
8
  - ActiveJob: do not double log errors (ActiveJob has its own error logging)
data/README.md CHANGED
@@ -365,7 +365,7 @@ Cloudtasker.configure do |config|
365
365
  # This option can also be configured on a per worker basis via
366
366
  # the cloudtasker_options directive.
367
367
  #
368
- # Supported since: v0.12.rc8
368
+ # Supported since: v0.12.0
369
369
  #
370
370
  # Default: 600 seconds (10 minutes)
371
371
  #
@@ -382,7 +382,7 @@ Cloudtasker.configure do |config|
382
382
  #
383
383
  # Note: the worker argument might be nil, such as when InvalidWorkerError is raised.
384
384
  #
385
- # Supported since: v0.12.rc11
385
+ # Supported since: v0.12.0
386
386
  #
387
387
  # Default: no operation
388
388
  #
@@ -395,7 +395,7 @@ Cloudtasker.configure do |config|
395
395
  # This is useful when you need to apply general exception handling, such
396
396
  # logging specific messages/context when a job dies.
397
397
  #
398
- # Supported since: v0.12.rc11
398
+ # Supported since: v0.12.0
399
399
  #
400
400
  # Default: no operation
401
401
  #
@@ -709,7 +709,7 @@ end
709
709
  ```
710
710
 
711
711
  ### Global callbacks
712
- **Supported since**: `0.12.rc11`
712
+ **Supported since**: `0.12.0`
713
713
 
714
714
  If you need to apply general exception handling logic to your workers you can specify `on_error` and `on_dead` hooks in the Cloudtasker configuration.
715
715
 
@@ -790,7 +790,7 @@ end
790
790
  ```
791
791
 
792
792
  ### Dispatch deadline
793
- **Supported since**: `0.12.rc8`
793
+ **Supported since**: `0.12.0`
794
794
 
795
795
  By default Cloud Tasks will automatically timeout your jobs after 10 minutes, independently of your server HTTP timeout configuration.
796
796
 
data/docs/BATCH_JOBS.md CHANGED
@@ -48,7 +48,7 @@ end
48
48
  ```
49
49
 
50
50
  ## Example: Expanding the parent batch
51
- **Note**: `parent_batch` is available since `0.12.rc10`
51
+ **Note**: `parent_batch` is available since `0.12.0`
52
52
 
53
53
  ```ruby
54
54
  # All the jobs will be attached to the top parent batch.
@@ -123,7 +123,7 @@ def on_batch_node_complete(_child_job)
123
123
  end
124
124
  ```
125
125
 
126
- **Since:** `v0.12.rc5`
126
+ **Since:** `v0.12.0`
127
127
  By default the `progress` method only considers the direct child jobs to evaluate the batch progress. You can pass `depth: somenumber` to the `progress` method to calculate the actual batch progress in a more granular way. Be careful however that this method recursively calculates progress on the sub-batches and is therefore expensive.
128
128
 
129
129
  E.g.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.rc11)
4
+ cloudtasker (0.12.0)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -72,31 +72,31 @@ GEM
72
72
  minitest (>= 5.1)
73
73
  tzinfo (~> 2.0)
74
74
  zeitwerk (~> 2.3)
75
- addressable (2.7.0)
75
+ addressable (2.8.0)
76
76
  public_suffix (>= 2.0.2, < 5.0)
77
- appraisal (2.4.0)
77
+ appraisal (2.4.1)
78
78
  bundler
79
79
  rake
80
80
  thor (>= 0.14.0)
81
81
  ast (2.4.2)
82
- async (1.29.1)
82
+ async (1.30.1)
83
83
  console (~> 1.10)
84
84
  nio4r (~> 2.3)
85
85
  timers (~> 4.1)
86
- async-http (0.56.3)
87
- async (~> 1.25)
88
- async-io (~> 1.28)
89
- async-pool (~> 0.2)
86
+ async-http (0.56.5)
87
+ async (>= 1.25)
88
+ async-io (>= 1.28)
89
+ async-pool (>= 0.2)
90
90
  protocol-http (~> 0.22.0)
91
91
  protocol-http1 (~> 0.14.0)
92
92
  protocol-http2 (~> 0.14.0)
93
93
  async-http-faraday (0.11.0)
94
94
  async-http (~> 0.42)
95
95
  faraday
96
- async-io (1.32.1)
97
- async (~> 1.14)
98
- async-pool (0.3.7)
99
- async (~> 1.25)
96
+ async-io (1.32.2)
97
+ async
98
+ async-pool (0.3.8)
99
+ async (>= 1.25)
100
100
  builder (3.2.4)
101
101
  concurrent-ruby (1.1.9)
102
102
  connection_pool (2.2.5)
@@ -109,12 +109,15 @@ GEM
109
109
  erubi (1.10.0)
110
110
  et-orbi (1.2.4)
111
111
  tzinfo
112
- faraday (1.4.3)
112
+ faraday (1.7.0)
113
113
  faraday-em_http (~> 1.0)
114
114
  faraday-em_synchrony (~> 1.0)
115
115
  faraday-excon (~> 1.1)
116
+ faraday-httpclient (~> 1.0.1)
116
117
  faraday-net_http (~> 1.0)
117
118
  faraday-net_http_persistent (~> 1.1)
119
+ faraday-patron (~> 1.0)
120
+ faraday-rack (~> 1.0)
118
121
  multipart-post (>= 1.2, < 3)
119
122
  ruby2_keywords (>= 0.0.4)
120
123
  faraday-em_http (1.0.0)
@@ -122,10 +125,13 @@ GEM
122
125
  faraday-excon (1.1.0)
123
126
  faraday-http-cache (2.2.0)
124
127
  faraday (>= 0.8)
128
+ faraday-httpclient (1.0.1)
125
129
  faraday-net_http (1.0.1)
126
- faraday-net_http_persistent (1.1.0)
130
+ faraday-net_http_persistent (1.2.0)
131
+ faraday-patron (1.0.0)
132
+ faraday-rack (1.0.0)
127
133
  fiber-local (1.0.0)
128
- fugit (1.5.0)
134
+ fugit (1.5.1)
129
135
  et-orbi (~> 1.1, >= 1.1.8)
130
136
  raabro (~> 1.4)
131
137
  github_changelog_generator (1.16.4)
@@ -137,8 +143,8 @@ GEM
137
143
  octokit (~> 4.6)
138
144
  rainbow (>= 2.2.1)
139
145
  rake (>= 10.0)
140
- globalid (0.4.2)
141
- activesupport (>= 4.2.0)
146
+ globalid (0.5.2)
147
+ activesupport (>= 5.0)
142
148
  google-cloud-tasks (1.0.0)
143
149
  google-gax (~> 1.3)
144
150
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -154,9 +160,9 @@ GEM
154
160
  google-protobuf (~> 3.14)
155
161
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
156
162
  grpc (~> 1.27)
157
- googleapis-common-protos-types (1.0.6)
163
+ googleapis-common-protos-types (1.1.0)
158
164
  google-protobuf (~> 3.14)
159
- googleauth (0.16.2)
165
+ googleauth (0.17.0)
160
166
  faraday (>= 0.17.3, < 2.0)
161
167
  jwt (>= 1.4, < 3.0)
162
168
  memoist (~> 0.16)
@@ -175,7 +181,7 @@ GEM
175
181
  concurrent-ruby (~> 1.0)
176
182
  jaro_winkler (1.5.4)
177
183
  jwt (2.2.3)
178
- loofah (2.10.0)
184
+ loofah (2.12.0)
179
185
  crass (~> 1.0.2)
180
186
  nokogiri (>= 1.5.9)
181
187
  mail (2.7.1)
@@ -184,23 +190,23 @@ GEM
184
190
  memoist (0.16.2)
185
191
  method_source (1.0.0)
186
192
  mini_mime (1.1.0)
187
- mini_portile2 (2.5.3)
193
+ mini_portile2 (2.6.1)
188
194
  minitest (5.14.4)
189
195
  multi_json (1.15.0)
190
196
  multipart-post (2.1.1)
191
- nio4r (2.5.7)
192
- nokogiri (1.11.7)
193
- mini_portile2 (~> 2.5.0)
197
+ nio4r (2.5.8)
198
+ nokogiri (1.12.3)
199
+ mini_portile2 (~> 2.6.1)
194
200
  racc (~> 1.4)
195
201
  octokit (4.21.0)
196
202
  faraday (>= 0.9)
197
203
  sawyer (~> 0.8.0, >= 0.5.3)
198
204
  os (1.1.1)
199
205
  parallel (1.20.1)
200
- parser (3.0.1.1)
206
+ parser (3.0.2.0)
201
207
  ast (~> 2.4.1)
202
208
  protocol-hpack (1.4.2)
203
- protocol-http (0.22.4)
209
+ protocol-http (0.22.5)
204
210
  protocol-http1 (0.14.1)
205
211
  protocol-http (~> 0.22)
206
212
  protocol-http2 (0.14.2)
@@ -230,7 +236,7 @@ GEM
230
236
  rails-dom-testing (2.0.3)
231
237
  activesupport (>= 4.2.0)
232
238
  nokogiri (>= 1.6)
233
- rails-html-sanitizer (1.3.0)
239
+ rails-html-sanitizer (1.4.1)
234
240
  loofah (~> 2.3)
235
241
  railties (6.1.4)
236
242
  actionpack (= 6.1.4)
@@ -239,8 +245,8 @@ GEM
239
245
  rake (>= 0.13)
240
246
  thor (~> 1.0)
241
247
  rainbow (3.0.0)
242
- rake (13.0.3)
243
- redis (4.3.1)
248
+ rake (13.0.6)
249
+ redis (4.4.0)
244
250
  retriable (3.1.2)
245
251
  rexml (3.2.5)
246
252
  rly (0.2.3)
@@ -257,7 +263,7 @@ GEM
257
263
  rspec-mocks (3.10.2)
258
264
  diff-lcs (>= 1.2.0, < 2.0)
259
265
  rspec-support (~> 3.10.0)
260
- rspec-rails (5.0.1)
266
+ rspec-rails (5.0.2)
261
267
  actionpack (>= 5.2)
262
268
  activesupport (>= 5.2)
263
269
  railties (>= 5.2)
@@ -276,11 +282,11 @@ GEM
276
282
  rubocop-rspec (1.37.0)
277
283
  rubocop (>= 0.68.1)
278
284
  ruby-progressbar (1.11.0)
279
- ruby2_keywords (0.0.4)
285
+ ruby2_keywords (0.0.5)
280
286
  sawyer (0.8.2)
281
287
  addressable (>= 2.3.5)
282
288
  faraday (> 0.8, < 2.0)
283
- semantic_logger (4.8.0)
289
+ semantic_logger (4.8.2)
284
290
  concurrent-ruby (~> 1.0)
285
291
  signet (0.15.0)
286
292
  addressable (~> 2.3)
@@ -301,8 +307,8 @@ GEM
301
307
  tzinfo (2.0.4)
302
308
  concurrent-ruby (~> 1.0)
303
309
  unicode-display_width (1.6.1)
304
- webmock (3.13.0)
305
- addressable (>= 2.3.6)
310
+ webmock (3.14.0)
311
+ addressable (>= 2.8.0)
306
312
  crack (>= 0.3.2)
307
313
  hashdiff (>= 0.4.0, < 2.0.0)
308
314
  websocket-driver (0.7.5)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.rc11)
4
+ cloudtasker (0.12.0)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -72,31 +72,31 @@ GEM
72
72
  minitest (>= 5.1)
73
73
  tzinfo (~> 2.0)
74
74
  zeitwerk (~> 2.3)
75
- addressable (2.7.0)
75
+ addressable (2.8.0)
76
76
  public_suffix (>= 2.0.2, < 5.0)
77
- appraisal (2.4.0)
77
+ appraisal (2.4.1)
78
78
  bundler
79
79
  rake
80
80
  thor (>= 0.14.0)
81
81
  ast (2.4.2)
82
- async (1.29.1)
82
+ async (1.30.1)
83
83
  console (~> 1.10)
84
84
  nio4r (~> 2.3)
85
85
  timers (~> 4.1)
86
- async-http (0.56.3)
87
- async (~> 1.25)
88
- async-io (~> 1.28)
89
- async-pool (~> 0.2)
86
+ async-http (0.56.5)
87
+ async (>= 1.25)
88
+ async-io (>= 1.28)
89
+ async-pool (>= 0.2)
90
90
  protocol-http (~> 0.22.0)
91
91
  protocol-http1 (~> 0.14.0)
92
92
  protocol-http2 (~> 0.14.0)
93
93
  async-http-faraday (0.11.0)
94
94
  async-http (~> 0.42)
95
95
  faraday
96
- async-io (1.32.1)
97
- async (~> 1.14)
98
- async-pool (0.3.7)
99
- async (~> 1.25)
96
+ async-io (1.32.2)
97
+ async
98
+ async-pool (0.3.8)
99
+ async (>= 1.25)
100
100
  builder (3.2.4)
101
101
  concurrent-ruby (1.1.9)
102
102
  connection_pool (2.2.5)
@@ -109,12 +109,15 @@ GEM
109
109
  erubi (1.10.0)
110
110
  et-orbi (1.2.4)
111
111
  tzinfo
112
- faraday (1.4.3)
112
+ faraday (1.7.0)
113
113
  faraday-em_http (~> 1.0)
114
114
  faraday-em_synchrony (~> 1.0)
115
115
  faraday-excon (~> 1.1)
116
+ faraday-httpclient (~> 1.0.1)
116
117
  faraday-net_http (~> 1.0)
117
118
  faraday-net_http_persistent (~> 1.1)
119
+ faraday-patron (~> 1.0)
120
+ faraday-rack (~> 1.0)
118
121
  multipart-post (>= 1.2, < 3)
119
122
  ruby2_keywords (>= 0.0.4)
120
123
  faraday-em_http (1.0.0)
@@ -122,10 +125,13 @@ GEM
122
125
  faraday-excon (1.1.0)
123
126
  faraday-http-cache (2.2.0)
124
127
  faraday (>= 0.8)
128
+ faraday-httpclient (1.0.1)
125
129
  faraday-net_http (1.0.1)
126
- faraday-net_http_persistent (1.1.0)
130
+ faraday-net_http_persistent (1.2.0)
131
+ faraday-patron (1.0.0)
132
+ faraday-rack (1.0.0)
127
133
  fiber-local (1.0.0)
128
- fugit (1.5.0)
134
+ fugit (1.5.1)
129
135
  et-orbi (~> 1.1, >= 1.1.8)
130
136
  raabro (~> 1.4)
131
137
  github_changelog_generator (1.16.4)
@@ -137,8 +143,8 @@ GEM
137
143
  octokit (~> 4.6)
138
144
  rainbow (>= 2.2.1)
139
145
  rake (>= 10.0)
140
- globalid (0.4.2)
141
- activesupport (>= 4.2.0)
146
+ globalid (0.5.2)
147
+ activesupport (>= 5.0)
142
148
  google-cloud-tasks (1.1.0)
143
149
  google-gax (~> 1.7)
144
150
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -154,9 +160,9 @@ GEM
154
160
  google-protobuf (~> 3.14)
155
161
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
156
162
  grpc (~> 1.27)
157
- googleapis-common-protos-types (1.0.6)
163
+ googleapis-common-protos-types (1.1.0)
158
164
  google-protobuf (~> 3.14)
159
- googleauth (0.16.2)
165
+ googleauth (0.17.0)
160
166
  faraday (>= 0.17.3, < 2.0)
161
167
  jwt (>= 1.4, < 3.0)
162
168
  memoist (~> 0.16)
@@ -175,7 +181,7 @@ GEM
175
181
  concurrent-ruby (~> 1.0)
176
182
  jaro_winkler (1.5.4)
177
183
  jwt (2.2.3)
178
- loofah (2.10.0)
184
+ loofah (2.12.0)
179
185
  crass (~> 1.0.2)
180
186
  nokogiri (>= 1.5.9)
181
187
  mail (2.7.1)
@@ -184,23 +190,23 @@ GEM
184
190
  memoist (0.16.2)
185
191
  method_source (1.0.0)
186
192
  mini_mime (1.1.0)
187
- mini_portile2 (2.5.3)
193
+ mini_portile2 (2.6.1)
188
194
  minitest (5.14.4)
189
195
  multi_json (1.15.0)
190
196
  multipart-post (2.1.1)
191
- nio4r (2.5.7)
192
- nokogiri (1.11.7)
193
- mini_portile2 (~> 2.5.0)
197
+ nio4r (2.5.8)
198
+ nokogiri (1.12.3)
199
+ mini_portile2 (~> 2.6.1)
194
200
  racc (~> 1.4)
195
201
  octokit (4.21.0)
196
202
  faraday (>= 0.9)
197
203
  sawyer (~> 0.8.0, >= 0.5.3)
198
204
  os (1.1.1)
199
205
  parallel (1.20.1)
200
- parser (3.0.1.1)
206
+ parser (3.0.2.0)
201
207
  ast (~> 2.4.1)
202
208
  protocol-hpack (1.4.2)
203
- protocol-http (0.22.4)
209
+ protocol-http (0.22.5)
204
210
  protocol-http1 (0.14.1)
205
211
  protocol-http (~> 0.22)
206
212
  protocol-http2 (0.14.2)
@@ -230,7 +236,7 @@ GEM
230
236
  rails-dom-testing (2.0.3)
231
237
  activesupport (>= 4.2.0)
232
238
  nokogiri (>= 1.6)
233
- rails-html-sanitizer (1.3.0)
239
+ rails-html-sanitizer (1.4.1)
234
240
  loofah (~> 2.3)
235
241
  railties (6.1.4)
236
242
  actionpack (= 6.1.4)
@@ -239,8 +245,8 @@ GEM
239
245
  rake (>= 0.13)
240
246
  thor (~> 1.0)
241
247
  rainbow (3.0.0)
242
- rake (13.0.3)
243
- redis (4.3.1)
248
+ rake (13.0.6)
249
+ redis (4.4.0)
244
250
  retriable (3.1.2)
245
251
  rexml (3.2.5)
246
252
  rly (0.2.3)
@@ -257,7 +263,7 @@ GEM
257
263
  rspec-mocks (3.10.2)
258
264
  diff-lcs (>= 1.2.0, < 2.0)
259
265
  rspec-support (~> 3.10.0)
260
- rspec-rails (5.0.1)
266
+ rspec-rails (5.0.2)
261
267
  actionpack (>= 5.2)
262
268
  activesupport (>= 5.2)
263
269
  railties (>= 5.2)
@@ -276,11 +282,11 @@ GEM
276
282
  rubocop-rspec (1.37.0)
277
283
  rubocop (>= 0.68.1)
278
284
  ruby-progressbar (1.11.0)
279
- ruby2_keywords (0.0.4)
285
+ ruby2_keywords (0.0.5)
280
286
  sawyer (0.8.2)
281
287
  addressable (>= 2.3.5)
282
288
  faraday (> 0.8, < 2.0)
283
- semantic_logger (4.8.0)
289
+ semantic_logger (4.8.2)
284
290
  concurrent-ruby (~> 1.0)
285
291
  signet (0.15.0)
286
292
  addressable (~> 2.3)
@@ -301,8 +307,8 @@ GEM
301
307
  tzinfo (2.0.4)
302
308
  concurrent-ruby (~> 1.0)
303
309
  unicode-display_width (1.6.1)
304
- webmock (3.13.0)
305
- addressable (>= 2.3.6)
310
+ webmock (3.14.0)
311
+ addressable (>= 2.8.0)
306
312
  crack (>= 0.3.2)
307
313
  hashdiff (>= 0.4.0, < 2.0.0)
308
314
  websocket-driver (0.7.5)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.rc11)
4
+ cloudtasker (0.12.0)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -72,31 +72,31 @@ GEM
72
72
  minitest (>= 5.1)
73
73
  tzinfo (~> 2.0)
74
74
  zeitwerk (~> 2.3)
75
- addressable (2.7.0)
75
+ addressable (2.8.0)
76
76
  public_suffix (>= 2.0.2, < 5.0)
77
- appraisal (2.4.0)
77
+ appraisal (2.4.1)
78
78
  bundler
79
79
  rake
80
80
  thor (>= 0.14.0)
81
81
  ast (2.4.2)
82
- async (1.29.1)
82
+ async (1.30.1)
83
83
  console (~> 1.10)
84
84
  nio4r (~> 2.3)
85
85
  timers (~> 4.1)
86
- async-http (0.56.3)
87
- async (~> 1.25)
88
- async-io (~> 1.28)
89
- async-pool (~> 0.2)
86
+ async-http (0.56.5)
87
+ async (>= 1.25)
88
+ async-io (>= 1.28)
89
+ async-pool (>= 0.2)
90
90
  protocol-http (~> 0.22.0)
91
91
  protocol-http1 (~> 0.14.0)
92
92
  protocol-http2 (~> 0.14.0)
93
93
  async-http-faraday (0.11.0)
94
94
  async-http (~> 0.42)
95
95
  faraday
96
- async-io (1.32.1)
97
- async (~> 1.14)
98
- async-pool (0.3.7)
99
- async (~> 1.25)
96
+ async-io (1.32.2)
97
+ async
98
+ async-pool (0.3.8)
99
+ async (>= 1.25)
100
100
  builder (3.2.4)
101
101
  concurrent-ruby (1.1.9)
102
102
  connection_pool (2.2.5)
@@ -109,12 +109,15 @@ GEM
109
109
  erubi (1.10.0)
110
110
  et-orbi (1.2.4)
111
111
  tzinfo
112
- faraday (1.4.3)
112
+ faraday (1.7.0)
113
113
  faraday-em_http (~> 1.0)
114
114
  faraday-em_synchrony (~> 1.0)
115
115
  faraday-excon (~> 1.1)
116
+ faraday-httpclient (~> 1.0.1)
116
117
  faraday-net_http (~> 1.0)
117
118
  faraday-net_http_persistent (~> 1.1)
119
+ faraday-patron (~> 1.0)
120
+ faraday-rack (~> 1.0)
118
121
  multipart-post (>= 1.2, < 3)
119
122
  ruby2_keywords (>= 0.0.4)
120
123
  faraday-em_http (1.0.0)
@@ -122,10 +125,13 @@ GEM
122
125
  faraday-excon (1.1.0)
123
126
  faraday-http-cache (2.2.0)
124
127
  faraday (>= 0.8)
128
+ faraday-httpclient (1.0.1)
125
129
  faraday-net_http (1.0.1)
126
- faraday-net_http_persistent (1.1.0)
130
+ faraday-net_http_persistent (1.2.0)
131
+ faraday-patron (1.0.0)
132
+ faraday-rack (1.0.0)
127
133
  fiber-local (1.0.0)
128
- fugit (1.5.0)
134
+ fugit (1.5.1)
129
135
  et-orbi (~> 1.1, >= 1.1.8)
130
136
  raabro (~> 1.4)
131
137
  github_changelog_generator (1.16.4)
@@ -137,8 +143,8 @@ GEM
137
143
  octokit (~> 4.6)
138
144
  rainbow (>= 2.2.1)
139
145
  rake (>= 10.0)
140
- globalid (0.4.2)
141
- activesupport (>= 4.2.0)
146
+ globalid (0.5.2)
147
+ activesupport (>= 5.0)
142
148
  google-cloud-tasks (1.2.0)
143
149
  google-gax (~> 1.8)
144
150
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -154,9 +160,9 @@ GEM
154
160
  google-protobuf (~> 3.14)
155
161
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
156
162
  grpc (~> 1.27)
157
- googleapis-common-protos-types (1.0.6)
163
+ googleapis-common-protos-types (1.1.0)
158
164
  google-protobuf (~> 3.14)
159
- googleauth (0.16.2)
165
+ googleauth (0.17.0)
160
166
  faraday (>= 0.17.3, < 2.0)
161
167
  jwt (>= 1.4, < 3.0)
162
168
  memoist (~> 0.16)
@@ -175,7 +181,7 @@ GEM
175
181
  concurrent-ruby (~> 1.0)
176
182
  jaro_winkler (1.5.4)
177
183
  jwt (2.2.3)
178
- loofah (2.10.0)
184
+ loofah (2.12.0)
179
185
  crass (~> 1.0.2)
180
186
  nokogiri (>= 1.5.9)
181
187
  mail (2.7.1)
@@ -184,23 +190,23 @@ GEM
184
190
  memoist (0.16.2)
185
191
  method_source (1.0.0)
186
192
  mini_mime (1.1.0)
187
- mini_portile2 (2.5.3)
193
+ mini_portile2 (2.6.1)
188
194
  minitest (5.14.4)
189
195
  multi_json (1.15.0)
190
196
  multipart-post (2.1.1)
191
- nio4r (2.5.7)
192
- nokogiri (1.11.7)
193
- mini_portile2 (~> 2.5.0)
197
+ nio4r (2.5.8)
198
+ nokogiri (1.12.3)
199
+ mini_portile2 (~> 2.6.1)
194
200
  racc (~> 1.4)
195
201
  octokit (4.21.0)
196
202
  faraday (>= 0.9)
197
203
  sawyer (~> 0.8.0, >= 0.5.3)
198
204
  os (1.1.1)
199
205
  parallel (1.20.1)
200
- parser (3.0.1.1)
206
+ parser (3.0.2.0)
201
207
  ast (~> 2.4.1)
202
208
  protocol-hpack (1.4.2)
203
- protocol-http (0.22.4)
209
+ protocol-http (0.22.5)
204
210
  protocol-http1 (0.14.1)
205
211
  protocol-http (~> 0.22)
206
212
  protocol-http2 (0.14.2)
@@ -230,7 +236,7 @@ GEM
230
236
  rails-dom-testing (2.0.3)
231
237
  activesupport (>= 4.2.0)
232
238
  nokogiri (>= 1.6)
233
- rails-html-sanitizer (1.3.0)
239
+ rails-html-sanitizer (1.4.1)
234
240
  loofah (~> 2.3)
235
241
  railties (6.1.4)
236
242
  actionpack (= 6.1.4)
@@ -239,8 +245,8 @@ GEM
239
245
  rake (>= 0.13)
240
246
  thor (~> 1.0)
241
247
  rainbow (3.0.0)
242
- rake (13.0.3)
243
- redis (4.3.1)
248
+ rake (13.0.6)
249
+ redis (4.4.0)
244
250
  retriable (3.1.2)
245
251
  rexml (3.2.5)
246
252
  rly (0.2.3)
@@ -257,7 +263,7 @@ GEM
257
263
  rspec-mocks (3.10.2)
258
264
  diff-lcs (>= 1.2.0, < 2.0)
259
265
  rspec-support (~> 3.10.0)
260
- rspec-rails (5.0.1)
266
+ rspec-rails (5.0.2)
261
267
  actionpack (>= 5.2)
262
268
  activesupport (>= 5.2)
263
269
  railties (>= 5.2)
@@ -276,11 +282,11 @@ GEM
276
282
  rubocop-rspec (1.37.0)
277
283
  rubocop (>= 0.68.1)
278
284
  ruby-progressbar (1.11.0)
279
- ruby2_keywords (0.0.4)
285
+ ruby2_keywords (0.0.5)
280
286
  sawyer (0.8.2)
281
287
  addressable (>= 2.3.5)
282
288
  faraday (> 0.8, < 2.0)
283
- semantic_logger (4.8.0)
289
+ semantic_logger (4.8.2)
284
290
  concurrent-ruby (~> 1.0)
285
291
  signet (0.15.0)
286
292
  addressable (~> 2.3)
@@ -301,8 +307,8 @@ GEM
301
307
  tzinfo (2.0.4)
302
308
  concurrent-ruby (~> 1.0)
303
309
  unicode-display_width (1.6.1)
304
- webmock (3.13.0)
305
- addressable (>= 2.3.6)
310
+ webmock (3.14.0)
311
+ addressable (>= 2.8.0)
306
312
  crack (>= 0.3.2)
307
313
  hashdiff (>= 0.4.0, < 2.0.0)
308
314
  websocket-driver (0.7.5)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.rc11)
4
+ cloudtasker (0.12.0)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -72,31 +72,31 @@ GEM
72
72
  minitest (>= 5.1)
73
73
  tzinfo (~> 2.0)
74
74
  zeitwerk (~> 2.3)
75
- addressable (2.7.0)
75
+ addressable (2.8.0)
76
76
  public_suffix (>= 2.0.2, < 5.0)
77
- appraisal (2.4.0)
77
+ appraisal (2.4.1)
78
78
  bundler
79
79
  rake
80
80
  thor (>= 0.14.0)
81
81
  ast (2.4.2)
82
- async (1.29.1)
82
+ async (1.30.1)
83
83
  console (~> 1.10)
84
84
  nio4r (~> 2.3)
85
85
  timers (~> 4.1)
86
- async-http (0.56.3)
87
- async (~> 1.25)
88
- async-io (~> 1.28)
89
- async-pool (~> 0.2)
86
+ async-http (0.56.5)
87
+ async (>= 1.25)
88
+ async-io (>= 1.28)
89
+ async-pool (>= 0.2)
90
90
  protocol-http (~> 0.22.0)
91
91
  protocol-http1 (~> 0.14.0)
92
92
  protocol-http2 (~> 0.14.0)
93
93
  async-http-faraday (0.11.0)
94
94
  async-http (~> 0.42)
95
95
  faraday
96
- async-io (1.32.1)
97
- async (~> 1.14)
98
- async-pool (0.3.7)
99
- async (~> 1.25)
96
+ async-io (1.32.2)
97
+ async
98
+ async-pool (0.3.8)
99
+ async (>= 1.25)
100
100
  builder (3.2.4)
101
101
  concurrent-ruby (1.1.9)
102
102
  connection_pool (2.2.5)
@@ -109,12 +109,15 @@ GEM
109
109
  erubi (1.10.0)
110
110
  et-orbi (1.2.4)
111
111
  tzinfo
112
- faraday (1.4.3)
112
+ faraday (1.7.0)
113
113
  faraday-em_http (~> 1.0)
114
114
  faraday-em_synchrony (~> 1.0)
115
115
  faraday-excon (~> 1.1)
116
+ faraday-httpclient (~> 1.0.1)
116
117
  faraday-net_http (~> 1.0)
117
118
  faraday-net_http_persistent (~> 1.1)
119
+ faraday-patron (~> 1.0)
120
+ faraday-rack (~> 1.0)
118
121
  multipart-post (>= 1.2, < 3)
119
122
  ruby2_keywords (>= 0.0.4)
120
123
  faraday-em_http (1.0.0)
@@ -122,10 +125,13 @@ GEM
122
125
  faraday-excon (1.1.0)
123
126
  faraday-http-cache (2.2.0)
124
127
  faraday (>= 0.8)
128
+ faraday-httpclient (1.0.1)
125
129
  faraday-net_http (1.0.1)
126
- faraday-net_http_persistent (1.1.0)
130
+ faraday-net_http_persistent (1.2.0)
131
+ faraday-patron (1.0.0)
132
+ faraday-rack (1.0.0)
127
133
  fiber-local (1.0.0)
128
- fugit (1.5.0)
134
+ fugit (1.5.1)
129
135
  et-orbi (~> 1.1, >= 1.1.8)
130
136
  raabro (~> 1.4)
131
137
  github_changelog_generator (1.16.4)
@@ -137,8 +143,8 @@ GEM
137
143
  octokit (~> 4.6)
138
144
  rainbow (>= 2.2.1)
139
145
  rake (>= 10.0)
140
- globalid (0.4.2)
141
- activesupport (>= 4.2.0)
146
+ globalid (0.5.2)
147
+ activesupport (>= 5.0)
142
148
  google-cloud-tasks (1.3.0)
143
149
  google-gax (~> 1.8)
144
150
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -155,9 +161,9 @@ GEM
155
161
  google-protobuf (~> 3.14)
156
162
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
157
163
  grpc (~> 1.27)
158
- googleapis-common-protos-types (1.0.6)
164
+ googleapis-common-protos-types (1.1.0)
159
165
  google-protobuf (~> 3.14)
160
- googleauth (0.16.2)
166
+ googleauth (0.17.0)
161
167
  faraday (>= 0.17.3, < 2.0)
162
168
  jwt (>= 1.4, < 3.0)
163
169
  memoist (~> 0.16)
@@ -176,7 +182,7 @@ GEM
176
182
  concurrent-ruby (~> 1.0)
177
183
  jaro_winkler (1.5.4)
178
184
  jwt (2.2.3)
179
- loofah (2.10.0)
185
+ loofah (2.12.0)
180
186
  crass (~> 1.0.2)
181
187
  nokogiri (>= 1.5.9)
182
188
  mail (2.7.1)
@@ -185,23 +191,23 @@ GEM
185
191
  memoist (0.16.2)
186
192
  method_source (1.0.0)
187
193
  mini_mime (1.1.0)
188
- mini_portile2 (2.5.3)
194
+ mini_portile2 (2.6.1)
189
195
  minitest (5.14.4)
190
196
  multi_json (1.15.0)
191
197
  multipart-post (2.1.1)
192
- nio4r (2.5.7)
193
- nokogiri (1.11.7)
194
- mini_portile2 (~> 2.5.0)
198
+ nio4r (2.5.8)
199
+ nokogiri (1.12.3)
200
+ mini_portile2 (~> 2.6.1)
195
201
  racc (~> 1.4)
196
202
  octokit (4.21.0)
197
203
  faraday (>= 0.9)
198
204
  sawyer (~> 0.8.0, >= 0.5.3)
199
205
  os (1.1.1)
200
206
  parallel (1.20.1)
201
- parser (3.0.1.1)
207
+ parser (3.0.2.0)
202
208
  ast (~> 2.4.1)
203
209
  protocol-hpack (1.4.2)
204
- protocol-http (0.22.4)
210
+ protocol-http (0.22.5)
205
211
  protocol-http1 (0.14.1)
206
212
  protocol-http (~> 0.22)
207
213
  protocol-http2 (0.14.2)
@@ -231,7 +237,7 @@ GEM
231
237
  rails-dom-testing (2.0.3)
232
238
  activesupport (>= 4.2.0)
233
239
  nokogiri (>= 1.6)
234
- rails-html-sanitizer (1.3.0)
240
+ rails-html-sanitizer (1.4.1)
235
241
  loofah (~> 2.3)
236
242
  railties (6.1.4)
237
243
  actionpack (= 6.1.4)
@@ -240,8 +246,8 @@ GEM
240
246
  rake (>= 0.13)
241
247
  thor (~> 1.0)
242
248
  rainbow (3.0.0)
243
- rake (13.0.3)
244
- redis (4.3.1)
249
+ rake (13.0.6)
250
+ redis (4.4.0)
245
251
  retriable (3.1.2)
246
252
  rexml (3.2.5)
247
253
  rly (0.2.3)
@@ -258,7 +264,7 @@ GEM
258
264
  rspec-mocks (3.10.2)
259
265
  diff-lcs (>= 1.2.0, < 2.0)
260
266
  rspec-support (~> 3.10.0)
261
- rspec-rails (5.0.1)
267
+ rspec-rails (5.0.2)
262
268
  actionpack (>= 5.2)
263
269
  activesupport (>= 5.2)
264
270
  railties (>= 5.2)
@@ -277,11 +283,11 @@ GEM
277
283
  rubocop-rspec (1.37.0)
278
284
  rubocop (>= 0.68.1)
279
285
  ruby-progressbar (1.11.0)
280
- ruby2_keywords (0.0.4)
286
+ ruby2_keywords (0.0.5)
281
287
  sawyer (0.8.2)
282
288
  addressable (>= 2.3.5)
283
289
  faraday (> 0.8, < 2.0)
284
- semantic_logger (4.8.0)
290
+ semantic_logger (4.8.2)
285
291
  concurrent-ruby (~> 1.0)
286
292
  signet (0.15.0)
287
293
  addressable (~> 2.3)
@@ -302,8 +308,8 @@ GEM
302
308
  tzinfo (2.0.4)
303
309
  concurrent-ruby (~> 1.0)
304
310
  unicode-display_width (1.6.1)
305
- webmock (3.13.0)
306
- addressable (>= 2.3.6)
311
+ webmock (3.14.0)
312
+ addressable (>= 2.8.0)
307
313
  crack (>= 0.3.2)
308
314
  hashdiff (>= 0.4.0, < 2.0.0)
309
315
  websocket-driver (0.7.5)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.rc11)
4
+ cloudtasker (0.12.0)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -54,32 +54,32 @@ GEM
54
54
  i18n (>= 0.7, < 2)
55
55
  minitest (~> 5.1)
56
56
  tzinfo (~> 1.1)
57
- addressable (2.7.0)
57
+ addressable (2.8.0)
58
58
  public_suffix (>= 2.0.2, < 5.0)
59
- appraisal (2.4.0)
59
+ appraisal (2.4.1)
60
60
  bundler
61
61
  rake
62
62
  thor (>= 0.14.0)
63
63
  arel (9.0.0)
64
64
  ast (2.4.2)
65
- async (1.29.1)
65
+ async (1.30.1)
66
66
  console (~> 1.10)
67
67
  nio4r (~> 2.3)
68
68
  timers (~> 4.1)
69
- async-http (0.56.3)
70
- async (~> 1.25)
71
- async-io (~> 1.28)
72
- async-pool (~> 0.2)
69
+ async-http (0.56.5)
70
+ async (>= 1.25)
71
+ async-io (>= 1.28)
72
+ async-pool (>= 0.2)
73
73
  protocol-http (~> 0.22.0)
74
74
  protocol-http1 (~> 0.14.0)
75
75
  protocol-http2 (~> 0.14.0)
76
76
  async-http-faraday (0.11.0)
77
77
  async-http (~> 0.42)
78
78
  faraday
79
- async-io (1.32.1)
80
- async (~> 1.14)
81
- async-pool (0.3.7)
82
- async (~> 1.25)
79
+ async-io (1.32.2)
80
+ async
81
+ async-pool (0.3.8)
82
+ async (>= 1.25)
83
83
  builder (3.2.4)
84
84
  concurrent-ruby (1.1.9)
85
85
  connection_pool (2.2.5)
@@ -92,12 +92,15 @@ GEM
92
92
  erubi (1.10.0)
93
93
  et-orbi (1.2.4)
94
94
  tzinfo
95
- faraday (1.4.3)
95
+ faraday (1.7.0)
96
96
  faraday-em_http (~> 1.0)
97
97
  faraday-em_synchrony (~> 1.0)
98
98
  faraday-excon (~> 1.1)
99
+ faraday-httpclient (~> 1.0.1)
99
100
  faraday-net_http (~> 1.0)
100
101
  faraday-net_http_persistent (~> 1.1)
102
+ faraday-patron (~> 1.0)
103
+ faraday-rack (~> 1.0)
101
104
  multipart-post (>= 1.2, < 3)
102
105
  ruby2_keywords (>= 0.0.4)
103
106
  faraday-em_http (1.0.0)
@@ -105,10 +108,13 @@ GEM
105
108
  faraday-excon (1.1.0)
106
109
  faraday-http-cache (2.2.0)
107
110
  faraday (>= 0.8)
111
+ faraday-httpclient (1.0.1)
108
112
  faraday-net_http (1.0.1)
109
- faraday-net_http_persistent (1.1.0)
113
+ faraday-net_http_persistent (1.2.0)
114
+ faraday-patron (1.0.0)
115
+ faraday-rack (1.0.0)
110
116
  fiber-local (1.0.0)
111
- fugit (1.5.0)
117
+ fugit (1.5.1)
112
118
  et-orbi (~> 1.1, >= 1.1.8)
113
119
  raabro (~> 1.4)
114
120
  github_changelog_generator (1.16.4)
@@ -120,8 +126,8 @@ GEM
120
126
  octokit (~> 4.6)
121
127
  rainbow (>= 2.2.1)
122
128
  rake (>= 10.0)
123
- globalid (0.4.2)
124
- activesupport (>= 4.2.0)
129
+ globalid (0.5.2)
130
+ activesupport (>= 5.0)
125
131
  google-cloud-tasks (1.5.1)
126
132
  google-gax (~> 1.8)
127
133
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -138,9 +144,9 @@ GEM
138
144
  google-protobuf (~> 3.14)
139
145
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
140
146
  grpc (~> 1.27)
141
- googleapis-common-protos-types (1.0.6)
147
+ googleapis-common-protos-types (1.1.0)
142
148
  google-protobuf (~> 3.14)
143
- googleauth (0.16.2)
149
+ googleauth (0.17.0)
144
150
  faraday (>= 0.17.3, < 2.0)
145
151
  jwt (>= 1.4, < 3.0)
146
152
  memoist (~> 0.16)
@@ -159,7 +165,7 @@ GEM
159
165
  concurrent-ruby (~> 1.0)
160
166
  jaro_winkler (1.5.4)
161
167
  jwt (2.2.3)
162
- loofah (2.10.0)
168
+ loofah (2.12.0)
163
169
  crass (~> 1.0.2)
164
170
  nokogiri (>= 1.5.9)
165
171
  mail (2.7.1)
@@ -172,23 +178,23 @@ GEM
172
178
  nokogiri (~> 1)
173
179
  rake
174
180
  mini_mime (1.1.0)
175
- mini_portile2 (2.5.3)
181
+ mini_portile2 (2.6.1)
176
182
  minitest (5.14.4)
177
183
  multi_json (1.15.0)
178
184
  multipart-post (2.1.1)
179
- nio4r (2.5.7)
180
- nokogiri (1.11.7)
181
- mini_portile2 (~> 2.5.0)
185
+ nio4r (2.5.8)
186
+ nokogiri (1.12.3)
187
+ mini_portile2 (~> 2.6.1)
182
188
  racc (~> 1.4)
183
189
  octokit (4.21.0)
184
190
  faraday (>= 0.9)
185
191
  sawyer (~> 0.8.0, >= 0.5.3)
186
192
  os (1.1.1)
187
193
  parallel (1.20.1)
188
- parser (3.0.1.1)
194
+ parser (3.0.2.0)
189
195
  ast (~> 2.4.1)
190
196
  protocol-hpack (1.4.2)
191
- protocol-http (0.22.4)
197
+ protocol-http (0.22.5)
192
198
  protocol-http1 (0.14.1)
193
199
  protocol-http (~> 0.22)
194
200
  protocol-http2 (0.14.2)
@@ -216,7 +222,7 @@ GEM
216
222
  rails-dom-testing (2.0.3)
217
223
  activesupport (>= 4.2.0)
218
224
  nokogiri (>= 1.6)
219
- rails-html-sanitizer (1.3.0)
225
+ rails-html-sanitizer (1.4.1)
220
226
  loofah (~> 2.3)
221
227
  railties (5.2.0)
222
228
  actionpack (= 5.2.0)
@@ -225,8 +231,8 @@ GEM
225
231
  rake (>= 0.8.7)
226
232
  thor (>= 0.18.1, < 2.0)
227
233
  rainbow (3.0.0)
228
- rake (13.0.3)
229
- redis (4.3.1)
234
+ rake (13.0.6)
235
+ redis (4.4.0)
230
236
  retriable (3.1.2)
231
237
  rexml (3.2.5)
232
238
  rly (0.2.3)
@@ -243,7 +249,7 @@ GEM
243
249
  rspec-mocks (3.10.2)
244
250
  diff-lcs (>= 1.2.0, < 2.0)
245
251
  rspec-support (~> 3.10.0)
246
- rspec-rails (5.0.1)
252
+ rspec-rails (5.0.2)
247
253
  actionpack (>= 5.2)
248
254
  activesupport (>= 5.2)
249
255
  railties (>= 5.2)
@@ -262,11 +268,11 @@ GEM
262
268
  rubocop-rspec (1.37.0)
263
269
  rubocop (>= 0.68.1)
264
270
  ruby-progressbar (1.11.0)
265
- ruby2_keywords (0.0.4)
271
+ ruby2_keywords (0.0.5)
266
272
  sawyer (0.8.2)
267
273
  addressable (>= 2.3.5)
268
274
  faraday (> 0.8, < 2.0)
269
- semantic_logger (4.8.0)
275
+ semantic_logger (4.8.2)
270
276
  concurrent-ruby (~> 1.0)
271
277
  signet (0.15.0)
272
278
  addressable (~> 2.3)
@@ -288,8 +294,8 @@ GEM
288
294
  tzinfo (1.2.9)
289
295
  thread_safe (~> 0.1)
290
296
  unicode-display_width (1.6.1)
291
- webmock (3.13.0)
292
- addressable (>= 2.3.6)
297
+ webmock (3.14.0)
298
+ addressable (>= 2.8.0)
293
299
  crack (>= 0.3.2)
294
300
  hashdiff (>= 0.4.0, < 2.0.0)
295
301
  websocket-driver (0.7.5)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudtasker (0.12.rc11)
4
+ cloudtasker (0.12.0)
5
5
  activesupport
6
6
  connection_pool
7
7
  fugit
@@ -68,31 +68,31 @@ GEM
68
68
  minitest (~> 5.1)
69
69
  tzinfo (~> 1.1)
70
70
  zeitwerk (~> 2.1, >= 2.1.8)
71
- addressable (2.7.0)
71
+ addressable (2.8.0)
72
72
  public_suffix (>= 2.0.2, < 5.0)
73
- appraisal (2.4.0)
73
+ appraisal (2.4.1)
74
74
  bundler
75
75
  rake
76
76
  thor (>= 0.14.0)
77
77
  ast (2.4.2)
78
- async (1.29.1)
78
+ async (1.30.1)
79
79
  console (~> 1.10)
80
80
  nio4r (~> 2.3)
81
81
  timers (~> 4.1)
82
- async-http (0.56.3)
83
- async (~> 1.25)
84
- async-io (~> 1.28)
85
- async-pool (~> 0.2)
82
+ async-http (0.56.5)
83
+ async (>= 1.25)
84
+ async-io (>= 1.28)
85
+ async-pool (>= 0.2)
86
86
  protocol-http (~> 0.22.0)
87
87
  protocol-http1 (~> 0.14.0)
88
88
  protocol-http2 (~> 0.14.0)
89
89
  async-http-faraday (0.11.0)
90
90
  async-http (~> 0.42)
91
91
  faraday
92
- async-io (1.32.1)
93
- async (~> 1.14)
94
- async-pool (0.3.7)
95
- async (~> 1.25)
92
+ async-io (1.32.2)
93
+ async
94
+ async-pool (0.3.8)
95
+ async (>= 1.25)
96
96
  builder (3.2.4)
97
97
  concurrent-ruby (1.1.9)
98
98
  connection_pool (2.2.5)
@@ -105,12 +105,15 @@ GEM
105
105
  erubi (1.10.0)
106
106
  et-orbi (1.2.4)
107
107
  tzinfo
108
- faraday (1.4.3)
108
+ faraday (1.7.0)
109
109
  faraday-em_http (~> 1.0)
110
110
  faraday-em_synchrony (~> 1.0)
111
111
  faraday-excon (~> 1.1)
112
+ faraday-httpclient (~> 1.0.1)
112
113
  faraday-net_http (~> 1.0)
113
114
  faraday-net_http_persistent (~> 1.1)
115
+ faraday-patron (~> 1.0)
116
+ faraday-rack (~> 1.0)
114
117
  multipart-post (>= 1.2, < 3)
115
118
  ruby2_keywords (>= 0.0.4)
116
119
  faraday-em_http (1.0.0)
@@ -118,10 +121,13 @@ GEM
118
121
  faraday-excon (1.1.0)
119
122
  faraday-http-cache (2.2.0)
120
123
  faraday (>= 0.8)
124
+ faraday-httpclient (1.0.1)
121
125
  faraday-net_http (1.0.1)
122
- faraday-net_http_persistent (1.1.0)
126
+ faraday-net_http_persistent (1.2.0)
127
+ faraday-patron (1.0.0)
128
+ faraday-rack (1.0.0)
123
129
  fiber-local (1.0.0)
124
- fugit (1.5.0)
130
+ fugit (1.5.1)
125
131
  et-orbi (~> 1.1, >= 1.1.8)
126
132
  raabro (~> 1.4)
127
133
  github_changelog_generator (1.16.4)
@@ -133,8 +139,8 @@ GEM
133
139
  octokit (~> 4.6)
134
140
  rainbow (>= 2.2.1)
135
141
  rake (>= 10.0)
136
- globalid (0.4.2)
137
- activesupport (>= 4.2.0)
142
+ globalid (0.5.2)
143
+ activesupport (>= 5.0)
138
144
  google-cloud-tasks (1.5.1)
139
145
  google-gax (~> 1.8)
140
146
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -151,9 +157,9 @@ GEM
151
157
  google-protobuf (~> 3.14)
152
158
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
153
159
  grpc (~> 1.27)
154
- googleapis-common-protos-types (1.0.6)
160
+ googleapis-common-protos-types (1.1.0)
155
161
  google-protobuf (~> 3.14)
156
- googleauth (0.16.2)
162
+ googleauth (0.17.0)
157
163
  faraday (>= 0.17.3, < 2.0)
158
164
  jwt (>= 1.4, < 3.0)
159
165
  memoist (~> 0.16)
@@ -172,7 +178,7 @@ GEM
172
178
  concurrent-ruby (~> 1.0)
173
179
  jaro_winkler (1.5.4)
174
180
  jwt (2.2.3)
175
- loofah (2.10.0)
181
+ loofah (2.12.0)
176
182
  crass (~> 1.0.2)
177
183
  nokogiri (>= 1.5.9)
178
184
  mail (2.7.1)
@@ -185,23 +191,23 @@ GEM
185
191
  nokogiri (~> 1)
186
192
  rake
187
193
  mini_mime (1.1.0)
188
- mini_portile2 (2.5.3)
194
+ mini_portile2 (2.6.1)
189
195
  minitest (5.14.4)
190
196
  multi_json (1.15.0)
191
197
  multipart-post (2.1.1)
192
- nio4r (2.5.7)
193
- nokogiri (1.11.7)
194
- mini_portile2 (~> 2.5.0)
198
+ nio4r (2.5.8)
199
+ nokogiri (1.12.3)
200
+ mini_portile2 (~> 2.6.1)
195
201
  racc (~> 1.4)
196
202
  octokit (4.21.0)
197
203
  faraday (>= 0.9)
198
204
  sawyer (~> 0.8.0, >= 0.5.3)
199
205
  os (1.1.1)
200
206
  parallel (1.20.1)
201
- parser (3.0.1.1)
207
+ parser (3.0.2.0)
202
208
  ast (~> 2.4.1)
203
209
  protocol-hpack (1.4.2)
204
- protocol-http (0.22.4)
210
+ protocol-http (0.22.5)
205
211
  protocol-http1 (0.14.1)
206
212
  protocol-http (~> 0.22)
207
213
  protocol-http2 (0.14.2)
@@ -231,7 +237,7 @@ GEM
231
237
  rails-dom-testing (2.0.3)
232
238
  activesupport (>= 4.2.0)
233
239
  nokogiri (>= 1.6)
234
- rails-html-sanitizer (1.3.0)
240
+ rails-html-sanitizer (1.4.1)
235
241
  loofah (~> 2.3)
236
242
  railties (6.0.0)
237
243
  actionpack (= 6.0.0)
@@ -240,8 +246,8 @@ GEM
240
246
  rake (>= 0.8.7)
241
247
  thor (>= 0.20.3, < 2.0)
242
248
  rainbow (3.0.0)
243
- rake (13.0.3)
244
- redis (4.3.1)
249
+ rake (13.0.6)
250
+ redis (4.4.0)
245
251
  retriable (3.1.2)
246
252
  rexml (3.2.5)
247
253
  rly (0.2.3)
@@ -258,7 +264,7 @@ GEM
258
264
  rspec-mocks (3.10.2)
259
265
  diff-lcs (>= 1.2.0, < 2.0)
260
266
  rspec-support (~> 3.10.0)
261
- rspec-rails (5.0.1)
267
+ rspec-rails (5.0.2)
262
268
  actionpack (>= 5.2)
263
269
  activesupport (>= 5.2)
264
270
  railties (>= 5.2)
@@ -277,11 +283,11 @@ GEM
277
283
  rubocop-rspec (1.37.0)
278
284
  rubocop (>= 0.68.1)
279
285
  ruby-progressbar (1.11.0)
280
- ruby2_keywords (0.0.4)
286
+ ruby2_keywords (0.0.5)
281
287
  sawyer (0.8.2)
282
288
  addressable (>= 2.3.5)
283
289
  faraday (> 0.8, < 2.0)
284
- semantic_logger (4.8.0)
290
+ semantic_logger (4.8.2)
285
291
  concurrent-ruby (~> 1.0)
286
292
  signet (0.15.0)
287
293
  addressable (~> 2.3)
@@ -303,8 +309,8 @@ GEM
303
309
  tzinfo (1.2.9)
304
310
  thread_safe (~> 0.1)
305
311
  unicode-display_width (1.6.1)
306
- webmock (3.13.0)
307
- addressable (>= 2.3.6)
312
+ webmock (3.14.0)
313
+ addressable (>= 2.8.0)
308
314
  crack (>= 0.3.2)
309
315
  hashdiff (>= 0.4.0, < 2.0.0)
310
316
  websocket-driver (0.7.5)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cloudtasker
4
- VERSION = '0.12.rc11'
4
+ VERSION = '0.12.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudtasker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.rc11
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arnaud Lachaume
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-26 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
@@ -427,9 +427,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
427
427
  version: '0'
428
428
  required_rubygems_version: !ruby/object:Gem::Requirement
429
429
  requirements:
430
- - - ">"
430
+ - - ">="
431
431
  - !ruby/object:Gem::Version
432
- version: 1.3.1
432
+ version: '0'
433
433
  requirements: []
434
434
  rubygems_version: 3.0.0
435
435
  signing_key: