Fix versions

This commit is contained in:
Yadd 2022-02-01 16:33:08 +01:00
parent 42f100d74b
commit c3724a618f
27 changed files with 27 additions and 27 deletions

View File

@ -14,7 +14,7 @@ use MIME::Base64;
use Safe;
use Encode;
our $VERSION = '2.0.9';
our $VERSION = '2.0.14';
my $dataStart = tell(DATA);

View File

@ -10,7 +10,7 @@ use Crypt::URandom;
use Digest::HMAC_SHA1 'hmac_sha1_hex';
use Lemonldap::NG::Common::Crypto;
our $VERSION = '2.0.10';
our $VERSION = '2.0.14';
has 'key' => (
is => 'ro',

View File

@ -21,7 +21,7 @@ use constant REDIRECT => Apache2::Const::REDIRECT;
use constant DECLINED => Apache2::Const::DECLINED;
use constant SERVER_ERROR => Apache2::Const::SERVER_ERROR;
our $VERSION = '2.0.6';
our $VERSION = '2.0.14';
sub handler {
my ( $class, $r ) = @_;

View File

@ -3,7 +3,7 @@ use Lemonldap::NG::Common::JWT qw(getAccessTokenSessionId);
use strict;
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
sub retrieveSession {
my ( $class, $req, $id ) = @_;

View File

@ -5,7 +5,7 @@ use Mouse;
#use Lemonldap::NG::Handler::Main qw(:jailSharedVars);
our $VERSION = '2.0.11';
our $VERSION = '2.0.14';
has protection => ( is => 'rw', isa => 'Str' );
has rule => ( is => 'rw', isa => 'Str' );

View File

@ -1,6 +1,6 @@
package Lemonldap::NG::Handler::Main::Reload;
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
package Lemonldap::NG::Handler::Main;

View File

@ -9,7 +9,7 @@ use Lemonldap::NG::Handler::PSGI::Main;
extends 'Lemonldap::NG::Handler::Lib::PSGI', 'Lemonldap::NG::Common::PSGI';
our $VERSION = '2.0.10';
our $VERSION = '2.0.14';
sub init {
my ( $self, $args ) = @_;

View File

@ -3,7 +3,7 @@ package Lemonldap::NG::Handler::PSGI::Try;
use strict;
use Mouse;
our $VERSION = '2.0.6';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Handler::PSGI::Router';

View File

@ -24,7 +24,7 @@ extends qw(
Lemonldap::NG::Common::Conf::RESTServer
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
#############################
# I. INITIALIZATION METHODS #

View File

@ -23,7 +23,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_NO_SECOND_FACTORS
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Portal::Main::Plugin';
with 'Lemonldap::NG::Portal::Lib::OverConf';

View File

@ -5,7 +5,7 @@ use strict;
use Mouse;
use JSON qw(from_json to_json);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends qw(
Lemonldap::NG::Portal::Main::Plugin

View File

@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_IDPCHOICE
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends qw(
Lemonldap::NG::Portal::Main::Auth

View File

@ -19,7 +19,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_PASSWORDFORMEMPTY
);
our $VERSION = '2.0.10';
our $VERSION = '2.0.14';
extends qw(
Lemonldap::NG::Portal::Main::Auth

View File

@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
extends 'Lemonldap::NG::Portal::Lib::LDAP';
our $VERSION = '2.0.8';
our $VERSION = '2.0.14';
# PRIVATE METHOD
sub modifCertificate {

View File

@ -20,7 +20,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
);
use String::Random qw/random_string/;
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends qw(
Lemonldap::NG::Portal::Main::Issuer

View File

@ -22,7 +22,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_UNAUTHORIZEDPARTNER
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Portal::Main::Issuer',
'Lemonldap::NG::Portal::Lib::SAML';

View File

@ -7,7 +7,7 @@ use Safe;
extends 'Lemonldap::NG::Portal::Lib::Wrapper';
with 'Lemonldap::NG::Portal::Lib::OverConf';
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
has modules => ( is => 'rw', default => sub { {} } );
has rules => ( is => 'rw', default => sub { {} } );

View File

@ -22,7 +22,7 @@ use Mouse;
use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_REDIRECT);
our $VERSION = '2.0.13';
our $VERSION = '2.0.14';
# OpenID Connect standard claims
use constant PROFILE => [

View File

@ -21,7 +21,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_SAML_SLO_ERROR
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
# PROPERTIES

View File

@ -8,7 +8,7 @@
# of lemonldap-ng.ini) and underlying handler configuration
package Lemonldap::NG::Portal::Main::Init;
our $VERSION = '2.0.13';
our $VERSION = '2.0.14';
package Lemonldap::NG::Portal::Main;

View File

@ -7,7 +7,7 @@ use Mouse;
use Clone 'clone';
use Lemonldap::NG::Portal::Main::Constants 'URIRE';
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Common::Module';

View File

@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_ERROR
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Common::Module';

View File

@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_BADCREDENTIALS
);
our $VERSION = '2.0.8';
our $VERSION = '2.0.14';
extends qw(
Lemonldap::NG::Portal::Main::Plugin

View File

@ -9,7 +9,7 @@ use strict;
use Mouse;
use Lemonldap::NG::Portal;
our $VERSION = '2.0.10';
our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Portal::Main::Plugin';

View File

@ -12,7 +12,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_SENDRESPONSE
);
our $VERSION = '2.0.12';
our $VERSION = '2.0.14';
extends qw(
Lemonldap::NG::Portal::Main::Plugin

View File

@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
extends 'Lemonldap::NG::Portal::Register::LDAP';
our $VERSION = '2.0.10';
our $VERSION = '2.0.14';
sub createUser {
my ( $self, $req ) = @_;

View File

@ -14,7 +14,7 @@ extends qw(
Lemonldap::NG::Portal::Register::Base
);
our $VERSION = '2.0.10';
our $VERSION = '2.0.14';
# RUNNING METHODS