omniauth-doximity-oauth2 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 620e50a83f9d1257f1545c89f028d7a1e611157c9076d5a00c6471c7566fd1eb
4
- data.tar.gz: 795453c55c674df264031033c1108c796497c0c8def586aa260a5cac94b350ac
3
+ metadata.gz: 3cd4168ebbb583aef33b4c183194026aacdd5e1f57215b568743cf89dc834a61
4
+ data.tar.gz: b4984e99c6b174f1453b590ff3d3896edcd0eca5832daccee672dc8b816ee35e
5
5
  SHA512:
6
- metadata.gz: 8ad9fbd8a6eb3843f6f96e3165923987e9f523b3b7923d11a0a46c32d234657d7fe2c8ddfac9c63ce0110de6e30e00450fc680e484130cd657f47aa77babc23b
7
- data.tar.gz: bae514b6081799b69b6d00617f2f4cfb3f6a3daf8916f211df77f00a1ac15e315ec2eb48aa3fb21122f59b75124735d5acca7786d78e0eb7de1d3278e89944c0
6
+ metadata.gz: 9ce4f60fdc733fcc7bc30415a928e3d33ee70629f4dce10864c0ee6c3833dcbd90ad9aaf79292f323dab636cf1bfed8766ec6143cca3ccaf0c7d561b28ad962c
7
+ data.tar.gz: d7af1fded7ea8756cd81f0d4bf7b1551af902a803c1ca562550f6a14d2baf37741de186c593851cb62ba81a5cadec09df78887d74d4086eca1dfde12b35db033
data/.circleci/config.yml CHANGED
@@ -1,8 +1,5 @@
1
1
  version: 2.1
2
2
 
3
- orbs:
4
- gem: doximity/gem-publisher@0
5
-
6
3
  executors:
7
4
  ruby-2-6:
8
5
  resource_class: small
@@ -46,16 +43,9 @@ jobs:
46
43
  bundle config set --local frozen 'true'
47
44
  bundle config set --local jobs '4'
48
45
  bundle config set --local retry '3'
49
- - restore_cache:
50
- keys:
51
- - v1-bundle-{{ checksum "Gemfile.lock" }}-
52
46
  - run:
53
47
  name: Install Ruby Dependencies
54
48
  command: bundle install --local
55
- - save_cache:
56
- key: v1-bundle-{{ checksum "Gemfile.lock" }}-
57
- paths:
58
- - vendor/bundle
59
49
  - run:
60
50
  name: Run Rubocop
61
51
  command: bundle exec rake ci:rubocop
@@ -83,52 +73,13 @@ workflows:
83
73
  jobs:
84
74
  - build:
85
75
  <<: *master_only
86
- - gem/build:
87
- <<: *master_only
88
- executor: ruby-2-6
89
- name: gem-build
90
- requires:
91
- - build
92
76
 
93
77
  pull-requests:
94
78
  jobs:
95
79
  - build:
96
80
  <<: *pr_only
97
- - gem/build:
98
- <<: *pr_only
99
- executor: ruby-2-6
100
- name: gem-build
101
- requires:
102
- - build
103
- - pre-release-approval:
104
- <<: *pr_only
105
- type: approval
106
- requires:
107
- - gem-build
108
- - gem/publish:
109
- <<: *pr_only
110
- name: gem-publish
111
- to_rubygems: true
112
- pre_release: true
113
- requires:
114
- - pre-release-approval
115
- context: artifact_publishing
116
81
 
117
82
  final-release:
118
83
  jobs:
119
84
  - build:
120
85
  <<: *version_tags_only
121
- - gem/build:
122
- <<: *version_tags_only
123
- executor: ruby-2-6
124
- name: gem-build
125
- requires:
126
- - build
127
- - gem/publish:
128
- <<: *version_tags_only
129
- name: gem-publish
130
- to_rubygems: true
131
- pre_release: false
132
- requires:
133
- - gem-build
134
- context: artifact_publishing
data/.github/CODEOWNERS CHANGED
@@ -1,5 +1,5 @@
1
1
  # Back-end team
2
- * @doximity/mofo_backend
2
+ * @doximity/core_identity
3
3
 
4
4
  # Infra Automation
5
5
  /.circleci @doximity/infra_automation_reviewers
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## 1.3.0 - 08/09/2023
5
+ * Handle 'theme' parameter to be passed along to the OAuth authorization
6
+
4
7
  ## 1.2.0 - 05/05/2023
5
8
  * Update mechanism for verifying RSA public keys to work on OpenSSL 3
6
9
  * Ensure state persists between initial call and on callback
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-doximity-oauth2 (1.2.0)
4
+ omniauth-doximity-oauth2 (1.3.0)
5
5
  activesupport
6
6
  faraday
7
7
  jwt
@@ -109,4 +109,4 @@ DEPENDENCIES
109
109
  sdoc
110
110
 
111
111
  BUNDLED WITH
112
- 2.3.12
112
+ 2.4.3
@@ -20,7 +20,7 @@ module OmniAuth
20
20
 
21
21
  option :pkce, true
22
22
 
23
- option :authorize_options, %i[scope prompt]
23
+ option :authorize_options, %i[scope prompt theme]
24
24
 
25
25
  option :client_options, {
26
26
  site: "https://auth.doximity.com",
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module DoximityOauth2
5
- VERSION = "1.2.0"
5
+ VERSION = "1.3.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-doximity-oauth2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Harvey
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-08 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -254,7 +254,7 @@ metadata:
254
254
  homepage_uri: https://github.com/doximity/omniauth-doximity-oauth2.git
255
255
  source_code_uri: https://github.com/doximity/omniauth-doximity-oauth2.git
256
256
  changelog_uri: https://github.com/doximity/omniauth-doximity-oauth2/blob/master/CHANGELOG.md
257
- post_install_message:
257
+ post_install_message:
258
258
  rdoc_options: []
259
259
  require_paths:
260
260
  - lib
@@ -269,8 +269,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
269
269
  - !ruby/object:Gem::Version
270
270
  version: '0'
271
271
  requirements: []
272
- rubygems_version: 3.3.11
273
- signing_key:
272
+ rubygems_version: 3.3.26
273
+ signing_key:
274
274
  specification_version: 4
275
275
  summary: OmniAuth strategy for Doximity
276
276
  test_files: