ruby-openid2 3.0.2 → 3.1.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15467f52e14a2b271ce6b408e97634fb60867eb0c3f929d0b61555dd69fe1d3c
4
- data.tar.gz: 3e60ef2dc233dc131737ea77e0c6202027f14579c6c75213c8cb23fdb81e9cf0
3
+ metadata.gz: aa31fc29bbf8aef1d9213a67a8e1ebd3bceb9ab8406a7ddb9ba0487730f5abc5
4
+ data.tar.gz: 43f597a4dd3112ff08ae4831d28d76bfbbd8fe906ef36f56be0e9ed2c543080c
5
5
  SHA512:
6
- metadata.gz: dfea6134f3e52e4123f54a5237c04415c80f62b7b40eba4537fd9abbd77b6c633dbcce6466c226e7a153282e3b566b5913d03c971c0e6c358572b45fb703cd35
7
- data.tar.gz: 34f28d9d8616e257afa6138f544b89780e9262b3a6b5f77a44530b6e40440677be23dacdf0a7947779578bfb8257f1e33e8fd3ccc02289106e6ee5a0f8b974b4
6
+ metadata.gz: 6470638e00d718e2d61a95be127b7cf8d05b72cb0d52b963b22f451c046adde7b75a8e8918a54654d80535e41063c013d6f4bb7de62fd13222301f50c5757e2e
7
+ data.tar.gz: 47b7a8835cd2723202149fd65539e3b145e20e46c339407021e335055eb43dc80554f1dd7767a9f43422b9e91577f8bf7beb95d4e67e8b789ece0c09e5c19106
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -10,17 +10,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Fixed
11
11
  ### Removed
12
12
 
13
+ ## 3.1.0 - 2024-09-24
14
+ - COVERAGE: 91.81% -- 3520/3834 lines in 49 files
15
+ - BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 49 files
16
+ - 63.08% documented
17
+ ### Removed
18
+ - Direct dependency on logger, rexml, net-http, & uri
19
+ - these stdlib gems became deprecated in favor of the stand alone versions in Ruby 3.3
20
+ - they will begin to raise an error in Ruby 3.5.
21
+ - Downstream code should add them explicitly to move away from the stdlib versions sooner than Ruby 3.5
22
+ - Ref: https://github.com/rubygems/rubygems/issues/7178#issuecomment-2372558363
23
+
24
+ ## 3.0.3 - 2024-09-24
25
+ ### Fixed
26
+ - Add logger gem for Ruby 3.5 compatibility
27
+ - Restrict minitest to < 6, because first we must use assert_nil if expecting nil
28
+
13
29
  ## 3.0.2 - 2024-09-24
14
- COVERAGE: 91.72% -- 3522/3840 lines in 49 files
15
- BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 49 files
16
- 63.08% documented
30
+ - COVERAGE: 91.72% -- 3522/3840 lines in 49 files
31
+ - BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 49 files
32
+ - 63.08% documented
17
33
  ### Added
18
34
  - Automatic loading via bundler
19
35
 
20
36
  ## 3.0.1 - 2024-09-20
21
- COVERAGE: 91.72% -- 3521/3839 lines in 48 files
22
- BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 48 files
23
- 63.08% documented
37
+ - COVERAGE: 91.72% -- 3521/3839 lines in 48 files
38
+ - BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 48 files
39
+ - 63.08% documented
24
40
  ### Added
25
41
  - More and better documentation
26
42
  ### Fixed
@@ -33,8 +49,8 @@ BRANCH COVERAGE: 87.03% -- 1074/1234 branches in 48 files
33
49
  - Copyright years in LICENSE.txt
34
50
 
35
51
  ## 3.0.0 - 2024-09-04
36
- 3839 relevant lines, 3521 lines covered and 318 lines missed. ( 91.72% )
37
- 1234 total branches, 1073 branches covered and 161 branches missed. ( 86.95% )
52
+ - 3839 relevant lines, 3521 lines covered and 318 lines missed. ( 91.72% )
53
+ - 1234 total branches, 1073 branches covered and 161 branches missed. ( 86.95% )
38
54
  ### Fixed
39
55
  - Compatibility with Ruby 2.7+
40
56
  ### Removed
data/README.md CHANGED
@@ -110,6 +110,17 @@ Check the installation:
110
110
 
111
111
  The library is known to work with Ruby 1.9.2 and above on Unix, Max OS X and Win32.
112
112
 
113
+ ### Note about the deprecation of stdlib gems `logger`, `rexml`, `net-http`, and `uri`
114
+
115
+ Versions 3.0.x were released with hard dependencies on the new stand alone gem replacements
116
+ for the old stdlib gems.
117
+
118
+ This made it impossible for downstream libraries to make the choice to stay on the old stdlib gems.
119
+
120
+ As a result, starting with version 3.1.0, they will not be direct dependencies.
121
+
122
+ See [this discussion](https://github.com/rubygems/rubygems/issues/7178#issuecomment-2372558363) for more information.
123
+
113
124
  ## Getting Started
114
125
 
115
126
  The best way to start is to look at the rails_openid example.
@@ -1,5 +1,5 @@
1
1
  module OpenID
2
2
  module Version
3
- VERSION = "3.0.2"
3
+ VERSION = "3.1.0"
4
4
  end
5
5
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-openid2
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - JanRain, Inc
@@ -37,48 +37,8 @@ cert_chain:
37
37
  I5o+DRfXQHqKucx1ldFHvI2rE/kSCWqGTHN2eyu1sqCPeOoIMxrltJhaejKPkxqj
38
38
  zaF9Og==
39
39
  -----END CERTIFICATE-----
40
- date: 2024-09-24 00:00:00.000000000 Z
40
+ date: 2024-09-25 00:00:00.000000000 Z
41
41
  dependencies:
42
- - !ruby/object:Gem::Dependency
43
- name: net-http
44
- requirement: !ruby/object:Gem::Requirement
45
- requirements:
46
- - - "~>"
47
- - !ruby/object:Gem::Version
48
- version: '0.4'
49
- - - ">="
50
- - !ruby/object:Gem::Version
51
- version: 0.4.1
52
- type: :runtime
53
- prerelease: false
54
- version_requirements: !ruby/object:Gem::Requirement
55
- requirements:
56
- - - "~>"
57
- - !ruby/object:Gem::Version
58
- version: '0.4'
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: 0.4.1
62
- - !ruby/object:Gem::Dependency
63
- name: rexml
64
- requirement: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '3.3'
69
- - - ">="
70
- - !ruby/object:Gem::Version
71
- version: 3.3.7
72
- type: :runtime
73
- prerelease: false
74
- version_requirements: !ruby/object:Gem::Requirement
75
- requirements:
76
- - - "~>"
77
- - !ruby/object:Gem::Version
78
- version: '3.3'
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: 3.3.7
82
42
  - !ruby/object:Gem::Dependency
83
43
  name: version_gem
84
44
  requirement: !ruby/object:Gem::Requirement
@@ -106,6 +66,9 @@ dependencies:
106
66
  - - ">="
107
67
  - !ruby/object:Gem::Version
108
68
  version: '5'
69
+ - - "<"
70
+ - !ruby/object:Gem::Version
71
+ version: '6'
109
72
  type: :development
110
73
  prerelease: false
111
74
  version_requirements: !ruby/object:Gem::Requirement
@@ -113,6 +76,9 @@ dependencies:
113
76
  - - ">="
114
77
  - !ruby/object:Gem::Version
115
78
  version: '5'
79
+ - - "<"
80
+ - !ruby/object:Gem::Version
81
+ version: '6'
116
82
  - !ruby/object:Gem::Dependency
117
83
  name: rake
118
84
  requirement: !ruby/object:Gem::Requirement
@@ -336,10 +302,10 @@ licenses:
336
302
  - Apache Software License 2.0
337
303
  metadata:
338
304
  homepage_uri: https://github.com/oauth-xx/ruby-openid2
339
- source_code_uri: https://github.com/oauth-xx/ruby-openid2/tree/v3.0.2
340
- changelog_uri: https://github.com/oauth-xx/ruby-openid2/blob/v3.0.2/CHANGELOG.md
305
+ source_code_uri: https://github.com/oauth-xx/ruby-openid2/tree/v3.1.0
306
+ changelog_uri: https://github.com/oauth-xx/ruby-openid2/blob/v3.1.0/CHANGELOG.md
341
307
  bug_tracker_uri: https://github.com/oauth-xx/ruby-openid2/issues
342
- documentation_uri: https://www.rubydoc.info/gems/ruby-openid2/3.0.2
308
+ documentation_uri: https://www.rubydoc.info/gems/ruby-openid2/3.1.0
343
309
  wiki_uri: https://github.com/oauth-xx/ruby-openid2/wiki
344
310
  funding_uri: https://liberapay.com/pboling
345
311
  rubygems_mfa_required: 'true'
@@ -358,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
358
324
  - !ruby/object:Gem::Version
359
325
  version: '0'
360
326
  requirements: []
361
- rubygems_version: 3.4.22
327
+ rubygems_version: 3.5.18
362
328
  signing_key:
363
329
  specification_version: 4
364
330
  summary: A library for consuming and serving OpenID identities.
metadata.gz.sig CHANGED
Binary file