Skip to content

Commit 3cffcc7

Browse files
authored
Merge pull request #6 from perl-net-saml2/v0.27-prep
Version 0.28 released
2 parents e9c3fa8 + 9630745 commit 3cffcc7

File tree

6 files changed

+47
-4
lines changed

6 files changed

+47
-4
lines changed

CONTRIBUTING.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Contributing
2+
3+
The best was to contribute is to fork https://github.com/perl-net-saml2/perl-Net-SAML2 and send a pull request.
4+
5+
Issues should be reported at [Github Issue](https://github.com/perl-net-saml2/perl-Net-SAML2/issues).
6+
7+
Future Plans:
8+
9+
1. Move to configurable Certificate Verification with Crypt::OpenSSL::Verify replacing Crypt::OpenSSL::VerifyX509 as the default eventually
10+
2. Allow XML Signature Verification to be configurable with XML::Sig possibly replacing Net::SAML2::XML::Sig at the default eventually
11+
3. Allow the certificate files to be provided as text strings to allow applications to store the certificates in their native settings if needed
12+
4. We are open to other suggestions or improvements

Changes

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

3+
0.28 04-Jul-2020
4+
5+
Increment Version for official release
6+
7+
0.27-TRIAL 03-Jul-2020
8+
9+
Some overhaul of the Moose code and a couple of XML::Sig fixes
10+
as well as a fix to work with Perl 5.10 (Upgrade please upgrade)
11+
12+
As a point of interest the external XML::Sig module has been updated
13+
and is now capable of replacing Net::SAML2::XML::Sig
14+
15+
eac8408 Update Changes
16+
9352be7 Add contributing info
17+
2ecbc2b Use default Moose types instead of MooseX::Types::Moose
18+
ecee8bf Add predicates to Net::SAML2::Protocol::AuthnRequest
19+
7562ff1 Make use of builders instead of using BUILDARGS
20+
d46073c Specify Canonical exclusive mode for XML::Sig
21+
597d346 RSA|DSAKeyValue have KeyValue element
22+
00f6276 Reverse order of Changes file
23+
6f1ee32 Merge pull request #1 from waterkip/perl-510
24+
ca48803 Fix perl 5.10 issue with `//=` syntax
25+
a31840e Fix github action for newer versions of perl Checkout
26+
patched Crypt::OpenSSL::VerifyX509
27+
6c67af9 Fix perl 5.10 issue with `//=` syntax
28+
739673c Release does not need Docker file
29+
7c346f7 Update README.md
30+
ce250ee Update Makefile Version
31+
3d65d76 Try to fix hard coded directory
32+
13ceb8c Update changes for version 0.26
33+
334
0.26-TRIAL TBD
435
Some major changes in the test suite but overall minor changes to
536
the rest of the module

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ my %WriteMakefileArgs = (
6969
"XML::LibXML" => 0,
7070
"XML::LibXML::XPathContext" => 0
7171
},
72-
"VERSION" => "0.26",
72+
"VERSION" => "0.28",
7373
"test" => {
7474
"TESTS" => "t/*.t t/author/*.t"
7575
}

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.26';
7+
our $VERSION = '0.28';
88
$VERSION = eval {$VERSION};
99

1010
=head1 NAME

lib/Net/SAML2/XML/Sig.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use warnings;
77
use vars qw($VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG);
88

99
$DEBUG = 0;
10-
$VERSION = '0.26';
10+
$VERSION = '0.28';
1111

1212
use base qw(Class::Accessor);
1313
Net::SAML2::XML::Sig->mk_accessors(qw(canonicalizer key));

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.26';
12+
$VERSION = '0.28';
1313

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

0 commit comments

Comments
 (0)