omniauth-doximity-oauth2 1.2.0.pre.2 → 1.2.0.pre.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6125c48f6bde54da8c8d37acce9d03017b818c4024ba45a77eedb08dc6ced957
4
- data.tar.gz: 6dbbfd75beab8b9e88e67d99a54bbe9a6be837f4d5ed5b0228934804ab6e58f7
3
+ metadata.gz: 1642591775f515a59d09b10e8a33847385dd631f7b56e5f66189498ac1a5d85c
4
+ data.tar.gz: f72018f59d00f2e9e5797f4fdb4a5b424e35ab90d5bba5f6341adcd1f2cdd155
5
5
  SHA512:
6
- metadata.gz: 70aa3ebad66b71b82d49c798589e1cd67412853dcde60a80fe7311e3be3df646da34020e7fdc143a9742cc92c0dd08be9802a198abb95f7d816e1dffc4eec79c
7
- data.tar.gz: 3e3ca067a61109392048de65e1e76a100e7373edc34c08633cc638282b8c0082af2909ecb35f5f74ec4d49423eabf84df96877239be4e270fb6723d8a861cd63
6
+ metadata.gz: 05c9241df99c419635cc04f0b58c05eea994b1d6a86f804bc0370684562e30f357879d3b3de5ebaf42716760247b1b79bd79b72197dab8762960f6699f8ee9ae
7
+ data.tar.gz: 38428772017194b3f928900a41b0a9ad8990b15ada8b910e92aab556f5871732b87075de1dfe575469bafae7134fd9c46a48162924a2eb0952f55af62d4969c8
data/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
- ## 1.2.0.pre.2 - 05/05/2023
4
+ ## 1.2.0.pre.3 - 05/05/2023
5
5
  * Update mechanism for verifying RSA public keys to work on OpenSSL 3
6
6
  * Ensure state persists between initial call and on callback
7
7
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-doximity-oauth2 (1.2.0.pre.2)
4
+ omniauth-doximity-oauth2 (1.2.0.pre.3)
5
5
  activesupport
6
6
  faraday
7
7
  jwt
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Omniauth
3
+ module OmniAuth
4
4
  module DoximityOauth2
5
5
  # Static crypto methods
6
6
  class Crypto
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Omniauth
3
+ module OmniAuth
4
4
  module DoximityOauth2
5
5
  # Error for failed request to get public keys, for JWK verification
6
6
  class JWKSRequestError < StandardError
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Omniauth
3
+ module OmniAuth
4
4
  module DoximityOauth2
5
- VERSION = "1.2.0.pre.2"
5
+ VERSION = "1.2.0.pre.3"
6
6
  end
7
7
  end
@@ -5,7 +5,7 @@ require File.expand_path('lib/omniauth-doximity-oauth2/version', __dir__)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "omniauth-doximity-oauth2"
8
- spec.version = Omniauth::DoximityOauth2::VERSION
8
+ spec.version = OmniAuth::DoximityOauth2::VERSION
9
9
  spec.authors = ["William Harvey"]
10
10
  spec.email = ["wharvey@doximity.com"]
11
11
  spec.description = 'OmniAuth strategy for Doximity, supporting OIDC, and using PKCE'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-doximity-oauth2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0.pre.2
4
+ version: 1.2.0.pre.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Harvey