gitlab-omniauth-openid-connect 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +5 -14
- data/CHANGELOG.md +4 -0
- data/NOTICE +16 -0
- data/gitlab-omniauth-openid-connect.gemspec +2 -1
- data/lib/omniauth/openid_connect/version.rb +1 -1
- data/test/test_helper.rb +0 -2
- metadata +23 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d98c1856aeb81d7e650d36de0d600e4ee4a08544cb999a07d3888b3cdf297d2f
|
4
|
+
data.tar.gz: f908956c15c2e59e5a52655df1615d3ac613edd734e34fe884831c2f0e056f9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 396595eea7efb0b26e9c4e34926509c7f84e58a60b8f6d584781d08f8557648b4e747ef515d9a70c0d49ac19afb22e02576a48737183be8aa1f326ba2e56e6d8
|
7
|
+
data.tar.gz: 27dacea0bd980a4b25acbc45848b964547db063ee8094b563270daac8f4f6c75bf67f66f2e98655e0af80cc691946b42ee7d56243cf6b092e1ef168112611def
|
data/.gitlab-ci.yml
CHANGED
@@ -10,18 +10,9 @@
|
|
10
10
|
script:
|
11
11
|
- bundle exec rake test
|
12
12
|
|
13
|
-
rspec
|
14
|
-
image: "ruby
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
image: "ruby:2.6"
|
19
|
-
<<: *test
|
20
|
-
|
21
|
-
rspec-2.7:
|
22
|
-
image: "ruby:2.7"
|
23
|
-
<<: *test
|
24
|
-
|
25
|
-
rspec-3.0:
|
26
|
-
image: "ruby:3.0"
|
13
|
+
rspec:
|
14
|
+
image: "ruby:${RUBY_VERSION}"
|
15
|
+
parallel:
|
16
|
+
matrix:
|
17
|
+
- RUBY_VERSION: [ "2.6", "2.7", "3.0", "3.1" ]
|
27
18
|
<<: *test
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
# v0.10.1 (24.01.20230)
|
2
|
+
|
3
|
+
- [Deprecate gem in favor of omniauth_open_id_connect](https://gitlab.com/gitlab-org/ruby/gems/gitlab-omniauth-openid-connect/-/merge_requests/26)
|
4
|
+
|
1
5
|
# v0.10.0 (05.24.2022)
|
2
6
|
|
3
7
|
- [Allow Omniauth v2](https:////gitlab.com/gitlab-org/gitlab-omniauth-openid-connect/-/merge_requests/22)
|
data/NOTICE
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
############################################################
|
2
|
+
# Deprecation notice for gitlab-omniauth-openid-connect gem
|
3
|
+
############################################################
|
4
|
+
|
5
|
+
All changes in this gem are now upstreamed in omniauth_openid_connect
|
6
|
+
gem v0.6.0 under the OmniAuth group: https://github.com/omniauth/omniauth_openid_connect.
|
7
|
+
|
8
|
+
In your Gemfile, replace the line:
|
9
|
+
|
10
|
+
gem 'gitlab-omniauth-openid-connect', '~> 0.10', require: 'omniauth_openid_connect'
|
11
|
+
|
12
|
+
With:
|
13
|
+
|
14
|
+
gem 'omniauth_openid_connect', '~> 0.6'
|
15
|
+
|
16
|
+
The gitlab-omniauth-openid-connect gem is no longer updated.
|
@@ -19,10 +19,11 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
20
|
spec.require_paths = ['lib']
|
21
21
|
|
22
|
+
spec.post_install_message = File.read('NOTICE') if File.exist?('NOTICE')
|
23
|
+
|
22
24
|
spec.add_dependency 'addressable', '~> 2.7'
|
23
25
|
spec.add_dependency 'omniauth', '>= 1.9', '< 3'
|
24
26
|
spec.add_dependency 'openid_connect', '~> 1.2'
|
25
|
-
spec.add_development_dependency 'coveralls', '~> 0.8'
|
26
27
|
spec.add_development_dependency 'faker', '~> 2.17'
|
27
28
|
spec.add_development_dependency 'guard', '~> 2.14'
|
28
29
|
spec.add_development_dependency 'guard-bundler', '~> 3.0'
|
data/test/test_helper.rb
CHANGED
@@ -2,7 +2,6 @@ lib = File.expand_path('../../lib', __FILE__)
|
|
2
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
3
|
|
4
4
|
require 'simplecov'
|
5
|
-
require 'coveralls'
|
6
5
|
require 'minitest/autorun'
|
7
6
|
require 'mocha/minitest'
|
8
7
|
require 'faker'
|
@@ -12,5 +11,4 @@ require_relative 'strategy_test_case'
|
|
12
11
|
|
13
12
|
SimpleCov.command_name 'test'
|
14
13
|
SimpleCov.start
|
15
|
-
Coveralls.wear!
|
16
14
|
OmniAuth.config.test_mode = true
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-omniauth-openid-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Bohn
|
8
8
|
- Ilya Shcherbinin
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2023-01-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: addressable
|
@@ -59,20 +59,6 @@ dependencies:
|
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '1.2'
|
62
|
-
- !ruby/object:Gem::Dependency
|
63
|
-
name: coveralls
|
64
|
-
requirement: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0.8'
|
69
|
-
type: :development
|
70
|
-
prerelease: false
|
71
|
-
version_requirements: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0.8'
|
76
62
|
- !ruby/object:Gem::Dependency
|
77
63
|
name: faker
|
78
64
|
requirement: !ruby/object:Gem::Requirement
|
@@ -219,6 +205,7 @@ files:
|
|
219
205
|
- Gemfile
|
220
206
|
- Guardfile
|
221
207
|
- LICENSE.txt
|
208
|
+
- NOTICE
|
222
209
|
- README.md
|
223
210
|
- Rakefile
|
224
211
|
- gitlab-omniauth-openid-connect.gemspec
|
@@ -236,7 +223,23 @@ homepage: https://gitlab.com/gitlab-org/gitlab-omniauth-openid-connect
|
|
236
223
|
licenses:
|
237
224
|
- MIT
|
238
225
|
metadata: {}
|
239
|
-
post_install_message:
|
226
|
+
post_install_message: |
|
227
|
+
############################################################
|
228
|
+
# Deprecation notice for gitlab-omniauth-openid-connect gem
|
229
|
+
############################################################
|
230
|
+
|
231
|
+
All changes in this gem are now upstreamed in omniauth_openid_connect
|
232
|
+
gem v0.6.0 under the OmniAuth group: https://github.com/omniauth/omniauth_openid_connect.
|
233
|
+
|
234
|
+
In your Gemfile, replace the line:
|
235
|
+
|
236
|
+
gem 'gitlab-omniauth-openid-connect', '~> 0.10', require: 'omniauth_openid_connect'
|
237
|
+
|
238
|
+
With:
|
239
|
+
|
240
|
+
gem 'omniauth_openid_connect', '~> 0.6'
|
241
|
+
|
242
|
+
The gitlab-omniauth-openid-connect gem is no longer updated.
|
240
243
|
rdoc_options: []
|
241
244
|
require_paths:
|
242
245
|
- lib
|
@@ -251,8 +254,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
251
254
|
- !ruby/object:Gem::Version
|
252
255
|
version: '0'
|
253
256
|
requirements: []
|
254
|
-
rubygems_version: 3.
|
255
|
-
signing_key:
|
257
|
+
rubygems_version: 3.4.5
|
258
|
+
signing_key:
|
256
259
|
specification_version: 4
|
257
260
|
summary: OpenID Connect Strategy for OmniAuth
|
258
261
|
test_files:
|