omniauth-azure-activedirectory-v2 1.0.0 → 2.0.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: 93067d480339eb28720e1297cf883ce0b0a42b8819b0d14a41bca5e6975177bd
4
- data.tar.gz: b1cd8703ea172ac050e4ec98f3802ff2e139de51757991361469c41d0bf88c7b
3
+ metadata.gz: 6292ee8af704acb7005d47fa78c9ebae4ae9e49bc677dcaff08e087560004013
4
+ data.tar.gz: 418effa55080e12e2371804f2634c67977c782c7fa9a4bbb3fafbae253e69307
5
5
  SHA512:
6
- metadata.gz: fb55fde94be440fb50dd32814fd678240d3ea6bb60f680b867ba05bfc6ab68fbf1790c3f4dacb5560578dd9ce3b3dd74d02888bea706e825e4fa7ce9ffa58a7a
7
- data.tar.gz: 4063dfcc43fc849ed19c020bff4eede55e9ba33084d58cd939fe482c3191599a87ead2f7123d55b6cc6c9bff0fdd669f59b92cd53116b827bcee67557968adb8
6
+ metadata.gz: 89d6e827e31cb60be2c30fbc464360bc355b0381ec653874535125da81fa596e7c2ec43134183417c8ff29ce631737e0ce2bb79ff1876354a67a45fd1eccbef6
7
+ data.tar.gz: 5e551b04a716d10745cd913af183ba1997c705f16edb39e925c2cdff59b4905a39b113c333fa2f1b927179eef58383be150c6012f31627e5f14776830f6dacf5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## v2.0.0 (2022-09-14)
4
+
5
+ Makes compatible with OmniAuth 2 and requires it.
6
+
7
+ Note: https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/pull/6 for reasoning - Thanks @jessieay
8
+
9
+ _Major version bump as no longer supports Omniauth 1._
10
+
3
11
  ## v1.0.0 (2020-09-25)
4
12
 
5
13
  Removes use of the https://graph.microsoft.com/v1.0/me API.
data/CODE_OF_CONDUCT.md CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
55
55
  ## Enforcement
56
56
 
57
57
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at jesse.whitham@gmail.com. All
58
+ reported by contacting the project team at dev@ripglobal.com. All
59
59
  complaints will be reviewed and investigated and will result in a response that
60
60
  is deemed necessary and appropriate to the circumstances. The project team is
61
61
  obligated to maintain confidentiality with regard to the reporter of an incident.
data/README.md CHANGED
@@ -41,7 +41,7 @@ See https://github.com/marknadig/omniauth-azure-oauth2 for background informatio
41
41
 
42
42
  ## Contributing
43
43
 
44
- Bug reports and pull requests are welcome on GitHub at https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2. This project is intended to be a safe, welcoming space for collaboration so contributors must adhere to the [code of conduct](https://github.com/[USERNAME]/omniauth-azure-activedirectory-v2/blob/master/CODE_OF_CONDUCT.md).
44
+ Bug reports and pull requests are welcome on GitHub at https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2. This project is intended to be a safe, welcoming space for collaboration so contributors must adhere to the [code of conduct](https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2/blob/master/CODE_OF_CONDUCT.md).
45
45
 
46
46
 
47
47
 
@@ -53,4 +53,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
53
53
 
54
54
  ## Code of Conduct
55
55
 
56
- Everyone interacting in this project's codebases, issue trackers, chat rooms and mailing lists must follow the [code of conduct](https://github.com/[USERNAME]/omniauth-azure-activedirectory-v2/blob/master/CODE_OF_CONDUCT.md).
56
+ Everyone interacting in this project's codebases, issue trackers, chat rooms and mailing lists must follow the [code of conduct](https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2/blob/master/CODE_OF_CONDUCT.md).
@@ -2,8 +2,8 @@ module Omniauth
2
2
  module Azure
3
3
  module Activedirectory
4
4
  module V2
5
- VERSION = "1.0.0"
6
- DATE = "2020-09-25"
5
+ VERSION = "2.0.0"
6
+ DATE = "2022-09-14"
7
7
  end
8
8
  end
9
9
  end
@@ -57,7 +57,7 @@ module OmniAuth
57
57
  end
58
58
 
59
59
  def callback_url
60
- full_host + script_name + callback_path
60
+ full_host + callback_path
61
61
  end
62
62
 
63
63
  # https://docs.microsoft.com/en-us/azure/active-directory/develop/id-tokens
@@ -84,4 +84,4 @@ module OmniAuth
84
84
 
85
85
  end
86
86
  end
87
- end
87
+ end
@@ -45,5 +45,5 @@ Gem::Specification.new do |s|
45
45
  'source_code_uri' => 'https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2'
46
46
  }
47
47
 
48
- s.add_runtime_dependency('omniauth-oauth2', '~> 1.7')
48
+ s.add_runtime_dependency('omniauth-oauth2', '~> 1.8')
49
49
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-azure-activedirectory-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - RIP Global
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-25 00:00:00.000000000 Z
11
+ date: 2022-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-oauth2
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.7'
19
+ version: '1.8'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.7'
26
+ version: '1.8'
27
27
  description:
28
28
  email:
29
29
  - dev@ripglobal.com
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
66
  - !ruby/object:Gem::Version
67
67
  version: '0'
68
68
  requirements: []
69
- rubygems_version: 3.1.2
69
+ rubygems_version: 3.3.7
70
70
  signing_key:
71
71
  specification_version: 4
72
72
  summary: OAuth 2 authentication with the Azure ActiveDirectory V2 API.