File tree 5 files changed +21
-5
lines changed
5 files changed +21
-5
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.34 - 2021-03-30
4
+
5
+ [Significant Changes since 0.32]
6
+
7
+ - Mostly an improvement in documentation
8
+ - Implement "full client" test that follows TUTORIAL.md
9
+ - TUTORIAL.md documents how to add Net::SAML2 to your web application
10
+ - Numerous small bug fixes/enhancements
11
+ - Improvements in SP Metadata support
12
+ - Add response_status to Assertion object
13
+ - XML::Sig version 0.47 (improvements in ECDSA and DSA and other fixes)
14
+
15
+ [Change Log]
16
+
17
+ - TBD Update Changes and Increment version
18
+
3
19
0.33-TRIAL - 2021-03-28
4
20
5
21
[Significant Changes]
@@ -14,7 +30,7 @@ Revision history for Perl extension Net::SAML2.
14
30
15
31
[Change Log]
16
32
17
- - TBD Update Changes and Increment version
33
+ - 844d0be Update Changes and Increment version
18
34
- 7fabe59 Merge XML::Sig version 0.47
19
35
- d62059f Add Keycloak as a tested SAML provider
20
36
- f626fc5 Sign releases
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.33 " ,
73
+ " VERSION" => " 0.34 " ,
74
74
" test" => {
75
75
" TESTS" => " t/*.t t/author/*.t"
76
76
}
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.33 ' ;
7
+ our $VERSION = ' 0.34 ' ;
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.33 ' ;
39
+ $VERSION = ' 0.34 ' ;
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::Tidy;
9
9
use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
10
10
11
11
$DEBUG = 0;
12
- $VERSION = ' 0.33 ' ;
12
+ $VERSION = ' 0.34 ' ;
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