cloudtasker 0.11.0 → 0.11.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: 8f4e53fe9c99a8c6a74e064d7b7c562cdb671682aaed9bb6112a77c7fd453124
4
- data.tar.gz: 3b2e6aeca4fde352acd7b0db6fe469221514bf7fd753c07c3d9540d881bf1c2f
3
+ metadata.gz: d0073665ed9d9a5422641a1e86d876f5d7de70a66a060c589b1a02958497dd2a
4
+ data.tar.gz: eaa1e44611b8f3d312064ab3019a1ba2bfc5e368ef7ae2eabed3f69395b1ad05
5
5
  SHA512:
6
- metadata.gz: 4be2ce9466e7ffd2cc274d57d79eedad96ae56d699632f88bfdf6384413aa9bfa19dff8a124926bd2b41229ce53f3126b2bd04646cc9125136bc93fdffb0642a
7
- data.tar.gz: f6a3f7fa152f5ebedbe25945e86538691ee658c5bc02b840fd3d1f337ba0fcd78db6a84c52bcd6ade01af51335ee81d457152bfa9767d3ac9541b5d31ef48126
6
+ metadata.gz: 7c21279533185a8067adb7b78d860703dc9f7f33a099ed74d6a88f1a8f804401751d3387912671ddf683121fed1aaf9437d89839ad346cf11dd456e8595564e6
7
+ data.tar.gz: d03c95197c2a6195f16f9943d1d2621c3c2b759bb5cd721cb9218a33522fb40e936ddd378d01c0b073c1ef1c97653894ddc870d5ab0e566e195ae505f7f9b5ee
@@ -1,10 +1,6 @@
1
1
  name: Test
2
2
 
3
- on:
4
- push:
5
- branches: [ master, 0.9-stable ]
6
- pull_request:
7
- branches: [ master, 0.9-stable ]
3
+ on: [push, pull_request]
8
4
 
9
5
  jobs:
10
6
  build:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.11.1](https://github.com/keypup-io/cloudtasker/tree/v0.11.1) (2021-08-25)
4
+
5
+ [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.11.0...v0.11.1)
6
+
7
+ **Fixed bugs:**
8
+ - Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
9
+ - WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
10
+
11
+ ## [v0.10.2](https://github.com/keypup-io/cloudtasker/tree/v0.10.2) (2021-08-25)
12
+
13
+ [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.10.1...v0.10.2)
14
+
15
+ **Fixed bugs:**
16
+ - Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
17
+ - WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
18
+
19
+ ## [v0.9.5](https://github.com/keypup-io/cloudtasker/tree/v0.9.5) (2021-08-25)
20
+
21
+ [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.4...v0.9.5)
22
+
23
+ **Fixed bugs:**
24
+ - Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
25
+ - WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
26
+
3
27
  ## [v0.11.0](https://github.com/keypup-io/cloudtasker/tree/v0.11.0) (2020-11-23)
4
28
 
5
29
  [Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.10.0...v0.11.0)
@@ -2,7 +2,10 @@
2
2
 
3
3
  module Cloudtasker
4
4
  # Handle execution of workers
5
- class WorkerController < ApplicationController
5
+ class WorkerController < ActionController::Base
6
+ # No need for CSRF verification on API endpoints
7
+ skip_before_action :verify_authenticity_token
8
+
6
9
  # Authenticate all requests.
7
10
  before_action :authenticate!
8
11
 
@@ -13,75 +13,95 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- actioncable (6.1.3)
17
- actionpack (= 6.1.3)
18
- activesupport (= 6.1.3)
16
+ actioncable (6.1.4.1)
17
+ actionpack (= 6.1.4.1)
18
+ activesupport (= 6.1.4.1)
19
19
  nio4r (~> 2.0)
20
20
  websocket-driver (>= 0.6.1)
21
- actionmailbox (6.1.3)
22
- actionpack (= 6.1.3)
23
- activejob (= 6.1.3)
24
- activerecord (= 6.1.3)
25
- activestorage (= 6.1.3)
26
- activesupport (= 6.1.3)
21
+ actionmailbox (6.1.4.1)
22
+ actionpack (= 6.1.4.1)
23
+ activejob (= 6.1.4.1)
24
+ activerecord (= 6.1.4.1)
25
+ activestorage (= 6.1.4.1)
26
+ activesupport (= 6.1.4.1)
27
27
  mail (>= 2.7.1)
28
- actionmailer (6.1.3)
29
- actionpack (= 6.1.3)
30
- actionview (= 6.1.3)
31
- activejob (= 6.1.3)
32
- activesupport (= 6.1.3)
28
+ actionmailer (6.1.4.1)
29
+ actionpack (= 6.1.4.1)
30
+ actionview (= 6.1.4.1)
31
+ activejob (= 6.1.4.1)
32
+ activesupport (= 6.1.4.1)
33
33
  mail (~> 2.5, >= 2.5.4)
34
34
  rails-dom-testing (~> 2.0)
35
- actionpack (6.1.3)
36
- actionview (= 6.1.3)
37
- activesupport (= 6.1.3)
35
+ actionpack (6.1.4.1)
36
+ actionview (= 6.1.4.1)
37
+ activesupport (= 6.1.4.1)
38
38
  rack (~> 2.0, >= 2.0.9)
39
39
  rack-test (>= 0.6.3)
40
40
  rails-dom-testing (~> 2.0)
41
41
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
- actiontext (6.1.3)
43
- actionpack (= 6.1.3)
44
- activerecord (= 6.1.3)
45
- activestorage (= 6.1.3)
46
- activesupport (= 6.1.3)
42
+ actiontext (6.1.4.1)
43
+ actionpack (= 6.1.4.1)
44
+ activerecord (= 6.1.4.1)
45
+ activestorage (= 6.1.4.1)
46
+ activesupport (= 6.1.4.1)
47
47
  nokogiri (>= 1.8.5)
48
- actionview (6.1.3)
49
- activesupport (= 6.1.3)
48
+ actionview (6.1.4.1)
49
+ activesupport (= 6.1.4.1)
50
50
  builder (~> 3.1)
51
51
  erubi (~> 1.4)
52
52
  rails-dom-testing (~> 2.0)
53
53
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
- activejob (6.1.3)
55
- activesupport (= 6.1.3)
54
+ activejob (6.1.4.1)
55
+ activesupport (= 6.1.4.1)
56
56
  globalid (>= 0.3.6)
57
- activemodel (6.1.3)
58
- activesupport (= 6.1.3)
59
- activerecord (6.1.3)
60
- activemodel (= 6.1.3)
61
- activesupport (= 6.1.3)
62
- activestorage (6.1.3)
63
- actionpack (= 6.1.3)
64
- activejob (= 6.1.3)
65
- activerecord (= 6.1.3)
66
- activesupport (= 6.1.3)
67
- marcel (~> 0.3.1)
68
- mimemagic (~> 0.3.2)
69
- activesupport (6.1.3)
57
+ activemodel (6.1.4.1)
58
+ activesupport (= 6.1.4.1)
59
+ activerecord (6.1.4.1)
60
+ activemodel (= 6.1.4.1)
61
+ activesupport (= 6.1.4.1)
62
+ activestorage (6.1.4.1)
63
+ actionpack (= 6.1.4.1)
64
+ activejob (= 6.1.4.1)
65
+ activerecord (= 6.1.4.1)
66
+ activesupport (= 6.1.4.1)
67
+ marcel (~> 1.0.0)
68
+ mini_mime (>= 1.1.0)
69
+ activesupport (6.1.4.1)
70
70
  concurrent-ruby (~> 1.0, >= 1.0.2)
71
71
  i18n (>= 1.6, < 2)
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.30.1)
83
+ console (~> 1.10)
84
+ nio4r (~> 2.3)
85
+ timers (~> 4.1)
86
+ async-http (0.56.5)
87
+ async (>= 1.25)
88
+ async-io (>= 1.28)
89
+ async-pool (>= 0.2)
90
+ protocol-http (~> 0.22.0)
91
+ protocol-http1 (~> 0.14.0)
92
+ protocol-http2 (~> 0.14.0)
93
+ async-http-faraday (0.11.0)
94
+ async-http (~> 0.42)
95
+ faraday
96
+ async-io (1.32.2)
97
+ async
98
+ async-pool (0.3.8)
99
+ async (>= 1.25)
82
100
  builder (3.2.4)
83
- concurrent-ruby (1.1.8)
84
- connection_pool (2.2.3)
101
+ concurrent-ruby (1.1.9)
102
+ connection_pool (2.2.5)
103
+ console (1.13.1)
104
+ fiber-local
85
105
  crack (0.4.5)
86
106
  rexml
87
107
  crass (1.0.6)
@@ -89,26 +109,42 @@ GEM
89
109
  erubi (1.10.0)
90
110
  et-orbi (1.2.4)
91
111
  tzinfo
92
- faraday (1.3.0)
112
+ faraday (1.7.0)
113
+ faraday-em_http (~> 1.0)
114
+ faraday-em_synchrony (~> 1.0)
115
+ faraday-excon (~> 1.1)
116
+ faraday-httpclient (~> 1.0.1)
93
117
  faraday-net_http (~> 1.0)
118
+ faraday-net_http_persistent (~> 1.1)
119
+ faraday-patron (~> 1.0)
120
+ faraday-rack (~> 1.0)
94
121
  multipart-post (>= 1.2, < 3)
95
- ruby2_keywords
122
+ ruby2_keywords (>= 0.0.4)
123
+ faraday-em_http (1.0.0)
124
+ faraday-em_synchrony (1.0.0)
125
+ faraday-excon (1.1.0)
96
126
  faraday-http-cache (2.2.0)
97
127
  faraday (>= 0.8)
128
+ faraday-httpclient (1.0.1)
98
129
  faraday-net_http (1.0.1)
99
- fugit (1.4.2)
130
+ faraday-net_http_persistent (1.2.0)
131
+ faraday-patron (1.0.0)
132
+ faraday-rack (1.0.0)
133
+ fiber-local (1.0.0)
134
+ fugit (1.5.1)
100
135
  et-orbi (~> 1.1, >= 1.1.8)
101
136
  raabro (~> 1.4)
102
- github_changelog_generator (1.15.2)
137
+ github_changelog_generator (1.16.4)
103
138
  activesupport
139
+ async (>= 1.25.0)
140
+ async-http-faraday
104
141
  faraday-http-cache
105
142
  multi_json
106
143
  octokit (~> 4.6)
107
144
  rainbow (>= 2.2.1)
108
145
  rake (>= 10.0)
109
- retriable (~> 3.0)
110
- globalid (0.4.2)
111
- activesupport (>= 4.2.0)
146
+ globalid (0.5.2)
147
+ activesupport (>= 5.0)
112
148
  google-cloud-tasks (1.0.0)
113
149
  google-gax (~> 1.3)
114
150
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -119,95 +155,100 @@ GEM
119
155
  googleauth (~> 0.9)
120
156
  grpc (~> 1.24)
121
157
  rly (~> 0.2.3)
122
- google-protobuf (3.15.5)
158
+ google-protobuf (3.17.3)
123
159
  googleapis-common-protos (1.3.11)
124
160
  google-protobuf (~> 3.14)
125
161
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
126
162
  grpc (~> 1.27)
127
- googleapis-common-protos-types (1.0.6)
163
+ googleapis-common-protos-types (1.1.0)
128
164
  google-protobuf (~> 3.14)
129
- googleauth (0.16.0)
165
+ googleauth (0.17.0)
130
166
  faraday (>= 0.17.3, < 2.0)
131
167
  jwt (>= 1.4, < 3.0)
132
168
  memoist (~> 0.16)
133
169
  multi_json (~> 1.11)
134
170
  os (>= 0.9, < 2.0)
135
171
  signet (~> 0.14)
136
- grpc (1.36.0)
137
- google-protobuf (~> 3.14)
172
+ grpc (1.38.0)
173
+ google-protobuf (~> 3.15)
138
174
  googleapis-common-protos-types (~> 1.0)
139
175
  grpc-google-iam-v1 (0.6.11)
140
176
  google-protobuf (~> 3.14)
141
177
  googleapis-common-protos (>= 1.3.11, < 2.0)
142
178
  grpc (~> 1.27)
143
179
  hashdiff (1.0.1)
144
- i18n (1.8.9)
180
+ i18n (1.8.10)
145
181
  concurrent-ruby (~> 1.0)
146
182
  jaro_winkler (1.5.4)
147
- jwt (2.2.2)
148
- loofah (2.9.0)
183
+ jwt (2.2.3)
184
+ loofah (2.12.0)
149
185
  crass (~> 1.0.2)
150
186
  nokogiri (>= 1.5.9)
151
187
  mail (2.7.1)
152
188
  mini_mime (>= 0.1.1)
153
- marcel (0.3.3)
154
- mimemagic (~> 0.3.2)
189
+ marcel (1.0.1)
155
190
  memoist (0.16.2)
156
191
  method_source (1.0.0)
157
- mimemagic (0.3.5)
158
- mini_mime (1.0.2)
159
- mini_portile2 (2.5.0)
192
+ mini_mime (1.1.1)
193
+ mini_portile2 (2.6.1)
160
194
  minitest (5.14.4)
161
195
  multi_json (1.15.0)
162
196
  multipart-post (2.1.1)
163
- nio4r (2.5.7)
164
- nokogiri (1.11.2)
165
- mini_portile2 (~> 2.5.0)
197
+ nio4r (2.5.8)
198
+ nokogiri (1.12.3)
199
+ mini_portile2 (~> 2.6.1)
166
200
  racc (~> 1.4)
167
- octokit (4.20.0)
201
+ octokit (4.21.0)
168
202
  faraday (>= 0.9)
169
203
  sawyer (~> 0.8.0, >= 0.5.3)
170
204
  os (1.1.1)
171
205
  parallel (1.20.1)
172
- parser (3.0.0.0)
206
+ parser (3.0.2.0)
173
207
  ast (~> 2.4.1)
208
+ protocol-hpack (1.4.2)
209
+ protocol-http (0.22.5)
210
+ protocol-http1 (0.14.2)
211
+ protocol-http (~> 0.22)
212
+ protocol-http2 (0.14.2)
213
+ protocol-hpack (~> 1.4)
214
+ protocol-http (~> 0.18)
174
215
  public_suffix (4.0.6)
175
216
  raabro (1.4.0)
176
217
  racc (1.5.2)
177
218
  rack (2.2.3)
178
219
  rack-test (1.1.0)
179
220
  rack (>= 1.0, < 3)
180
- rails (6.1.3)
181
- actioncable (= 6.1.3)
182
- actionmailbox (= 6.1.3)
183
- actionmailer (= 6.1.3)
184
- actionpack (= 6.1.3)
185
- actiontext (= 6.1.3)
186
- actionview (= 6.1.3)
187
- activejob (= 6.1.3)
188
- activemodel (= 6.1.3)
189
- activerecord (= 6.1.3)
190
- activestorage (= 6.1.3)
191
- activesupport (= 6.1.3)
221
+ rails (6.1.4.1)
222
+ actioncable (= 6.1.4.1)
223
+ actionmailbox (= 6.1.4.1)
224
+ actionmailer (= 6.1.4.1)
225
+ actionpack (= 6.1.4.1)
226
+ actiontext (= 6.1.4.1)
227
+ actionview (= 6.1.4.1)
228
+ activejob (= 6.1.4.1)
229
+ activemodel (= 6.1.4.1)
230
+ activerecord (= 6.1.4.1)
231
+ activestorage (= 6.1.4.1)
232
+ activesupport (= 6.1.4.1)
192
233
  bundler (>= 1.15.0)
193
- railties (= 6.1.3)
234
+ railties (= 6.1.4.1)
194
235
  sprockets-rails (>= 2.0.0)
195
236
  rails-dom-testing (2.0.3)
196
237
  activesupport (>= 4.2.0)
197
238
  nokogiri (>= 1.6)
198
- rails-html-sanitizer (1.3.0)
239
+ rails-html-sanitizer (1.4.2)
199
240
  loofah (~> 2.3)
200
- railties (6.1.3)
201
- actionpack (= 6.1.3)
202
- activesupport (= 6.1.3)
241
+ railties (6.1.4.1)
242
+ actionpack (= 6.1.4.1)
243
+ activesupport (= 6.1.4.1)
203
244
  method_source
204
- rake (>= 0.8.7)
245
+ rake (>= 0.13)
205
246
  thor (~> 1.0)
206
247
  rainbow (3.0.0)
207
- rake (13.0.3)
208
- redis (4.2.5)
248
+ rake (13.0.6)
249
+ redis (4.4.0)
209
250
  retriable (3.1.2)
210
- rexml (3.2.4)
251
+ rexml (3.2.5)
211
252
  rly (0.2.3)
212
253
  rspec (3.10.0)
213
254
  rspec-core (~> 3.10.0)
@@ -222,7 +263,7 @@ GEM
222
263
  rspec-mocks (3.10.2)
223
264
  diff-lcs (>= 1.2.0, < 2.0)
224
265
  rspec-support (~> 3.10.0)
225
- rspec-rails (5.0.0)
266
+ rspec-rails (5.0.2)
226
267
  actionpack (>= 5.2)
227
268
  activesupport (>= 5.2)
228
269
  railties (>= 5.2)
@@ -241,11 +282,11 @@ GEM
241
282
  rubocop-rspec (1.37.0)
242
283
  rubocop (>= 0.68.1)
243
284
  ruby-progressbar (1.11.0)
244
- ruby2_keywords (0.0.4)
285
+ ruby2_keywords (0.0.5)
245
286
  sawyer (0.8.2)
246
287
  addressable (>= 2.3.5)
247
288
  faraday (> 0.8, < 2.0)
248
- semantic_logger (4.7.4)
289
+ semantic_logger (4.8.2)
249
290
  concurrent-ruby (~> 1.0)
250
291
  signet (0.15.0)
251
292
  addressable (~> 2.3)
@@ -262,14 +303,15 @@ GEM
262
303
  sqlite3 (1.4.2)
263
304
  thor (1.1.0)
264
305
  timecop (0.9.4)
306
+ timers (4.3.3)
265
307
  tzinfo (2.0.4)
266
308
  concurrent-ruby (~> 1.0)
267
309
  unicode-display_width (1.6.1)
268
- webmock (3.12.1)
269
- addressable (>= 2.3.6)
310
+ webmock (3.14.0)
311
+ addressable (>= 2.8.0)
270
312
  crack (>= 0.3.2)
271
313
  hashdiff (>= 0.4.0, < 2.0.0)
272
- websocket-driver (0.7.3)
314
+ websocket-driver (0.7.5)
273
315
  websocket-extensions (>= 0.1.0)
274
316
  websocket-extensions (0.1.5)
275
317
  zeitwerk (2.4.2)
@@ -13,75 +13,95 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- actioncable (6.1.3)
17
- actionpack (= 6.1.3)
18
- activesupport (= 6.1.3)
16
+ actioncable (6.1.4.1)
17
+ actionpack (= 6.1.4.1)
18
+ activesupport (= 6.1.4.1)
19
19
  nio4r (~> 2.0)
20
20
  websocket-driver (>= 0.6.1)
21
- actionmailbox (6.1.3)
22
- actionpack (= 6.1.3)
23
- activejob (= 6.1.3)
24
- activerecord (= 6.1.3)
25
- activestorage (= 6.1.3)
26
- activesupport (= 6.1.3)
21
+ actionmailbox (6.1.4.1)
22
+ actionpack (= 6.1.4.1)
23
+ activejob (= 6.1.4.1)
24
+ activerecord (= 6.1.4.1)
25
+ activestorage (= 6.1.4.1)
26
+ activesupport (= 6.1.4.1)
27
27
  mail (>= 2.7.1)
28
- actionmailer (6.1.3)
29
- actionpack (= 6.1.3)
30
- actionview (= 6.1.3)
31
- activejob (= 6.1.3)
32
- activesupport (= 6.1.3)
28
+ actionmailer (6.1.4.1)
29
+ actionpack (= 6.1.4.1)
30
+ actionview (= 6.1.4.1)
31
+ activejob (= 6.1.4.1)
32
+ activesupport (= 6.1.4.1)
33
33
  mail (~> 2.5, >= 2.5.4)
34
34
  rails-dom-testing (~> 2.0)
35
- actionpack (6.1.3)
36
- actionview (= 6.1.3)
37
- activesupport (= 6.1.3)
35
+ actionpack (6.1.4.1)
36
+ actionview (= 6.1.4.1)
37
+ activesupport (= 6.1.4.1)
38
38
  rack (~> 2.0, >= 2.0.9)
39
39
  rack-test (>= 0.6.3)
40
40
  rails-dom-testing (~> 2.0)
41
41
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
- actiontext (6.1.3)
43
- actionpack (= 6.1.3)
44
- activerecord (= 6.1.3)
45
- activestorage (= 6.1.3)
46
- activesupport (= 6.1.3)
42
+ actiontext (6.1.4.1)
43
+ actionpack (= 6.1.4.1)
44
+ activerecord (= 6.1.4.1)
45
+ activestorage (= 6.1.4.1)
46
+ activesupport (= 6.1.4.1)
47
47
  nokogiri (>= 1.8.5)
48
- actionview (6.1.3)
49
- activesupport (= 6.1.3)
48
+ actionview (6.1.4.1)
49
+ activesupport (= 6.1.4.1)
50
50
  builder (~> 3.1)
51
51
  erubi (~> 1.4)
52
52
  rails-dom-testing (~> 2.0)
53
53
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
- activejob (6.1.3)
55
- activesupport (= 6.1.3)
54
+ activejob (6.1.4.1)
55
+ activesupport (= 6.1.4.1)
56
56
  globalid (>= 0.3.6)
57
- activemodel (6.1.3)
58
- activesupport (= 6.1.3)
59
- activerecord (6.1.3)
60
- activemodel (= 6.1.3)
61
- activesupport (= 6.1.3)
62
- activestorage (6.1.3)
63
- actionpack (= 6.1.3)
64
- activejob (= 6.1.3)
65
- activerecord (= 6.1.3)
66
- activesupport (= 6.1.3)
67
- marcel (~> 0.3.1)
68
- mimemagic (~> 0.3.2)
69
- activesupport (6.1.3)
57
+ activemodel (6.1.4.1)
58
+ activesupport (= 6.1.4.1)
59
+ activerecord (6.1.4.1)
60
+ activemodel (= 6.1.4.1)
61
+ activesupport (= 6.1.4.1)
62
+ activestorage (6.1.4.1)
63
+ actionpack (= 6.1.4.1)
64
+ activejob (= 6.1.4.1)
65
+ activerecord (= 6.1.4.1)
66
+ activesupport (= 6.1.4.1)
67
+ marcel (~> 1.0.0)
68
+ mini_mime (>= 1.1.0)
69
+ activesupport (6.1.4.1)
70
70
  concurrent-ruby (~> 1.0, >= 1.0.2)
71
71
  i18n (>= 1.6, < 2)
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.30.1)
83
+ console (~> 1.10)
84
+ nio4r (~> 2.3)
85
+ timers (~> 4.1)
86
+ async-http (0.56.5)
87
+ async (>= 1.25)
88
+ async-io (>= 1.28)
89
+ async-pool (>= 0.2)
90
+ protocol-http (~> 0.22.0)
91
+ protocol-http1 (~> 0.14.0)
92
+ protocol-http2 (~> 0.14.0)
93
+ async-http-faraday (0.11.0)
94
+ async-http (~> 0.42)
95
+ faraday
96
+ async-io (1.32.2)
97
+ async
98
+ async-pool (0.3.8)
99
+ async (>= 1.25)
82
100
  builder (3.2.4)
83
- concurrent-ruby (1.1.8)
84
- connection_pool (2.2.3)
101
+ concurrent-ruby (1.1.9)
102
+ connection_pool (2.2.5)
103
+ console (1.13.1)
104
+ fiber-local
85
105
  crack (0.4.5)
86
106
  rexml
87
107
  crass (1.0.6)
@@ -89,26 +109,42 @@ GEM
89
109
  erubi (1.10.0)
90
110
  et-orbi (1.2.4)
91
111
  tzinfo
92
- faraday (1.3.0)
112
+ faraday (1.7.0)
113
+ faraday-em_http (~> 1.0)
114
+ faraday-em_synchrony (~> 1.0)
115
+ faraday-excon (~> 1.1)
116
+ faraday-httpclient (~> 1.0.1)
93
117
  faraday-net_http (~> 1.0)
118
+ faraday-net_http_persistent (~> 1.1)
119
+ faraday-patron (~> 1.0)
120
+ faraday-rack (~> 1.0)
94
121
  multipart-post (>= 1.2, < 3)
95
- ruby2_keywords
122
+ ruby2_keywords (>= 0.0.4)
123
+ faraday-em_http (1.0.0)
124
+ faraday-em_synchrony (1.0.0)
125
+ faraday-excon (1.1.0)
96
126
  faraday-http-cache (2.2.0)
97
127
  faraday (>= 0.8)
128
+ faraday-httpclient (1.0.1)
98
129
  faraday-net_http (1.0.1)
99
- fugit (1.4.2)
130
+ faraday-net_http_persistent (1.2.0)
131
+ faraday-patron (1.0.0)
132
+ faraday-rack (1.0.0)
133
+ fiber-local (1.0.0)
134
+ fugit (1.5.1)
100
135
  et-orbi (~> 1.1, >= 1.1.8)
101
136
  raabro (~> 1.4)
102
- github_changelog_generator (1.15.2)
137
+ github_changelog_generator (1.16.4)
103
138
  activesupport
139
+ async (>= 1.25.0)
140
+ async-http-faraday
104
141
  faraday-http-cache
105
142
  multi_json
106
143
  octokit (~> 4.6)
107
144
  rainbow (>= 2.2.1)
108
145
  rake (>= 10.0)
109
- retriable (~> 3.0)
110
- globalid (0.4.2)
111
- activesupport (>= 4.2.0)
146
+ globalid (0.5.2)
147
+ activesupport (>= 5.0)
112
148
  google-cloud-tasks (1.1.0)
113
149
  google-gax (~> 1.7)
114
150
  googleapis-common-protos (>= 1.3.9, < 2.0)
@@ -119,95 +155,100 @@ GEM
119
155
  googleauth (~> 0.9)
120
156
  grpc (~> 1.24)
121
157
  rly (~> 0.2.3)
122
- google-protobuf (3.15.5)
158
+ google-protobuf (3.17.3)
123
159
  googleapis-common-protos (1.3.11)
124
160
  google-protobuf (~> 3.14)
125
161
  googleapis-common-protos-types (>= 1.0.6, < 2.0)
126
162
  grpc (~> 1.27)
127
- googleapis-common-protos-types (1.0.6)
163
+ googleapis-common-protos-types (1.1.0)
128
164
  google-protobuf (~> 3.14)
129
- googleauth (0.16.0)
165
+ googleauth (0.17.0)
130
166
  faraday (>= 0.17.3, < 2.0)
131
167
  jwt (>= 1.4, < 3.0)
132
168
  memoist (~> 0.16)
133
169
  multi_json (~> 1.11)
134
170
  os (>= 0.9, < 2.0)
135
171
  signet (~> 0.14)
136
- grpc (1.36.0)
137
- google-protobuf (~> 3.14)
172
+ grpc (1.38.0)
173
+ google-protobuf (~> 3.15)
138
174
  googleapis-common-protos-types (~> 1.0)
139
175
  grpc-google-iam-v1 (0.6.11)
140
176
  google-protobuf (~> 3.14)
141
177
  googleapis-common-protos (>= 1.3.11, < 2.0)
142
178
  grpc (~> 1.27)
143
179
  hashdiff (1.0.1)
144
- i18n (1.8.9)
180
+ i18n (1.8.10)
145
181
  concurrent-ruby (~> 1.0)
146
182
  jaro_winkler (1.5.4)
147
- jwt (2.2.2)
148
- loofah (2.9.0)
183
+ jwt (2.2.3)
184
+ loofah (2.12.0)
149
185
  crass (~> 1.0.2)
150
186
  nokogiri (>= 1.5.9)
151
187
  mail (2.7.1)
152
188
  mini_mime (>= 0.1.1)
153
- marcel (0.3.3)
154
- mimemagic (~> 0.3.2)
189
+ marcel (1.0.1)
155
190
  memoist (0.16.2)
156
191
  method_source (1.0.0)
157
- mimemagic (0.3.5)
158
- mini_mime (1.0.2)
159
- mini_portile2 (2.5.0)
192
+ mini_mime (1.1.1)
193
+ mini_portile2 (2.6.1)
160
194
  minitest (5.14.4)
161
195
  multi_json (1.15.0)
162
196
  multipart-post (2.1.1)
163
- nio4r (2.5.7)
164
- nokogiri (1.11.2)
165
- mini_portile2 (~> 2.5.0)
197
+ nio4r (2.5.8)
198
+ nokogiri (1.12.3)
199
+ mini_portile2 (~> 2.6.1)
166
200
  racc (~> 1.4)
167
- octokit (4.20.0)
201
+ octokit (4.21.0)
168
202
  faraday (>= 0.9)
169
203
  sawyer (~> 0.8.0, >= 0.5.3)
170
204
  os (1.1.1)
171
205
  parallel (1.20.1)
172
- parser (3.0.0.0)
206
+ parser (3.0.2.0)
173
207
  ast (~> 2.4.1)
208
+ protocol-hpack (1.4.2)
209
+ protocol-http (0.22.5)
210
+ protocol-http1 (0.14.2)
211
+ protocol-http (~> 0.22)
212
+ protocol-http2 (0.14.2)
213
+ protocol-hpack (~> 1.4)
214
+ protocol-http (~> 0.18)
174
215
  public_suffix (4.0.6)
175
216
  raabro (1.4.0)
176
217
  racc (1.5.2)
177
218
  rack (2.2.3)
178
219
  rack-test (1.1.0)
179
220
  rack (>= 1.0, < 3)
180
- rails (6.1.3)
181
- actioncable (= 6.1.3)
182
- actionmailbox (= 6.1.3)
183
- actionmailer (= 6.1.3)
184
- actionpack (= 6.1.3)
185
- actiontext (= 6.1.3)
186
- actionview (= 6.1.3)
187
- activejob (= 6.1.3)
188
- activemodel (= 6.1.3)
189
- activerecord (= 6.1.3)
190
- activestorage (= 6.1.3)
191
- activesupport (= 6.1.3)
221
+ rails (6.1.4.1)
222
+ actioncable (= 6.1.4.1)
223
+ actionmailbox (= 6.1.4.1)
224
+ actionmailer (= 6.1.4.1)
225
+ actionpack (= 6.1.4.1)
226
+ actiontext (= 6.1.4.1)
227
+ actionview (= 6.1.4.1)
228
+ activejob (= 6.1.4.1)
229
+ activemodel (= 6.1.4.1)
230
+ activerecord (= 6.1.4.1)
231
+ activestorage (= 6.1.4.1)
232
+ activesupport (= 6.1.4.1)
192
233
  bundler (>= 1.15.0)
193
- railties (= 6.1.3)
234
+ railties (= 6.1.4.1)
194
235
  sprockets-rails (>= 2.0.0)
195
236
  rails-dom-testing (2.0.3)
196
237
  activesupport (>= 4.2.0)
197
238
  nokogiri (>= 1.6)
198
- rails-html-sanitizer (1.3.0)
239
+ rails-html-sanitizer (1.4.2)
199
240
  loofah (~> 2.3)
200
- railties (6.1.3)
201
- actionpack (= 6.1.3)
202
- activesupport (= 6.1.3)
241
+ railties (6.1.4.1)
242
+ actionpack (= 6.1.4.1)
243
+ activesupport (= 6.1.4.1)
203
244
  method_source
204
- rake (>= 0.8.7)
245
+ rake (>= 0.13)
205
246
  thor (~> 1.0)
206
247
  rainbow (3.0.0)
207
- rake (13.0.3)
208
- redis (4.2.5)
248
+ rake (13.0.6)
249
+ redis (4.4.0)
209
250
  retriable (3.1.2)
210
- rexml (3.2.4)
251
+ rexml (3.2.5)
211
252
  rly (0.2.3)
212
253
  rspec (3.10.0)
213
254
  rspec-core (~> 3.10.0)
@@ -222,7 +263,7 @@ GEM
222
263
  rspec-mocks (3.10.2)
223
264
  diff-lcs (>= 1.2.0, < 2.0)
224
265
  rspec-support (~> 3.10.0)
225
- rspec-rails (5.0.0)
266
+ rspec-rails (5.0.2)
226
267
  actionpack (>= 5.2)
227
268
  activesupport (>= 5.2)
228
269
  railties (>= 5.2)
@@ -241,11 +282,11 @@ GEM
241
282
  rubocop-rspec (1.37.0)
242
283
  rubocop (>= 0.68.1)
243
284
  ruby-progressbar (1.11.0)
244
- ruby2_keywords (0.0.4)
285
+ ruby2_keywords (0.0.5)
245
286
  sawyer (0.8.2)
246
287
  addressable (>= 2.3.5)
247
288
  faraday (> 0.8, < 2.0)
248
- semantic_logger (4.7.4)
289
+ semantic_logger (4.8.2)
249
290
  concurrent-ruby (~> 1.0)
250
291
  signet (0.15.0)
251
292
  addressable (~> 2.3)
@@ -262,14 +303,15 @@ GEM
262
303
  sqlite3 (1.4.2)
263
304
  thor (1.1.0)
264
305
  timecop (0.9.4)
306
+ timers (4.3.3)
265
307
  tzinfo (2.0.4)
266
308
  concurrent-ruby (~> 1.0)
267
309
  unicode-display_width (1.6.1)
268
- webmock (3.12.1)
269
- addressable (>= 2.3.6)
310
+ webmock (3.14.0)
311
+ addressable (>= 2.8.0)
270
312
  crack (>= 0.3.2)
271
313
  hashdiff (>= 0.4.0, < 2.0.0)
272
- websocket-driver (0.7.3)
314
+ websocket-driver (0.7.5)
273
315
  websocket-extensions (>= 0.1.0)
274
316
  websocket-extensions (0.1.5)
275
317
  zeitwerk (2.4.2)