Skip to content

Commit 844d0be

Browse files
committed
Update Changes and Increment version
1 parent 7fabe59 commit 844d0be

File tree

5 files changed

+47
-5
lines changed

5 files changed

+47
-5
lines changed

Changes

+43-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
Revision history for Perl extension Net::SAML2.
22

3+
0.33-TRIAL - 2021-03-28
4+
5+
[Significant Changes]
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+
- 7fabe59 Merge XML::Sig version 0.47
19+
- d62059f Add Keycloak as a tested SAML provider
20+
- f626fc5 Sign releases
21+
- 86eabae Remove space at eol
22+
- 64c8862 Test requires URI::URL
23+
- 664a0da Merge pull request #27 from timlegge/full-client
24+
- ab7e344 Add missing files
25+
- 971a951 Add missing metadat file
26+
- 171fd63 Merge pull request #26 from timlegge/full-client
27+
- cdfe47e Initial full client test
28+
- 1b07070 Add response_status to Assertion object
29+
- bcee1ea Clarify Net::SAML2::Binding::Redirect cert parameter
30+
- fb126f2 Merge pull request #25 from timlegge/tutorial
31+
- db801af Update pod information
32+
- 1887f90 Fix invalid newlines inserted
33+
- 840585a Update TUTORIAL.MD
34+
- 2987c08 TUTORIAL missing closing tag
35+
- c34dead Merge pull request #23 from timlegge/tutorial
36+
- cf1ac4b Fixes #22 New tutorial for integrating Net::SAML2 in your application
37+
- 67b9ab1 Merge pull request #21 from timlegge/issue19
38+
- 5377ecd Merge pull request #20 from timlegge/issue18
39+
- 339d5f9 Fixes #19: SP Metadata AuthnRequestsSigned and WantAssertionsSigned should be configurable
40+
- 9944c41 Fixes #18 - SP metatdata org_url
41+
- 305c587 Fixes #13 - ProviderName should be a variable
42+
- 68629bd Fixes #14 Improve clarity of documentaion for Redirect
43+
- 8c14615 Fixes #15 Documentation IdP Cert
44+
345
0.32 16-Jan-2022
446

547
Version 0.31-TRIAL with version incremented
@@ -8,7 +50,7 @@ Revision history for Perl extension Net::SAML2.
850
1. Replace Crypt::OpenSSL::Verify509
951
2. Merge latest XML::Sig
1052

11-
TBD Update Changes and Increment version
53+
780de03 Update Changes and Increment version
1254

1355
0.31-TRIAL 15-Jan-2021
1456

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ my %WriteMakefileArgs = (
7070
"URI::URL" => 0,
7171
"XML::LibXML::XPathContext" => 0
7272
},
73-
"VERSION" => "0.32",
73+
"VERSION" => "0.33",
7474
"test" => {
7575
"TESTS" => "t/*.t t/author/*.t"
7676
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Net::SAML2
88

99
# VERSION
1010

11-
version 0.26
11+
version 0.33
1212

1313
# SYNOPSIS
1414

lib/Net/SAML2.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44

55
require 5.008_001;
66

7-
our $VERSION = '0.32';
7+
our $VERSION = '0.33';
88
$VERSION = eval {$VERSION};
99

1010
=head1 NAME

lib/Net/SAML2/XML/Util.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use XML::Tidy;
99
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
1010

1111
$DEBUG = 0;
12-
$VERSION = '0.32';
12+
$VERSION = '0.33';
1313

1414
# We are exporting functions
1515
use base qw/Exporter/;

0 commit comments

Comments
 (0)