omniauth-gitlab 3.0.0 → 4.0.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: 9f47d5dde46b9dc356bd1ec717ba0b7dc87b49e188b84dcf1617d366709f390f
4
- data.tar.gz: 6661be3cca493f7891e4663fead785e36639e121c4dde78b7b61de281dd3b08d
3
+ metadata.gz: 136ee3cebba142f927c036e6be577c54f914a58df37a4ee5576b49c115a32be3
4
+ data.tar.gz: 21ff902a4cd932a94b73e26deba00a79bb74f26d34b0de14b64192b981b72b29
5
5
  SHA512:
6
- metadata.gz: 8c25c70c310391102a0c594ab09b1122e2ca4d8d761a631a7460e04ecce9120bdaa17bc29c3cd40cfbc17b62936c85973c8a10e63d1f6c37d6bbc268175ef33f
7
- data.tar.gz: 91165b4ffb9b274608f91a131c4514611536626384ed7ddcfe356bf4b0049bc8b4fb143b6cc159d974d1657a1e5f084d32b4985d215727c15d7d6f45ec12b449
6
+ metadata.gz: b80fc28abd0072f3647df64a8a217320247cdeee58aeed0f199ad202d140ed41c8fb10468ac8c30ccddd7f669b17c33af5e6c2f0d3021c6afaaf5bc927c523a5
7
+ data.tar.gz: 1360523616245319d90efcf1ed01c4430b3dadcf0505566f2dd284d8904b75ad538cb28031fdd0b90729a8e395f2da95a1b18df9974298b2b5e18d4abaad964b
@@ -0,0 +1,21 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ ruby-version: ['2.6', '2.7', '3.0', '3.1']
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Ruby ${{ matrix.ruby-version }}
15
+ uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: ${{ matrix.ruby-version }}
18
+ bundler-cache: true # 'bundle install' and cache
19
+ - name: Run specs
20
+ run: |
21
+ bundle exec rspec
@@ -4,7 +4,7 @@ require 'omniauth-oauth2'
4
4
  module OmniAuth
5
5
  module Strategies
6
6
  class GitLab < OmniAuth::Strategies::OAuth2
7
- option :client_options, site: 'https://gitlab.com/api/v4'
7
+ option :client_options, site: 'https://gitlab.com'
8
8
 
9
9
  option :redirect_url
10
10
 
@@ -24,7 +24,7 @@ module OmniAuth
24
24
  end
25
25
 
26
26
  def raw_info
27
- @raw_info ||= access_token.get('user').parsed
27
+ @raw_info ||= access_token.get('api/v4/user').parsed
28
28
  end
29
29
 
30
30
  private
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module Gitlab
3
- VERSION = '3.0.0'
3
+ VERSION = '4.0.0'
4
4
  end
5
5
  end
@@ -27,7 +27,7 @@ describe OmniAuth::Strategies::GitLab do
27
27
  context 'with defaults' do
28
28
  subject { gitlab_service.options.client_options }
29
29
 
30
- its(:site) { is_expected.to eq 'https://gitlab.com/api/v4' }
30
+ its(:site) { is_expected.to eq 'https://gitlab.com' }
31
31
  end
32
32
 
33
33
  context 'with override' do
@@ -51,7 +51,7 @@ describe OmniAuth::Strategies::GitLab do
51
51
 
52
52
  describe '#raw_info' do
53
53
  it 'sent request to current user endpoint' do
54
- expect(access_token).to receive(:get).with('user').and_return(response)
54
+ expect(access_token).to receive(:get).with('api/v4/user').and_return(response)
55
55
  expect(subject.raw_info).to eq(parsed_response)
56
56
  end
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-gitlab
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Sein
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-12 00:00:00.000000000 Z
11
+ date: 2022-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth
@@ -101,6 +101,7 @@ executables: []
101
101
  extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
+ - ".github/workflows/ruby.yml"
104
105
  - ".gitignore"
105
106
  - ".project"
106
107
  - ".rspec"
@@ -132,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
133
  - !ruby/object:Gem::Version
133
134
  version: '0'
134
135
  requirements: []
135
- rubygems_version: 3.0.3
136
+ rubygems_version: 3.1.4
136
137
  signing_key:
137
138
  specification_version: 4
138
139
  summary: This is the strategy for authenticating to your GitLab service