File tree Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Expand file tree Collapse file tree 6 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 11Revision history for Perl extension Net::SAML2.
22
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+
3110.38 - 2021-07-23
412
513 [Change Log]
614
7- - TBD Update Changes and Increment version
15+ - 88abdeb Update Changes and Increment version
816
9170.37-TRIAL - 2021-07-21
1018
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ my %WriteMakefileArgs = (
7070 " URI::URL" => 0,
7171 " XML::LibXML::XPathContext" => 0
7272 },
73- " VERSION" => " 0.38 " ,
73+ " VERSION" => " 0.39 " ,
7474 " test" => {
7575 " TESTS" => " t/*.t t/author/*.t"
7676 }
Original file line number Diff line number Diff line change 22 Net::SAML2
33
44VERSION
5- version 0.38
5+ version 0.39
66
77SYNOPSIS
88 # generate a redirect off to the IdP:
@@ -76,7 +76,7 @@ DESCRIPTION
7676 Jump
7777 Mircosoft ADFS
7878 Keycloak
79- Auth0 (requires Net::SAML2 >=0.38 )
79+ Auth0 (requires Net::SAML2 >=0.39 )
8080
8181NAME
8282 Net::SAML2 - SAML bindings and protocol implementation
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use warnings;
44
55require 5.008_001;
66
7- our $VERSION = ' 0.38 ' ;
7+ our $VERSION = ' 0.39 ' ;
88$VERSION = eval {$VERSION };
99
1010=head1 NAME
@@ -93,7 +93,7 @@ Identity Providers (IdPs). It has been tested against:
9393
9494=item Keycloak
9595
96- =item Auth0 (requires Net::SAML2 >=0.38 )
96+ =item Auth0 (requires Net::SAML2 >=0.39 )
9797
9898=back
9999
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
3636
3737$DEBUG = 0;
3838# Based on XML::Sig VERSION = '0.47';
39- $VERSION = ' 0.38 ' ;
39+ $VERSION = ' 0.39 ' ;
4040
4141use base qw( Class::Accessor) ;
4242Net::SAML2::XML::Sig-> mk_accessors(qw( key) );
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use XML::LibXML;
99use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
1010
1111$DEBUG = 0;
12- $VERSION = ' 0.38 ' ;
12+ $VERSION = ' 0.39 ' ;
1313
1414# We are exporting functions
1515use base qw/ Exporter/ ;
You can’t perform that action at this time.
0 commit comments