Skip to content

Commit c4ec6e2

Browse files
authored
Merge pull request #38 from timlegge/dist-changes
A few more cleanup and fixes
2 parents 9c5585b + 54e612e commit c4ec6e2

File tree

18 files changed

+126
-11
lines changed

18 files changed

+126
-11
lines changed

Changes

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
Revision history for Perl extension Net::SAML2.
22

3+
{{$NEXT}}
4+
5+
[Significant Changes since 0.40]
6+
7+
- COMPATABILITY WARNING: version 0.44 will likely make sha256 the default
8+
- HTTP-Redirect now supports signing and verifying with more than rsa-sha1
9+
- include HTTP-Post for SingleLogoutService in generated metadata
10+
- Destination missing in LogoutRequest
11+
- Added PingIdentity to the tested IdPs
12+
- Most other changes related to the testapp Saml2Test (in git repo)
13+
14+
[Change Log]
15+
- f694501 testapp: prevent app error if the are no slo_urls
16+
- c2c9e4b testapp: revert previous change to sls-redirect-response
17+
- c9532b3 Fixes #30 - Modules withou version and cleanup missing Abstract
18+
- 9c5585b Merge pull request #37 from timlegge/testapp
19+
- c51ba51 Tested compatiblity against PingIdentity
20+
- b4d3fe9 Remove end of line spaces
21+
- 41ef582 testapp: provide documentation on how to use the Saml2Test application
22+
- 5a8ebb7 Fixes #36 testapp: metadata is rendered as text by the browser
23+
- f1e2eca testapp: add .gitignore file testapp
24+
- ca4b8bd Fixes #35: Metadata does not include HTTP-Post for SingleLogoutService
25+
- 64008da testapp: Better org_name
26+
- 22073bb Update certificates with 10 year expiration
27+
- f215c40 testapp: add lightttpd.conf to proxy https traffic to testapp on port 3000
28+
- f92ba77 testapp: provide lighttpd config to deliver a metatdata.xml file
29+
- 2d671a4 Fixes #32: HTTP-Redirect should support more than sha1
30+
- 5e2425a testapp: Make required settings configurable
31+
- f70b0a5 Fixes #34: testapp: Dancer request_uri is not decoded
32+
- 8c0d048 testapp: Fixes #33 Destination is not properly assigned
33+
- 6e0a685 Fixes #31 Destination missing in LogoutRequest
34+
- 652c763 testapp: support post for LogoutResponse
35+
336
0.40 - 2021-07-26
437

538
[Significant Changes since 0.38]

dist.ini

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ contributor = Timothy Legge <timlegge@gmail.com>
3232
[ConfirmRelease]
3333
[UploadToCPAN]
3434

35-
[GatherDir]
35+
[Git::GatherDir]
3636
exclude_filename = cpanfile
3737
exclude_filename = Makefile.PL
3838
exclude_filename = dev-bin/cpanm
@@ -46,10 +46,10 @@ match = ico
4646

4747
[CPANFile]
4848

49-
[CopyFilesFromBuild::Filtered]
50-
copy = cpanfile
51-
copy = Makefile.PL
52-
copy = README
49+
;[CopyFilesFromBuild::Filtered]
50+
;copy = cpanfile
51+
;copy = Makefile.PL
52+
;copy = README
5353

5454
[CopyFilesFromRelease]
5555
copy = cpanfile, Makefile.PL, README
@@ -75,5 +75,18 @@ web = https://github.com/perl-net-saml2/perl-Net-SAML2/issues
7575
[Test::NoTabs]
7676

7777
[PodWeaver]
78-
[VersionFromModule]
78+
[NextRelease]
79+
format = %v -- %{EEE MMM dd HH:mm:ss VVV yyyy}d
80+
filename = Changes
81+
82+
[Git::NextVersion]
83+
first_version = 0.001 ; this is the default
84+
version_by_branch = 0 ; this is the default
85+
version_regexp = ^(0.\d+)$ ; this is the default
86+
[WriteVersion]
87+
[Git::Tag]
88+
tag_format = %V ; this is the default
89+
tag_message = %V ; this is the default
90+
[Git::Commit]
91+
changelog = Changes ; this is the default
7992
[Signature]

lib/Net/SAML2.pm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ use warnings;
44

55
require 5.008_001;
66

7+
# ABSTRACT: SAML2 bindings and protocol implementation
8+
79
our $VERSION = '0.40';
810
$VERSION = eval {$VERSION};
911

lib/Net/SAML2/Binding/POST.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ use warnings;
55

66
use Moose;
77

8+
our $VERSION = '0.40';
9+
10+
# ABSTRACT: Net::SAML2::Binding::POST - HTTP POST binding for SAML
11+
812
=head1 NAME
913
1014
Net::SAML2::Binding::POST - HTTP POST binding for SAML2

lib/Net/SAML2/Binding/Redirect.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ use warnings;
66
use Moose;
77
use MooseX::Types::URI qw/ Uri /;
88

9+
our $VERSION = '0.40';
10+
11+
# ABSTRACT: Net::SAML2::Binding::Redirect - HTTP Redirect binding for SAML
12+
913
=head1 NAME
1014
1115
Net::SAML2::Binding::Redirect

lib/Net/SAML2/Binding/SOAP.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ use Moose;
33
use MooseX::Types::URI qw/ Uri /;
44
use Net::SAML2::XML::Util qw/ no_comments /;
55

6+
our $VERSION = '0.40';
7+
8+
# ABSTRACT: Net::SAML2::Binding::Artifact - SOAP binding for SAML
9+
610
=head1 NAME
711
812
Net::SAML2::Binding::Artifact - SOAP binding for SAML2

lib/Net/SAML2/IdP.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ package Net::SAML2::IdP;
22
use Moose;
33
use MooseX::Types::URI qw/ Uri /;
44

5+
our $VERSION = '0.40';
6+
7+
# ABSTRACT: Net::SAML2::IdP - SAML Identity Provider object
8+
59
=head1 NAME
610
711
Net::SAML2::IdP - SAML Identity Provider object

lib/Net/SAML2/Protocol/ArtifactResolve.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ use MooseX::Types::URI qw/ Uri /;
44

55
with 'Net::SAML2::Role::ProtocolMessage';
66

7+
our $VERSION = '0.40';
8+
9+
# ABSTRACT: Net::SAML2::Protocol::ArtifactResolve - ArtifactResolve protocol class
10+
711
=head1 NAME
812
913
Net::SAML2::Protocol::ArtifactResolve - ArtifactResolve protocol class.

lib/Net/SAML2/Protocol/Assertion.pm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ use XML::LibXML;
1010

1111
with 'Net::SAML2::Role::ProtocolMessage';
1212

13+
our $VERSION = '0.40';
14+
15+
# ABSTRACT: Net::SAML2::Protocol::Assertion - SAML2 assertion object
16+
1317
=head1 NAME
1418
1519
Net::SAML2::Protocol::Assertion - SAML2 assertion object

lib/Net/SAML2/Protocol/AuthnRequest.pm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ with 'Net::SAML2::Role::ProtocolMessage';
1010

1111
# ABSTRACT: SAML2 AuthnRequest object
1212

13+
our $VERSION = '0.40';
14+
15+
=head1 NAME
16+
17+
Net::SAML2::Protocol::AuthnRequest - SAML2 AuthnRequest object
18+
1319
=head1 SYNOPSIS
1420
1521
my $authnreq = Net::SAML2::Protocol::AuthnRequest->new(

0 commit comments

Comments
 (0)