File tree 6 files changed +47
-4
lines changed
6 files changed +47
-4
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
Revision history for Perl extension Net::SAML2.
2
2
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
+
3
34
0.26-TRIAL TBD
4
35
Some major changes in the test suite but overall minor changes to
5
36
the rest of the module
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ my %WriteMakefileArgs = (
69
69
" XML::LibXML" => 0,
70
70
" XML::LibXML::XPathContext" => 0
71
71
},
72
- " VERSION" => " 0.26 " ,
72
+ " VERSION" => " 0.28 " ,
73
73
" test" => {
74
74
" TESTS" => " t/*.t t/author/*.t"
75
75
}
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.26 ' ;
7
+ our $VERSION = ' 0.28 ' ;
8
8
$VERSION = eval {$VERSION };
9
9
10
10
=head1 NAME
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ use warnings;
7
7
use vars qw( $VERSION @EXPORT_OK %EXPORT_TAGS $DEBUG) ;
8
8
9
9
$DEBUG = 0;
10
- $VERSION = ' 0.26 ' ;
10
+ $VERSION = ' 0.28 ' ;
11
11
12
12
use base qw( Class::Accessor) ;
13
13
Net::SAML2::XML::Sig-> mk_accessors(qw( canonicalizer 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.26 ' ;
12
+ $VERSION = ' 0.28 ' ;
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