oauth2 2.0.10 → 2.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +671 -286
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +24 -23
- data/CONTRIBUTING.md +130 -48
- data/FUNDING.md +74 -0
- data/IRP.md +107 -0
- data/LICENSE.txt +2 -2
- data/OIDC.md +167 -0
- data/README.md +1049 -458
- data/REEK +0 -0
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +13 -15
- data/THREAT_MODEL.md +85 -0
- data/lib/oauth2/access_token.rb +51 -7
- data/lib/oauth2/authenticator.rb +30 -1
- data/lib/oauth2/client.rb +35 -15
- data/lib/oauth2/error.rb +21 -3
- data/lib/oauth2/filtered_attributes.rb +21 -0
- data/lib/oauth2/response.rb +63 -31
- data/lib/oauth2/strategy/assertion.rb +6 -3
- data/lib/oauth2/strategy/auth_code.rb +10 -0
- data/lib/oauth2/strategy/base.rb +0 -0
- data/lib/oauth2/strategy/implicit.rb +8 -0
- data/lib/oauth2/strategy/password.rb +8 -0
- data/lib/oauth2/version.rb +1 -1
- data/lib/oauth2.rb +36 -0
- data/sig/oauth2/access_token.rbs +25 -0
- data/sig/oauth2/authenticator.rbs +22 -0
- data/sig/oauth2/client.rbs +52 -0
- data/sig/oauth2/error.rbs +8 -0
- data/sig/oauth2/filtered_attributes.rbs +6 -0
- data/sig/oauth2/response.rbs +18 -0
- data/sig/oauth2/strategy.rbs +34 -0
- data/sig/oauth2/version.rbs +5 -0
- data/sig/oauth2.rbs +9 -0
- data.tar.gz.sig +0 -0
- metadata +138 -86
- metadata.gz.sig +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oauth2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.18
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Boling
|
|
@@ -37,7 +37,7 @@ cert_chain:
|
|
|
37
37
|
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
|
38
38
|
L9nRqA==
|
|
39
39
|
-----END CERTIFICATE-----
|
|
40
|
-
date:
|
|
40
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
41
41
|
dependencies:
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: faraday
|
|
@@ -134,6 +134,9 @@ dependencies:
|
|
|
134
134
|
- - "~>"
|
|
135
135
|
- !ruby/object:Gem::Version
|
|
136
136
|
version: '2.0'
|
|
137
|
+
- - ">="
|
|
138
|
+
- !ruby/object:Gem::Version
|
|
139
|
+
version: 2.0.3
|
|
137
140
|
type: :runtime
|
|
138
141
|
prerelease: false
|
|
139
142
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -141,26 +144,29 @@ dependencies:
|
|
|
141
144
|
- - "~>"
|
|
142
145
|
- !ruby/object:Gem::Version
|
|
143
146
|
version: '2.0'
|
|
147
|
+
- - ">="
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: 2.0.3
|
|
144
150
|
- !ruby/object:Gem::Dependency
|
|
145
151
|
name: version_gem
|
|
146
152
|
requirement: !ruby/object:Gem::Requirement
|
|
147
153
|
requirements:
|
|
148
|
-
- - "
|
|
154
|
+
- - "~>"
|
|
149
155
|
- !ruby/object:Gem::Version
|
|
150
|
-
version: 1.1
|
|
151
|
-
- - "
|
|
156
|
+
version: '1.1'
|
|
157
|
+
- - ">="
|
|
152
158
|
- !ruby/object:Gem::Version
|
|
153
|
-
version:
|
|
159
|
+
version: 1.1.9
|
|
154
160
|
type: :runtime
|
|
155
161
|
prerelease: false
|
|
156
162
|
version_requirements: !ruby/object:Gem::Requirement
|
|
157
163
|
requirements:
|
|
158
|
-
- - "
|
|
164
|
+
- - "~>"
|
|
159
165
|
- !ruby/object:Gem::Version
|
|
160
|
-
version: 1.1
|
|
161
|
-
- - "
|
|
166
|
+
version: '1.1'
|
|
167
|
+
- - ">="
|
|
162
168
|
- !ruby/object:Gem::Version
|
|
163
|
-
version:
|
|
169
|
+
version: 1.1.9
|
|
164
170
|
- !ruby/object:Gem::Dependency
|
|
165
171
|
name: addressable
|
|
166
172
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -182,39 +188,67 @@ dependencies:
|
|
|
182
188
|
- !ruby/object:Gem::Version
|
|
183
189
|
version: 2.8.7
|
|
184
190
|
- !ruby/object:Gem::Dependency
|
|
185
|
-
name:
|
|
191
|
+
name: nkf
|
|
186
192
|
requirement: !ruby/object:Gem::Requirement
|
|
187
193
|
requirements:
|
|
188
194
|
- - "~>"
|
|
189
195
|
- !ruby/object:Gem::Version
|
|
190
|
-
version: '
|
|
196
|
+
version: '0.2'
|
|
197
|
+
type: :development
|
|
198
|
+
prerelease: false
|
|
199
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
200
|
+
requirements:
|
|
201
|
+
- - "~>"
|
|
202
|
+
- !ruby/object:Gem::Version
|
|
203
|
+
version: '0.2'
|
|
204
|
+
- !ruby/object:Gem::Dependency
|
|
205
|
+
name: rexml
|
|
206
|
+
requirement: !ruby/object:Gem::Requirement
|
|
207
|
+
requirements:
|
|
208
|
+
- - "~>"
|
|
209
|
+
- !ruby/object:Gem::Version
|
|
210
|
+
version: '3.2'
|
|
191
211
|
- - ">="
|
|
192
212
|
- !ruby/object:Gem::Version
|
|
193
|
-
version: 3.
|
|
213
|
+
version: 3.2.5
|
|
194
214
|
type: :development
|
|
195
215
|
prerelease: false
|
|
196
216
|
version_requirements: !ruby/object:Gem::Requirement
|
|
197
217
|
requirements:
|
|
198
218
|
- - "~>"
|
|
199
219
|
- !ruby/object:Gem::Version
|
|
200
|
-
version: '3.
|
|
220
|
+
version: '3.2'
|
|
201
221
|
- - ">="
|
|
202
222
|
- !ruby/object:Gem::Version
|
|
203
|
-
version: 3.
|
|
223
|
+
version: 3.2.5
|
|
204
224
|
- !ruby/object:Gem::Dependency
|
|
205
|
-
name:
|
|
225
|
+
name: kettle-dev
|
|
206
226
|
requirement: !ruby/object:Gem::Requirement
|
|
207
227
|
requirements:
|
|
208
228
|
- - "~>"
|
|
209
229
|
- !ruby/object:Gem::Version
|
|
210
|
-
version: '
|
|
230
|
+
version: '1.1'
|
|
211
231
|
type: :development
|
|
212
232
|
prerelease: false
|
|
213
233
|
version_requirements: !ruby/object:Gem::Requirement
|
|
214
234
|
requirements:
|
|
215
235
|
- - "~>"
|
|
216
236
|
- !ruby/object:Gem::Version
|
|
217
|
-
version: '
|
|
237
|
+
version: '1.1'
|
|
238
|
+
- !ruby/object:Gem::Dependency
|
|
239
|
+
name: bundler-audit
|
|
240
|
+
requirement: !ruby/object:Gem::Requirement
|
|
241
|
+
requirements:
|
|
242
|
+
- - "~>"
|
|
243
|
+
- !ruby/object:Gem::Version
|
|
244
|
+
version: 0.9.2
|
|
245
|
+
type: :development
|
|
246
|
+
prerelease: false
|
|
247
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
248
|
+
requirements:
|
|
249
|
+
- - "~>"
|
|
250
|
+
- !ruby/object:Gem::Version
|
|
251
|
+
version: 0.9.2
|
|
218
252
|
- !ruby/object:Gem::Dependency
|
|
219
253
|
name: rake
|
|
220
254
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -230,41 +264,41 @@ dependencies:
|
|
|
230
264
|
- !ruby/object:Gem::Version
|
|
231
265
|
version: '13.0'
|
|
232
266
|
- !ruby/object:Gem::Dependency
|
|
233
|
-
name:
|
|
267
|
+
name: require_bench
|
|
234
268
|
requirement: !ruby/object:Gem::Requirement
|
|
235
269
|
requirements:
|
|
236
270
|
- - "~>"
|
|
237
271
|
- !ruby/object:Gem::Version
|
|
238
|
-
version: '
|
|
272
|
+
version: '1.0'
|
|
239
273
|
- - ">="
|
|
240
274
|
- !ruby/object:Gem::Version
|
|
241
|
-
version:
|
|
275
|
+
version: 1.0.4
|
|
242
276
|
type: :development
|
|
243
277
|
prerelease: false
|
|
244
278
|
version_requirements: !ruby/object:Gem::Requirement
|
|
245
279
|
requirements:
|
|
246
280
|
- - "~>"
|
|
247
281
|
- !ruby/object:Gem::Version
|
|
248
|
-
version: '
|
|
282
|
+
version: '1.0'
|
|
249
283
|
- - ">="
|
|
250
284
|
- !ruby/object:Gem::Version
|
|
251
|
-
version:
|
|
285
|
+
version: 1.0.4
|
|
252
286
|
- !ruby/object:Gem::Dependency
|
|
253
|
-
name:
|
|
287
|
+
name: appraisal2
|
|
254
288
|
requirement: !ruby/object:Gem::Requirement
|
|
255
289
|
requirements:
|
|
256
290
|
- - "~>"
|
|
257
291
|
- !ruby/object:Gem::Version
|
|
258
|
-
version: '3.
|
|
292
|
+
version: '3.0'
|
|
259
293
|
type: :development
|
|
260
294
|
prerelease: false
|
|
261
295
|
version_requirements: !ruby/object:Gem::Requirement
|
|
262
296
|
requirements:
|
|
263
297
|
- - "~>"
|
|
264
298
|
- !ruby/object:Gem::Version
|
|
265
|
-
version: '3.
|
|
299
|
+
version: '3.0'
|
|
266
300
|
- !ruby/object:Gem::Dependency
|
|
267
|
-
name:
|
|
301
|
+
name: kettle-test
|
|
268
302
|
requirement: !ruby/object:Gem::Requirement
|
|
269
303
|
requirements:
|
|
270
304
|
- - "~>"
|
|
@@ -284,27 +318,21 @@ dependencies:
|
|
|
284
318
|
- !ruby/object:Gem::Version
|
|
285
319
|
version: 1.0.6
|
|
286
320
|
- !ruby/object:Gem::Dependency
|
|
287
|
-
name:
|
|
321
|
+
name: ruby-progressbar
|
|
288
322
|
requirement: !ruby/object:Gem::Requirement
|
|
289
323
|
requirements:
|
|
290
324
|
- - "~>"
|
|
291
325
|
- !ruby/object:Gem::Version
|
|
292
|
-
version: '
|
|
293
|
-
- - ">="
|
|
294
|
-
- !ruby/object:Gem::Version
|
|
295
|
-
version: 0.1.17
|
|
326
|
+
version: '1.13'
|
|
296
327
|
type: :development
|
|
297
328
|
prerelease: false
|
|
298
329
|
version_requirements: !ruby/object:Gem::Requirement
|
|
299
330
|
requirements:
|
|
300
331
|
- - "~>"
|
|
301
332
|
- !ruby/object:Gem::Version
|
|
302
|
-
version: '
|
|
303
|
-
- - ">="
|
|
304
|
-
- !ruby/object:Gem::Version
|
|
305
|
-
version: 0.1.17
|
|
333
|
+
version: '1.13'
|
|
306
334
|
- !ruby/object:Gem::Dependency
|
|
307
|
-
name:
|
|
335
|
+
name: stone_checksums
|
|
308
336
|
requirement: !ruby/object:Gem::Requirement
|
|
309
337
|
requirements:
|
|
310
338
|
- - "~>"
|
|
@@ -324,7 +352,7 @@ dependencies:
|
|
|
324
352
|
- !ruby/object:Gem::Version
|
|
325
353
|
version: 1.0.2
|
|
326
354
|
- !ruby/object:Gem::Dependency
|
|
327
|
-
name:
|
|
355
|
+
name: gitmoji-regex
|
|
328
356
|
requirement: !ruby/object:Gem::Requirement
|
|
329
357
|
requirements:
|
|
330
358
|
- - "~>"
|
|
@@ -332,7 +360,7 @@ dependencies:
|
|
|
332
360
|
version: '1.0'
|
|
333
361
|
- - ">="
|
|
334
362
|
- !ruby/object:Gem::Version
|
|
335
|
-
version: 1.0.
|
|
363
|
+
version: 1.0.3
|
|
336
364
|
type: :development
|
|
337
365
|
prerelease: false
|
|
338
366
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -342,41 +370,62 @@ dependencies:
|
|
|
342
370
|
version: '1.0'
|
|
343
371
|
- - ">="
|
|
344
372
|
- !ruby/object:Gem::Version
|
|
345
|
-
version: 1.0.
|
|
373
|
+
version: 1.0.3
|
|
346
374
|
- !ruby/object:Gem::Dependency
|
|
347
|
-
name:
|
|
375
|
+
name: backports
|
|
348
376
|
requirement: !ruby/object:Gem::Requirement
|
|
349
377
|
requirements:
|
|
350
378
|
- - "~>"
|
|
351
379
|
- !ruby/object:Gem::Version
|
|
352
|
-
version: '
|
|
380
|
+
version: '3.25'
|
|
381
|
+
- - ">="
|
|
382
|
+
- !ruby/object:Gem::Version
|
|
383
|
+
version: 3.25.1
|
|
353
384
|
type: :development
|
|
354
385
|
prerelease: false
|
|
355
386
|
version_requirements: !ruby/object:Gem::Requirement
|
|
356
387
|
requirements:
|
|
357
388
|
- - "~>"
|
|
358
389
|
- !ruby/object:Gem::Version
|
|
359
|
-
version: '
|
|
360
|
-
|
|
390
|
+
version: '3.25'
|
|
391
|
+
- - ">="
|
|
392
|
+
- !ruby/object:Gem::Version
|
|
393
|
+
version: 3.25.1
|
|
394
|
+
description: "\U0001F510 A Ruby wrapper for the OAuth 2.0 Authorization Framework,
|
|
395
|
+
including the OAuth 2.1 draft spec, and OpenID Connect (OIDC)"
|
|
361
396
|
email:
|
|
362
|
-
-
|
|
397
|
+
- floss@galtzo.com
|
|
363
398
|
- oauth-ruby@googlegroups.com
|
|
364
399
|
executables: []
|
|
365
400
|
extensions: []
|
|
366
401
|
extra_rdoc_files:
|
|
367
402
|
- CHANGELOG.md
|
|
403
|
+
- CITATION.cff
|
|
368
404
|
- CODE_OF_CONDUCT.md
|
|
369
405
|
- CONTRIBUTING.md
|
|
406
|
+
- FUNDING.md
|
|
407
|
+
- IRP.md
|
|
370
408
|
- LICENSE.txt
|
|
409
|
+
- OIDC.md
|
|
371
410
|
- README.md
|
|
411
|
+
- REEK
|
|
412
|
+
- RUBOCOP.md
|
|
372
413
|
- SECURITY.md
|
|
414
|
+
- THREAT_MODEL.md
|
|
373
415
|
files:
|
|
374
416
|
- CHANGELOG.md
|
|
417
|
+
- CITATION.cff
|
|
375
418
|
- CODE_OF_CONDUCT.md
|
|
376
419
|
- CONTRIBUTING.md
|
|
420
|
+
- FUNDING.md
|
|
421
|
+
- IRP.md
|
|
377
422
|
- LICENSE.txt
|
|
423
|
+
- OIDC.md
|
|
378
424
|
- README.md
|
|
425
|
+
- REEK
|
|
426
|
+
- RUBOCOP.md
|
|
379
427
|
- SECURITY.md
|
|
428
|
+
- THREAT_MODEL.md
|
|
380
429
|
- lib/oauth2.rb
|
|
381
430
|
- lib/oauth2/access_token.rb
|
|
382
431
|
- lib/oauth2/authenticator.rb
|
|
@@ -391,60 +440,63 @@ files:
|
|
|
391
440
|
- lib/oauth2/strategy/implicit.rb
|
|
392
441
|
- lib/oauth2/strategy/password.rb
|
|
393
442
|
- lib/oauth2/version.rb
|
|
394
|
-
|
|
443
|
+
- sig/oauth2.rbs
|
|
444
|
+
- sig/oauth2/access_token.rbs
|
|
445
|
+
- sig/oauth2/authenticator.rbs
|
|
446
|
+
- sig/oauth2/client.rbs
|
|
447
|
+
- sig/oauth2/error.rbs
|
|
448
|
+
- sig/oauth2/filtered_attributes.rbs
|
|
449
|
+
- sig/oauth2/response.rbs
|
|
450
|
+
- sig/oauth2/strategy.rbs
|
|
451
|
+
- sig/oauth2/version.rbs
|
|
452
|
+
homepage: https://github.com/ruby-oauth/oauth2
|
|
395
453
|
licenses:
|
|
396
454
|
- MIT
|
|
397
455
|
metadata:
|
|
398
|
-
homepage_uri: https://
|
|
399
|
-
source_code_uri: https://
|
|
400
|
-
changelog_uri: https://
|
|
401
|
-
bug_tracker_uri: https://
|
|
402
|
-
documentation_uri: https://www.rubydoc.info/gems/oauth2/2.0.
|
|
403
|
-
wiki_uri: https://gitlab.com/oauth-xx/oauth2/-/wiki
|
|
456
|
+
homepage_uri: https://oauth2.galtzo.com/
|
|
457
|
+
source_code_uri: https://github.com/ruby-oauth/oauth2/tree/v2.0.18
|
|
458
|
+
changelog_uri: https://github.com/ruby-oauth/oauth2/blob/v2.0.18/CHANGELOG.md
|
|
459
|
+
bug_tracker_uri: https://github.com/ruby-oauth/oauth2/issues
|
|
460
|
+
documentation_uri: https://www.rubydoc.info/gems/oauth2/2.0.18
|
|
404
461
|
mailing_list_uri: https://groups.google.com/g/oauth-ruby
|
|
462
|
+
funding_uri: https://github.com/sponsors/pboling
|
|
463
|
+
wiki_uri: https://gitlab.com/ruby-oauth/oauth2/-/wiki
|
|
405
464
|
news_uri: https://www.railsbling.com/tags/oauth2
|
|
406
|
-
|
|
465
|
+
discord_uri: https://discord.gg/3qme4XHNKN
|
|
407
466
|
rubygems_mfa_required: 'true'
|
|
408
467
|
post_install_message: |2
|
|
409
468
|
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
There are BREAKING changes if you are upgrading from < v2, but most will not encounter them, and updating your code should be easy!
|
|
413
|
-
Please see:
|
|
414
|
-
• https://gitlab.com/oauth-xx/oauth2/-/blob/main/SECURITY.md
|
|
415
|
-
• https://gitlab.com/oauth-xx/oauth2/-/blob/v2.0.10/CHANGELOG.md#200-2022-06-21-tag
|
|
416
|
-
• Summary of most important breaking changes: https://gitlab.com/oauth-xx/oauth2#what-is-new-for-v20
|
|
469
|
+
---+++--- oauth2 v2.0.18 ---+++---
|
|
417
470
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
https://
|
|
471
|
+
(minor) ⚠️ BREAKING CHANGES ⚠️ when upgrading from < v2
|
|
472
|
+
• Summary of breaking changes: https://gitlab.com/ruby-oauth/oauth2#what-is-new-for-v20
|
|
473
|
+
• Changes in this patch: https://gitlab.com/ruby-oauth/oauth2/-/blob/v2.0.18/CHANGELOG.md#2015-2025-09-08
|
|
421
474
|
|
|
422
|
-
|
|
423
|
-
1.
|
|
424
|
-
|
|
425
|
-
|
|
475
|
+
News:
|
|
476
|
+
1. New documentation website, including for OAuth 2.1 and OIDC: https://oauth2.galtzo.com
|
|
477
|
+
2. New official Discord for discussion and support: https://discord.gg/3qme4XHNKN
|
|
478
|
+
3. New org name "ruby-oauth" on Open Source Collective, GitHub, GitLab, Codeberg (update git remotes!)
|
|
479
|
+
4. Non-commercial support for the 2.x series will end by April, 2026. Please make a plan to upgrade to the next version prior to that date.
|
|
426
480
|
Support will be dropped for Ruby 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1 and any other Ruby versions which will also have reached EOL by then.
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
Please report issues, and star the project!
|
|
441
|
-
|
|
442
|
-
Thanks, |7eter l-|. l3oling
|
|
481
|
+
5. Gem releases are cryptographically signed with a 20-year cert; SHA-256 & SHA-512 checksums by stone_checksums.
|
|
482
|
+
6. Please consider supporting this project:
|
|
483
|
+
• https://opencollective.com/ruby-oauth (new!)
|
|
484
|
+
• https://liberapay.com/pboling
|
|
485
|
+
• https://github.com/sponsors/pboling
|
|
486
|
+
• https://www.paypal.com/paypalme/peterboling
|
|
487
|
+
• https://ko-fi.com/pboling
|
|
488
|
+
• https://www.buymeacoffee.com/pboling
|
|
489
|
+
• https://tidelift.com/funding/github/rubygems/oauth
|
|
490
|
+
• Hire me - I can build anything
|
|
491
|
+
• Report issues, and star the project
|
|
492
|
+
Thanks, @pboling / @galtzo
|
|
443
493
|
rdoc_options:
|
|
444
494
|
- "--title"
|
|
445
|
-
- oauth2 - OAuth 2.0 Core Ruby implementation
|
|
495
|
+
- "oauth2 - \U0001F510 OAuth 2.0, 2.1 & OIDC Core Ruby implementation"
|
|
446
496
|
- "--main"
|
|
447
497
|
- README.md
|
|
498
|
+
- "--exclude"
|
|
499
|
+
- "^sig/"
|
|
448
500
|
- "--line-numbers"
|
|
449
501
|
- "--inline-source"
|
|
450
502
|
- "--quiet"
|
|
@@ -461,7 +513,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
461
513
|
- !ruby/object:Gem::Version
|
|
462
514
|
version: '0'
|
|
463
515
|
requirements: []
|
|
464
|
-
rubygems_version: 3.
|
|
516
|
+
rubygems_version: 3.7.2
|
|
465
517
|
specification_version: 4
|
|
466
|
-
summary: OAuth 2.0 Core Ruby implementation
|
|
518
|
+
summary: "\U0001F510 OAuth 2.0, 2.1 & OIDC Core Ruby implementation"
|
|
467
519
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|