File tree 6 files changed +20
-6
lines changed
6 files changed +20
-6
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.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
+
3
17
0.39-TRIAL - 2021-07-25
4
18
5
19
[Change Log]
6
- - TBD Update Changes and Increment version
20
+ - b34f4f8 Update Changes and Increment version
7
21
- 5921d12 Fixes #28 support https urls for metadata
8
22
- 95a2311 Fixes #29 which also supports Auth0 SAML
9
23
- 09591b6 Test InResponseTo on Assertions
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.39 " ,
73
+ " VERSION" => " 0.40 " ,
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.39
5
+ version 0.40
6
6
7
7
SYNOPSIS
8
8
See TUTORIAL.md for implementation documentation and
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.39 ' ;
7
+ our $VERSION = ' 0.40 ' ;
8
8
$VERSION = eval {$VERSION };
9
9
10
10
=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);
36
36
37
37
$DEBUG = 0;
38
38
# Based on XML::Sig VERSION = '0.47';
39
- $VERSION = ' 0.39 ' ;
39
+ $VERSION = ' 0.40 ' ;
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.39 ' ;
12
+ $VERSION = ' 0.40 ' ;
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