omniauth-identity 3.1.1 → 3.1.3
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 +68 -20
- data/CODE_OF_CONDUCT.md +24 -22
- data/CONTRIBUTING.md +65 -41
- data/LICENSE.txt +1 -1
- data/README.md +330 -173
- data/SECURITY.md +30 -8
- data/lib/omniauth/identity/version.rb +1 -1
- data/lib/omniauth/identity.rb +1 -1
- data/lib/omniauth/strategies/identity.rb +3 -3
- data/lib/omniauth-identity.rb +1 -1
- data.tar.gz.sig +2 -2
- metadata +84 -67
- metadata.gz.sig +0 -0
data/SECURITY.md
CHANGED
@@ -10,14 +10,36 @@
|
|
10
10
|
| 1.x | ❌ |
|
11
11
|
| 0.x | ❌ |
|
12
12
|
|
13
|
-
##
|
13
|
+
## Security contact information
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
To report a security vulnerability, please use the
|
16
|
+
[Tidelift security contact](https://tidelift.com/security).
|
17
|
+
Tidelift will coordinate the fix and disclosure.
|
18
18
|
|
19
|
-
|
20
|
-
please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
|
21
|
-
or find other sponsorship links in the [README].
|
19
|
+
## Additional Support
|
22
20
|
|
23
|
-
|
21
|
+
Interested in support for versions older than the latest release?
|
22
|
+
Consider sponsoring the project / maintainer.
|
23
|
+
|
24
|
+
[![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
|
25
|
+
|
26
|
+
[⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay
|
27
|
+
[⛳liberapay]: https://liberapay.com/pboling/donate
|
28
|
+
[🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
|
29
|
+
[🖇sponsor]: https://github.com/sponsors/pboling
|
30
|
+
[🖇polar-img]: https://img.shields.io/badge/polar-donate-yellow.svg
|
31
|
+
[🖇polar]: https://polar.sh/pboling
|
32
|
+
[🖇kofi-img]: https://img.shields.io/badge/a_more_different_coffee-✓-yellow.svg
|
33
|
+
[🖇kofi]: https://ko-fi.com/O5O86SNP4
|
34
|
+
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
|
35
|
+
[🖇patreon]: https://patreon.com/galtzo
|
36
|
+
[🖇buyme]: https://www.buymeacoffee.com/pboling
|
37
|
+
[🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-✓-yellow.svg?style=flat
|
38
|
+
|
39
|
+
## Enterprise Support
|
40
|
+
|
41
|
+
Available as part of the Tidelift Subscription.
|
42
|
+
|
43
|
+
The maintainers of this library and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source packages you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers for the exact packages you use. [Learn more.][tidelift-ref]
|
44
|
+
|
45
|
+
[tidelift-ref]: https://tidelift.com/subscription/pkg/rubygems-omniauth-identity?utm_source=rubygems-omniauth-identity&utm_medium=referral&utm_campaign=enterprise&utm_term=repo
|
data/lib/omniauth/identity.rb
CHANGED
@@ -8,7 +8,7 @@ unless defined?(OmniAuth::Identity::Version::VERSION)
|
|
8
8
|
# this library's version
|
9
9
|
require "omniauth/identity/version"
|
10
10
|
|
11
|
-
#
|
11
|
+
# Configure version before loading the rest of the library
|
12
12
|
OmniAuth::Identity::Version.class_eval do
|
13
13
|
extend VersionGem::Basic
|
14
14
|
end
|
@@ -52,9 +52,9 @@ module OmniAuth
|
|
52
52
|
elsif options[:enable_login] && on_request_path?
|
53
53
|
# OmniAuth, by default, disables "GET" requests for security reasons.
|
54
54
|
# This effectively disables omniauth-identity tool's login form feature.
|
55
|
-
# Because it is disabled by default, and because enabling it would
|
56
|
-
# OmniAuth strategies that
|
57
|
-
# Instead we
|
55
|
+
# Because it is disabled by default, and because enabling it globally would affect the security of all
|
56
|
+
# other OmniAuth strategies that are present, we do not ask users to modify that setting.
|
57
|
+
# Instead, we use this hook in the "other_phase", with a config setting of our own: `enable_login`
|
58
58
|
request_phase
|
59
59
|
else
|
60
60
|
call_app!
|
data/lib/omniauth-identity.rb
CHANGED
@@ -6,7 +6,7 @@ require "version_gem"
|
|
6
6
|
# this library's version
|
7
7
|
require "omniauth/identity/version"
|
8
8
|
|
9
|
-
#
|
9
|
+
# Configure version before loading the rest of the library
|
10
10
|
OmniAuth::Identity::Version.class_eval do
|
11
11
|
extend VersionGem::Basic
|
12
12
|
end
|
data.tar.gz.sig
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
.&5�*�}����[��ړ��G>���Qf�����6uЀ����p:�ƶ��3�'d�t��ּ��`�i��ğ��3�/��F�'c9��ZR5��D /��6�6z�#��2���1�)U�5�hX2�=�]�! 6�<��n!<"�W�#�� ��P}�R����✒����<��hZ`�'G:6{ox=�_���ر�'�t3�ll�r�ƜdT�S1�-������`F��c�ԩ�t��]��&��c\��ꐤ������W�ܫ�
|
2
|
+
���x�����U'��� ���ͷ��WYO�%2Oh�Z8���\�m����>�
|
metadata
CHANGED
@@ -1,44 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-identity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.
|
4
|
+
version: 3.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
8
8
|
- Andrew Roberts
|
9
9
|
- Michael Bleigh
|
10
|
-
autorequire:
|
11
10
|
bindir: exe
|
12
11
|
cert_chain:
|
13
12
|
- |
|
14
13
|
-----BEGIN CERTIFICATE-----
|
15
14
|
MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
|
16
15
|
ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
|
17
|
-
|
16
|
+
A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
|
18
17
|
DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
/
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
18
|
+
LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
|
19
|
+
uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
|
20
|
+
LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
|
21
|
+
mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
|
22
|
+
coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
|
23
|
+
FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
|
24
|
+
yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
|
25
|
+
to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
|
26
|
+
qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
|
27
|
+
fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
|
28
|
+
HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
|
30
29
|
A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
30
|
+
ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
|
31
|
+
wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
|
32
|
+
L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
|
33
|
+
GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
|
34
|
+
kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
|
35
|
+
QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
|
36
|
+
0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
|
37
|
+
DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
|
38
|
+
L9nRqA==
|
40
39
|
-----END CERTIFICATE-----
|
41
|
-
date:
|
40
|
+
date: 2025-06-08 00:00:00.000000000 Z
|
42
41
|
dependencies:
|
43
42
|
- !ruby/object:Gem::Dependency
|
44
43
|
name: bcrypt
|
@@ -54,6 +53,20 @@ dependencies:
|
|
54
53
|
- - "~>"
|
55
54
|
- !ruby/object:Gem::Version
|
56
55
|
version: '3.1'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: mutex_m
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0.1'
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0.1'
|
57
70
|
- !ruby/object:Gem::Dependency
|
58
71
|
name: omniauth
|
59
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,22 +85,22 @@ dependencies:
|
|
72
85
|
name: version_gem
|
73
86
|
requirement: !ruby/object:Gem::Requirement
|
74
87
|
requirements:
|
75
|
-
- - "~>"
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
version: '1.1'
|
78
88
|
- - ">="
|
79
89
|
- !ruby/object:Gem::Version
|
80
|
-
version: 1.1.
|
90
|
+
version: 1.1.8
|
91
|
+
- - "<"
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '3'
|
81
94
|
type: :runtime
|
82
95
|
prerelease: false
|
83
96
|
version_requirements: !ruby/object:Gem::Requirement
|
84
97
|
requirements:
|
85
|
-
- - "~>"
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
version: '1.1'
|
88
98
|
- - ">="
|
89
99
|
- !ruby/object:Gem::Version
|
90
|
-
version: 1.1.
|
100
|
+
version: 1.1.8
|
101
|
+
- - "<"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3'
|
91
104
|
- !ruby/object:Gem::Dependency
|
92
105
|
name: activerecord
|
93
106
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,20 +135,6 @@ dependencies:
|
|
122
135
|
- - ">="
|
123
136
|
- !ruby/object:Gem::Version
|
124
137
|
version: 1.0.9
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: appraisal
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - "~>"
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '2.5'
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - "~>"
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '2.5'
|
139
138
|
- !ruby/object:Gem::Dependency
|
140
139
|
name: rack-test
|
141
140
|
requirement: !ruby/object:Gem::Requirement
|
@@ -156,28 +155,28 @@ dependencies:
|
|
156
155
|
requirements:
|
157
156
|
- - "~>"
|
158
157
|
- !ruby/object:Gem::Version
|
159
|
-
version: '13'
|
158
|
+
version: '13.0'
|
160
159
|
type: :development
|
161
160
|
prerelease: false
|
162
161
|
version_requirements: !ruby/object:Gem::Requirement
|
163
162
|
requirements:
|
164
163
|
- - "~>"
|
165
164
|
- !ruby/object:Gem::Version
|
166
|
-
version: '13'
|
165
|
+
version: '13.0'
|
167
166
|
- !ruby/object:Gem::Dependency
|
168
167
|
name: rspec
|
169
168
|
requirement: !ruby/object:Gem::Requirement
|
170
169
|
requirements:
|
171
170
|
- - "~>"
|
172
171
|
- !ruby/object:Gem::Version
|
173
|
-
version: '3'
|
172
|
+
version: '3.13'
|
174
173
|
type: :development
|
175
174
|
prerelease: false
|
176
175
|
version_requirements: !ruby/object:Gem::Requirement
|
177
176
|
requirements:
|
178
177
|
- - "~>"
|
179
178
|
- !ruby/object:Gem::Version
|
180
|
-
version: '3'
|
179
|
+
version: '3.13'
|
181
180
|
- !ruby/object:Gem::Dependency
|
182
181
|
name: rspec-block_is_expected
|
183
182
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,25 +198,31 @@ dependencies:
|
|
199
198
|
- !ruby/object:Gem::Version
|
200
199
|
version: 1.0.6
|
201
200
|
- !ruby/object:Gem::Dependency
|
202
|
-
name:
|
201
|
+
name: stone_checksums
|
203
202
|
requirement: !ruby/object:Gem::Requirement
|
204
203
|
requirements:
|
205
|
-
- - "
|
204
|
+
- - "~>"
|
206
205
|
- !ruby/object:Gem::Version
|
207
|
-
version: '1'
|
206
|
+
version: '1.0'
|
208
207
|
type: :development
|
209
208
|
prerelease: false
|
210
209
|
version_requirements: !ruby/object:Gem::Requirement
|
211
210
|
requirements:
|
212
|
-
- - "
|
211
|
+
- - "~>"
|
213
212
|
- !ruby/object:Gem::Version
|
214
|
-
version: '1'
|
213
|
+
version: '1.0'
|
215
214
|
description: Traditional username/password based authentication system for OmniAuth
|
216
215
|
email:
|
217
|
-
-
|
216
|
+
- floss@galtzo.com
|
218
217
|
executables: []
|
219
218
|
extensions: []
|
220
|
-
extra_rdoc_files:
|
219
|
+
extra_rdoc_files:
|
220
|
+
- CHANGELOG.md
|
221
|
+
- CODE_OF_CONDUCT.md
|
222
|
+
- CONTRIBUTING.md
|
223
|
+
- LICENSE.txt
|
224
|
+
- README.md
|
225
|
+
- SECURITY.md
|
221
226
|
files:
|
222
227
|
- CHANGELOG.md
|
223
228
|
- CODE_OF_CONDUCT.md
|
@@ -240,16 +245,29 @@ homepage: https://github.com/omniauth/omniauth-identity
|
|
240
245
|
licenses:
|
241
246
|
- MIT
|
242
247
|
metadata:
|
243
|
-
homepage_uri: https://
|
244
|
-
source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.1.
|
245
|
-
changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.1.
|
248
|
+
homepage_uri: https://omniauth-identity.galtzo.com/
|
249
|
+
source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.1.3
|
250
|
+
changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.1.3/CHANGELOG.md
|
246
251
|
bug_tracker_uri: https://github.com/omniauth/omniauth-identity/issues
|
247
|
-
documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.
|
252
|
+
documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.1.3
|
248
253
|
wiki_uri: https://github.com/omniauth/omniauth-identity/wiki
|
249
|
-
funding_uri: https://
|
254
|
+
funding_uri: https://github.com/sponsors/pboling
|
255
|
+
news_uri: https://www.railsbling.com/tags/omniauth-identity
|
250
256
|
rubygems_mfa_required: 'true'
|
251
|
-
|
252
|
-
|
257
|
+
rdoc_options:
|
258
|
+
- "--title"
|
259
|
+
- omniauth-identity - Traditional username/password based authentication system for
|
260
|
+
OmniAuth
|
261
|
+
- "--main"
|
262
|
+
- CHANGELOG.md
|
263
|
+
- CODE_OF_CONDUCT.md
|
264
|
+
- CONTRIBUTING.md
|
265
|
+
- LICENSE.txt
|
266
|
+
- README.md
|
267
|
+
- SECURITY.md
|
268
|
+
- "--line-numbers"
|
269
|
+
- "--inline-source"
|
270
|
+
- "--quiet"
|
253
271
|
require_paths:
|
254
272
|
- lib
|
255
273
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -263,8 +281,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
263
281
|
- !ruby/object:Gem::Version
|
264
282
|
version: '0'
|
265
283
|
requirements: []
|
266
|
-
rubygems_version: 3.
|
267
|
-
signing_key:
|
284
|
+
rubygems_version: 3.6.9
|
268
285
|
specification_version: 4
|
269
|
-
summary:
|
286
|
+
summary: Traditional username/password based authentication system for OmniAuth
|
270
287
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|