File tree Expand file tree Collapse file tree 6 files changed +20
-6
lines changed Expand file tree Collapse file tree 6 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 11Revision history for Perl extension Net::SAML2.
22
3+ 0.40 - 2021-07-26
4+
5+ [Significant Changes since 0.38]
6+
7+ - Add support for Auth0 SAML (bug fix)
8+ - Add options to allow https for metadata urls
9+
10+ [Change Log]
11+ - TDD Update Changes and Increment version
12+ - 314df85 Remove Test::TrailingSpace keeps failing on automatic License file
13+ - 9bc0901 Mention TUTORIAL.md in synopsis and README
14+ - 343ae20 Rename Tutorial
15+ - b5591cc Update documentation for ssl_opts for Idp new_from_url
16+
3170.39-TRIAL - 2021-07-25
418
519 [Change Log]
6- - TBD Update Changes and Increment version
20+ - b34f4f8 Update Changes and Increment version
721 - 5921d12 Fixes #28 support https urls for metadata
822 - 95a2311 Fixes #29 which also supports Auth0 SAML
923 - 09591b6 Test InResponseTo on Assertions
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.39 " ,
73+ " VERSION" => " 0.40 " ,
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.39
5+ version 0.40
66
77SYNOPSIS
88 See TUTORIAL.md for implementation documentation and
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.39 ' ;
7+ our $VERSION = ' 0.40 ' ;
88$VERSION = eval {$VERSION };
99
1010=head1 NAME
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.39 ' ;
39+ $VERSION = ' 0.40 ' ;
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.39 ' ;
12+ $VERSION = ' 0.40 ' ;
1313
1414# We are exporting functions
1515use base qw/ Exporter/ ;
You can’t perform that action at this time.
0 commit comments