omniauth-azure-activedirectory-v2 2.3.0 → 2.4.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a1efbd4534df6b079619c32ade6026e481a868259f160ce0b09e8bafd33dccd
|
|
4
|
+
data.tar.gz: 96b3f6eed0cd1dc8f5cbe08f51b2dfbdbbc9eb47b227bd2074967c0e9e1c82a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c22b19d6fba235dfef2602ba88415a2de4c3eea87d7d45a047eaed45bb3a1e7fd8b6040832ad08032435763073d7a501912e44486c2da84ff0d625b6280ebfed
|
|
7
|
+
data.tar.gz: dd11baab6770b910c51a1e051d87a132eaecb9a499eae026dc122f80945432e547cf72e880cbb14fb346b7dee1b87330098f685c1f8429937e3518e93b54541b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## v2.4.0 (2024-10-17)
|
|
4
|
+
|
|
5
|
+
Deprecation warnings for end-of-life of the gem under this name. No other changes. The GitHub repository is to be renamed and the gem released (starting at major version 3) as `omniauth-entra-id`, with some breaking changes but details of how to update will be provided in the new gem via an `UPGRADING.md` document.
|
|
6
|
+
|
|
3
7
|
## v2.3.0 (2024-07-16)
|
|
4
8
|
|
|
5
9
|
[Implements](https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/pull/29) support for on-premise Active Directory installations via the `adfs` option; see `README.md` for details - thanks @frenkel!
|
data/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
[](https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/actions)
|
|
5
5
|
[](LICENSE.txt)
|
|
6
6
|
|
|
7
|
+
**IMPORTANT: V2 is end-of-life** and superseded by a renamed gem, since Microsoft in their "wisdom" renamed Azure AD to Entra ID. A gem using the old name will become increasingly hard for people to 'discover'. The major version bump provides an opportunity to fix a few things via breaking changes, too. Please switch to `omniauth-entra-id`.
|
|
8
|
+
|
|
7
9
|
OAuth 2 authentication with [Azure ActiveDirectory's V2 API](https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-overview). Rationale:
|
|
8
10
|
|
|
9
11
|
* https://github.com/marknadig/omniauth-azure-oauth2 is no longer maintained.
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
+
warn "[DEPRECATION] This gem has been renamed to 'omniauth-entra-id' and will no longer be supported. Please switch to 'omniauth-entra-id' as soon as possible."
|
|
2
|
+
|
|
1
3
|
require File.join('omniauth', 'azure_activedirectory_v2', 'version')
|
|
2
4
|
require File.join('omniauth', 'strategies', 'azure_activedirectory_v2')
|
|
@@ -8,6 +8,14 @@ require 'omniauth/azure_activedirectory_v2/version'
|
|
|
8
8
|
# https://guides.rubygems.org/specification-reference/
|
|
9
9
|
#
|
|
10
10
|
Gem::Specification.new do |s|
|
|
11
|
+
s.post_install_message = <<-MESSAGE
|
|
12
|
+
! The 'omniauth-azure-activedirectory-v2' gem has been deprecated and is
|
|
13
|
+
! replaced by 'omniauth-entra-id'.
|
|
14
|
+
!
|
|
15
|
+
! See: https://rubygems.org/gems/omniauth-entra-id
|
|
16
|
+
! And: https://github.com/RIPAGlobal/omniauth-entra-id
|
|
17
|
+
MESSAGE
|
|
18
|
+
|
|
11
19
|
s.name = 'omniauth-azure-activedirectory-v2'
|
|
12
20
|
s.version = OmniAuth::Azure::Activedirectory::V2::VERSION
|
|
13
21
|
s.date = OmniAuth::Azure::Activedirectory::V2::DATE
|
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: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RIPA Global
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: omniauth-oauth2
|
|
@@ -79,7 +79,12 @@ metadata:
|
|
|
79
79
|
bug_tracker_uri: https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/issues/
|
|
80
80
|
changelog_uri: https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2/blob/master/CHANGELOG.md
|
|
81
81
|
source_code_uri: https://github.com/RIPAGlobal/omniauth-azure-activedirectory-v2
|
|
82
|
-
post_install_message:
|
|
82
|
+
post_install_message: |2
|
|
83
|
+
! The 'omniauth-azure-activedirectory-v2' gem has been deprecated and is
|
|
84
|
+
! replaced by 'omniauth-entra-id'.
|
|
85
|
+
!
|
|
86
|
+
! See: https://rubygems.org/gems/omniauth-entra-id
|
|
87
|
+
! And: https://github.com/RIPAGlobal/omniauth-entra-id
|
|
83
88
|
rdoc_options: []
|
|
84
89
|
require_paths:
|
|
85
90
|
- lib
|
|
@@ -94,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
99
|
- !ruby/object:Gem::Version
|
|
95
100
|
version: '0'
|
|
96
101
|
requirements: []
|
|
97
|
-
rubygems_version: 3.5.
|
|
102
|
+
rubygems_version: 3.5.21
|
|
98
103
|
signing_key:
|
|
99
104
|
specification_version: 4
|
|
100
105
|
summary: OAuth 2 authentication with the Azure ActiveDirectory V2 API.
|