omniauth-infinum_azure 0.1.7 → 0.2.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: 5f3293acb8cb3c28513fa2074257e56379aa9eb241eecde33fa46920fbad4459
4
- data.tar.gz: f1b76ea5f410097d31de6a35235a070f130057b637d362a71faa298d6eda79a0
3
+ metadata.gz: 80e79209324b2f50f79a2529c426529d87377548dcc9a1002a9660b2d003b7b6
4
+ data.tar.gz: 6cecf9ac45d080db86798919209a2879b34b696f457db7de930c43053fdf4d1e
5
5
  SHA512:
6
- metadata.gz: 8c83144243122e6b82c34bac96a4c11db2ec2e25638165bb3ec1b256c1ac660e5463f7c4e133e99e96d6d121ac348ce0b00e4bce40b3f65d00f174bb2c1fc68b
7
- data.tar.gz: 4ecbe18123fb2e2fb2e079ec07e301f70ddde3ee6fa5b8d0ef57f167ca170a4d786ef71d8d0fa6339ea1010c89e27314ae82e30f8c3cb3ceb1a1a010b8bcbf95
6
+ metadata.gz: de3ed9fd7a7ae3739c21268d00ab26d278beaa89a0b0438f61aca75ea3f326c14a2fc1f9aa1c3e52dbad31bf9c8eb9c79bfdd702a2ea6aaf043bc57035c2832c
7
+ data.tar.gz: 2afe31d2dce004f34ed0a9f6df7c87e73a8eed864dd39210d8f00a674f20f7357f15071ee1f65a112a34490c445dc8622b5c119b00a9a2e25b502c492c91decb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.2.0] - 2023-04-04
4
+
5
+ - Fix issue with Azure payload (emails array changed to email string)
6
+ - Add first_name and last_name to `info`
7
+
3
8
  ## [0.1.7] - 2023-04-04
4
9
 
5
10
  - Change policy ID to allow signin and signup
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- omniauth-infinum_azure (0.1.7)
4
+ omniauth-infinum_azure (0.2.0)
5
5
  omniauth-oauth2
6
6
 
7
7
  GEM
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Omniauth
4
4
  module InfinumAzure
5
- VERSION = '0.1.7'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
@@ -40,8 +40,10 @@ module OmniAuth
40
40
 
41
41
  info do
42
42
  {
43
- email: raw_info['emails'][0],
44
- name: raw_info['name']
43
+ email: raw_info['email'],
44
+ name: raw_info['name'],
45
+ first_name: raw_info['given_name'],
46
+ last_name: raw_info['family_name']
45
47
  }
46
48
  end
47
49
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-infinum_azure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marko Ćilimković