File tree 6 files changed +16
-8
lines changed
6 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for Perl extension Net::SAML2.
2
2
3
+ 0.39-TRIAL - 2021-07-25
4
+
5
+ [Change Log]
6
+ - TBD Update Changes and Increment version
7
+ - 5921d12 Fixes #28 support https urls for metadata
8
+ - 95a2311 Fixes #29 which also supports Auth0 SAML
9
+ - 09591b6 Test InResponseTo on Assertions
10
+
3
11
0.38 - 2021-07-23
4
12
5
13
[Change Log]
6
14
7
- - TBD Update Changes and Increment version
15
+ - 88abdeb Update Changes and Increment version
8
16
9
17
0.37-TRIAL - 2021-07-21
10
18
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ my %WriteMakefileArgs = (
70
70
" URI::URL" => 0,
71
71
" XML::LibXML::XPathContext" => 0
72
72
},
73
- " VERSION" => " 0.38 " ,
73
+ " VERSION" => " 0.39 " ,
74
74
" test" => {
75
75
" TESTS" => " t/*.t t/author/*.t"
76
76
}
Original file line number Diff line number Diff line change 2
2
Net::SAML2
3
3
4
4
VERSION
5
- version 0.38
5
+ version 0.39
6
6
7
7
SYNOPSIS
8
8
# generate a redirect off to the IdP:
@@ -76,7 +76,7 @@ DESCRIPTION
76
76
Jump
77
77
Mircosoft ADFS
78
78
Keycloak
79
- Auth0 (requires Net::SAML2 >=0.38 )
79
+ Auth0 (requires Net::SAML2 >=0.39 )
80
80
81
81
NAME
82
82
Net::SAML2 - SAML bindings and protocol implementation
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use warnings;
4
4
5
5
require 5.008_001;
6
6
7
- our $VERSION = ' 0.38 ' ;
7
+ our $VERSION = ' 0.39 ' ;
8
8
$VERSION = eval {$VERSION };
9
9
10
10
=head1 NAME
@@ -93,7 +93,7 @@ Identity Providers (IdPs). It has been tested against:
93
93
94
94
=item Keycloak
95
95
96
- =item Auth0 (requires Net::SAML2 >=0.38 )
96
+ =item Auth0 (requires Net::SAML2 >=0.39 )
97
97
98
98
=back
99
99
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
36
36
37
37
$DEBUG = 0;
38
38
# Based on XML::Sig VERSION = '0.47';
39
- $VERSION = ' 0.38 ' ;
39
+ $VERSION = ' 0.39 ' ;
40
40
41
41
use base qw( Class::Accessor) ;
42
42
Net::SAML2::XML::Sig-> mk_accessors(qw( key) );
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use XML::LibXML;
9
9
use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
10
10
11
11
$DEBUG = 0;
12
- $VERSION = ' 0.38 ' ;
12
+ $VERSION = ' 0.39 ' ;
13
13
14
14
# We are exporting functions
15
15
use base qw/ Exporter/ ;
You can’t perform that action at this time.
0 commit comments