File tree Expand file tree Collapse file tree 5 files changed +19
-7
lines changed Expand file tree Collapse file tree 5 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ my %WriteMakefileArgs = (
4848 " URI::Encode" => 0,
4949 " URI::Escape" => 0,
5050 " URI::QueryParam" => 0,
51- " URN::OASIS::SAML2" => " 0.003 " ,
51+ " URN::OASIS::SAML2" => " 0.004 " ,
5252 " XML::Enc" => " 0.13" ,
5353 " XML::Generator" => " 1.13" ,
5454 " XML::LibXML" => 0,
@@ -124,7 +124,7 @@ my %FallbackPrereqs = (
124124 " URI::Encode" => 0,
125125 " URI::Escape" => 0,
126126 " URI::QueryParam" => 0,
127- " URN::OASIS::SAML2" => " 0.003 " ,
127+ " URN::OASIS::SAML2" => " 0.004 " ,
128128 " XML::Enc" => " 0.13" ,
129129 " XML::Generator" => " 1.13" ,
130130 " XML::LibXML" => 0,
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ requires "URI" => "0";
3232requires " URI::Encode" => " 0" ;
3333requires " URI::Escape" => " 0" ;
3434requires " URI::QueryParam" => " 0" ;
35- requires " URN::OASIS::SAML2" => " 0.003 " ;
35+ requires " URN::OASIS::SAML2" => " 0.004 " ;
3636requires " XML::Enc" => " 0.13" ;
3737requires " XML::Generator" => " 1.13" ;
3838requires " XML::LibXML" => " 0" ;
Original file line number Diff line number Diff line change 11package Net::SAML2::Protocol::Artifact ;
2+ use Moose;
23# VERSION
34
4- use Moose;
55use MooseX::Types::DateTime qw/ DateTime / ;
66use DateTime::Format::XSD;
77use Net::SAML2::XML::Util qw/ no_comments / ;
Original file line number Diff line number Diff line change 11package Net::SAML2::Protocol::LogoutResponse ;
2+ use Moose;
23# VERSION
34
4- use Moose;
55use MooseX::Types::URI qw/ Uri / ;
66use Net::SAML2::XML::Util qw/ no_comments / ;
77use Net::SAML2::Util qw/ deprecation_warning / ;
@@ -83,12 +83,24 @@ around BUILDARGS => sub {
8383 return $self -> $orig (%args );
8484};
8585
86+ =head2 response_to()
87+
88+ Deprecated use B<in_response_to >
89+
90+ =cut
91+
8692sub response_to {
8793 my $self = shift ;
8894 deprecation_warning(" Please use in_response_to instead of response_to" );
8995 return $self -> in_response_to;
9096}
9197
98+ =head2 substatus()
99+
100+ Deprecated use B<sub_status >
101+
102+ =cut
103+
92104sub substatus {
93105 my $self = shift ;
94106 deprecation_warning(" Please use sub_status instead of substatus" );
Original file line number Diff line number Diff line change 11package Net::SAML2::Role::ProtocolMessage ;
2- # VERSION
3-
42use Moose::Role;
53
4+ # VERSION
5+
66# ABSTRACT: Common behaviour for Protocol messages
77
88use feature qw( state) ;
You can’t perform that action at this time.
0 commit comments