diff --git a/e2e-tests/lmConf-1.json b/e2e-tests/lmConf-1.json index 695aec3735c6a656da815beecb703f863998a5da..7042a3f27b31d0a0c86930ab1482bf512d151a6e 100644 --- a/e2e-tests/lmConf-1.json +++ b/e2e-tests/lmConf-1.json @@ -100,7 +100,7 @@ "cfgDate": 1428138808, "cfgLog": "Default configuration provided by LemonLDAP::NG team", "cfgNum": "1", - "cfgVersion": "2.0.0", + "cfgVersion": "2.1.0", "cookieName": "lemonldap", "customFunctions": "My::hello My::get_additional_arg", "demoExportedVars": { diff --git a/fastcgi-server/sbin/llng-fastcgi-server b/fastcgi-server/sbin/llng-fastcgi-server index 7e3947d775cb33af1b3453240abd0a8522187eb7..61ddc3aaf25827525510ea4b8a4bc05dda61d4a0 100644 --- a/fastcgi-server/sbin/llng-fastcgi-server +++ b/fastcgi-server/sbin/llng-fastcgi-server @@ -7,7 +7,7 @@ use POSIX; use Getopt::Long; use Lemonldap::NG::Handler::Main::Reload; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our ( $foreground, $engine, $nproc, $pidFile, diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm index 2f612f867a2e360193b08f08112e5e45daa2119c..a9bff214e98e4fa80d608326ad5ef3bb371201b9 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Common; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; 1; __END__ diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session.pm index e5597f049f4e70c9cd6c5401234de7b35924b3d3..1ad0851f7999fb6de15b18b00bc6e83be284e88a 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session.pm @@ -15,7 +15,7 @@ use Lemonldap::NG::Common::Apache::Session::Serialize::JSON; use Lemonldap::NG::Common::Apache::Session::Store; use Lemonldap::NG::Common::Apache::Session::Lock; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub _load { my ( $backend, $func ) = @_; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Generate/SHA256.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Generate/SHA256.pm index 244c9e563dafc3adb374c868d9ec7405d7a34147..020682e494d4cf5a66b848565810e79e1c82e7f8 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Generate/SHA256.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Generate/SHA256.pm @@ -12,7 +12,7 @@ use strict; use Crypt::URandom; use Digest::SHA qw(sha256 sha256_hex sha256_base64); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; sub generate { my $session = shift; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/REST.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/REST.pm index c20aeae9fccb88dd0d14a82cb3caf9a4582046e8..a51a650922cbcea1b02b2d2a9ce566248ee7012f 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/REST.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/REST.pm @@ -5,7 +5,7 @@ use Lemonldap::NG::Common::UserAgent; use Lemonldap::NG::Common::Apache::Session::Generate::SHA256; use JSON qw(from_json to_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @ISA = qw(Lemonldap::NG::Common::Apache::Session::Generate::SHA256); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/SOAP.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/SOAP.pm index 452b0a92a487a54c5c98b8344dbdd080586410fb..81eab9ba549a8b5ccec82f9e5b2c70337d16af6a 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/SOAP.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/SOAP.pm @@ -8,7 +8,7 @@ package Lemonldap::NG::Common::Apache::Session::SOAP; use strict; use SOAP::Lite; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; #parameter proxy Url of SOAP service #parameter proxyOptions SOAP::Lite options diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Serialize/JSON.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Serialize/JSON.pm index 8f0fa1f8238b0395835e69d86b2fe292adf1d005..bb29fdb695c3c3bdbe3e26beeb14506b95c84400 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Serialize/JSON.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Serialize/JSON.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Apache::Session::Serialize::JSON; use strict; use JSON qw(to_json from_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub serialize { my $session = shift; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Store.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Store.pm index ad6812cc02ffcc083782e141c4aed11be88aadcd..00badf06d900a3e0af1f83b76f40c06a24d133a0 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Store.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Apache/Session/Store.pm @@ -1,7 +1,7 @@ package Lemonldap::NG::Common::Apache::Session::Store; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { my $class = shift; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Cli.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Cli.pm index 82a657feb34688cb9868a193c7d4874e32b60aee..8426faa0b6a2a0c5dd0f287be9227c251273542e 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Cli.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Cli.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Common::Conf; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has confAccess => ( is => 'rw', diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Combination/Parser.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Combination/Parser.pm index 76de87dbf5ecee4a17ad5b316a9d223a436491ae..8eeeb2866f5b32c480868495a2fd175fed7c83ab 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Combination/Parser.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Combination/Parser.pm @@ -5,7 +5,7 @@ use Mouse; use Safe; use constant PE_OK => 0; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Handle "if then else" (used during init) # return a sub that can be called with ($req) to get a [array] of combination diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm index 785deba1130ae6a8f7a9f968411f646c44ca8179..1aed6d588bfc8eec32d987d2f6fa327e1b6db655 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf.pm @@ -27,7 +27,7 @@ use Config::IniFiles; #inherits Lemonldap::NG::Common::Conf::Backends::SOAP #inherits Lemonldap::NG::Common::Conf::Backends::LDAP -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our $msg = ''; our $iniObj; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/AccessLib.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/AccessLib.pm index 04a1a1e222e4a28ac59891ef6d848156ceb07d05..16ee634934e290ea73aea19c6d4316af93e5aa09 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/AccessLib.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/AccessLib.pm @@ -11,7 +11,7 @@ has 'configStorage' => ( is => 'rw', isa => 'HashRef', default => sub { {} } ); has 'currentConf' => ( is => 'rw', required => 1, default => sub { {} } ); has 'protection' => ( is => 'rw', isa => 'Str', default => 'manager' ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; ## @method Lemonldap::NG::Common::Conf confAcc() # Configuration access object diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/CDBI.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/CDBI.pm index d67c78bfb2b4e45417fa10f8d23ec5a21031d002..c10a0122a664814621afbb4843b8833488d887b3 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/CDBI.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/CDBI.pm @@ -5,7 +5,7 @@ use utf8; use JSON; use Lemonldap::NG::Common::Conf::Backends::_DBI; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @ISA = qw(Lemonldap::NG::Common::Conf::Backends::_DBI); sub store { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/DBI.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/DBI.pm index 6240e487a54d2eb1989a589e9fb5f6147ddf2f04..ab1fdbf6a9765345e5029ff9a2fd834c2e9f20ae 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/DBI.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/DBI.pm @@ -5,7 +5,7 @@ use utf8; use Lemonldap::NG::Common::Conf::Serializer; use Lemonldap::NG::Common::Conf::Backends::_DBI; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @ISA = qw(Lemonldap::NG::Common::Conf::Backends::_DBI); sub store { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/File.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/File.pm index 29f856863f03d36b02823a5ad61b194e5f709f37..0e3b8cb7576a85e32e5b8816c9a4b5dfe87b3084 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/File.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/File.pm @@ -5,7 +5,7 @@ use Lemonldap::NG::Common::Conf::Constants; #inherits use JSON; use Encode; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our $initDone; sub Lemonldap::NG::Common::Conf::_lock { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/JSONFile.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/JSONFile.pm index 4bfa09acd0ba508a4f4928d16e993111730dcf3f..993073697fac1703a072fe4336bd27d88c80b1f2 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/JSONFile.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/JSONFile.pm @@ -5,7 +5,7 @@ package Lemonldap::NG::Common::Conf::Backends::JSONFile; use Lemonldap::NG::Common::Conf::Backends::File; our @ISA = qw(Lemonldap::NG::Common::Conf::Backends::File); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/LDAP.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/LDAP.pm index 27495a9c8cd6504ff187af78c1af91efa960ce96..475821a465a48d868e46591d1a33db0cf6c6adea 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/LDAP.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/LDAP.pm @@ -11,7 +11,7 @@ use Net::LDAP; use Lemonldap::NG::Common::Conf::Constants; #inherits use Lemonldap::NG::Common::Conf::Serializer; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; BEGIN { *Lemonldap::NG::Common::Conf::ldap = \&ldap; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/Local.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/Local.pm index 7672cd27b3637eb73e17c6c0e72c995602a91b19..027dd1d7498f22142d55f6644fdbb6e5f19b27cc 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/Local.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/Local.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Conf::Backends::Local; use strict; use Lemonldap::NG::Common::Conf::Constants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub prereq { return 1; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/MongoDB.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/MongoDB.pm index 5af2b9de1ef1d3be06d84a61f9be77c4c3971a35..3164efcaaac40a97065bb6af13295659f9a312a4 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/MongoDB.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/MongoDB.pm @@ -5,7 +5,7 @@ use utf8; use strict; use Lemonldap::NG::Common::Conf::Serializer; -our $VERSION = '2.0.1'; +our $VERSION = '2.1.0'; our $initDone; sub prereq { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/RDBI.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/RDBI.pm index 64ea593caeb127706d99974515332aa885acc7f6..551f72bc29fa37850e9c8332e7d40d516fe95f98 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/RDBI.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/RDBI.pm @@ -5,7 +5,7 @@ use utf8; use Lemonldap::NG::Common::Conf::Serializer; use Lemonldap::NG::Common::Conf::Backends::_DBI; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @ISA = qw(Lemonldap::NG::Common::Conf::Backends::_DBI); sub store { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/REST.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/REST.pm index 1abcc471f24c220dba6f4ee5bb08eda11c7d416e..a7ecb53cab269b9b06884037c762711a4531230a 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/REST.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/REST.pm @@ -4,7 +4,7 @@ use strict; use Lemonldap::NG::Common::UserAgent; use JSON qw(from_json to_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; #parameter baseUrl, user, password, realm, lwpOpts diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/SOAP.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/SOAP.pm index 41757867b7da5b879f13708035653601ba119a8f..7d1b1974033ae6291fde2d7feef0de0b28950826 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/SOAP.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/SOAP.pm @@ -5,7 +5,7 @@ use utf8; use SOAP::Lite; use Lemonldap::NG::Common::Conf::Constants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; #parameter proxy Url of SOAP service #parameter proxyOptions SOAP::Lite parameters diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/YAMLFile.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/YAMLFile.pm index 92db26799eec745357a18f871b74619c60db84d8..555d8697987b8d87e69ad2c95ca5b314b5cc3fb8 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/YAMLFile.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/YAMLFile.pm @@ -5,7 +5,7 @@ use Lemonldap::NG::Common::Conf::Constants; #inherits use YAML qw(); use Encode; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our $initDone; sub Lemonldap::NG::Common::Conf::_yamlLock { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/_DBI.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/_DBI.pm index 1d7562ec266f44f613f259d715a38a065cb4d10a..e714d4103cc10491ecd23c2c889ec7e4fb0627ae 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/_DBI.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Backends/_DBI.pm @@ -5,7 +5,7 @@ use utf8; use DBI; use Lemonldap::NG::Common::Conf::Constants; #inherits -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @ISA = qw(Lemonldap::NG::Common::Conf::Constants); our ( @EXPORT, %EXPORT_TAGS ); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Compact.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Compact.pm index 510d0b931b9c0bba34753661e59b2222e60e398e..55119f8836063bca7212bb8661b586e6f6da4e45 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Compact.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Compact.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Common::Conf::ReConstants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub compactConf { my ( $self, $conf ) = @_; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm index 7318e91760805d32caae15013f37bcfdee928817..ba1de0ca73127df4b70ea25e781f24b61bd3a4d9 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Constants.pm @@ -5,7 +5,7 @@ use strict; use Exporter 'import'; use base qw(Exporter); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # CONSTANTS diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm index 92b85c545d514f58180f558ccef6c3442cdfb12f..81c63f3ddc6eee180d68b751c87639a0db2224a2 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/DefaultValues.pm @@ -1,7 +1,7 @@ # This file is generated by Lemonldap::NG::Manager::Build. Don't modify it by hand package Lemonldap::NG::Common::Conf::DefaultValues; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; sub defaultValues { return { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm index 9fe481c8a94cc157d59249b47dce2fbf0f4f7bf3..c8e64ce9c8ef4c6a51ddb1f6a7ba4457d9317ae8 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/RESTServer.pm @@ -6,7 +6,7 @@ use Mouse; use Lemonldap::NG::Common::Conf::Constants; use Lemonldap::NG::Common::Conf::ReConstants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Conf::AccessLib'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm index 34fe645b97005f4bdeab29c166b5ab93edf6a3c6..fca3fe5d5c28d1cf2d2ade7fa91bda2a3007f68f 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/ReConstants.pm @@ -5,7 +5,7 @@ use strict; use Exporter 'import'; use base qw(Exporter); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; our %EXPORT_TAGS = ( 'all' => [qw($simpleHashKeys $doubleHashKeys $specialNodeKeys $casAppMetaDataNodeKeys $casSrvMetaDataNodeKeys $oidcOPMetaDataNodeKeys $oidcRPMetaDataNodeKeys $samlIDPMetaDataNodeKeys $samlSPMetaDataNodeKeys $virtualHostKeys $specialNodeHash $authParameters $issuerParameters $samlServiceParameters $oidcServiceParameters $casServiceParameters)] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/SAML/Metadata.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/SAML/Metadata.pm index 9bb715b3d2931e5c3af4d379052392b96b28ceaa..52289833670fa94becf96d62d027b6315418df4d 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/SAML/Metadata.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/SAML/Metadata.pm @@ -14,7 +14,7 @@ use MIME::Base64; use Safe; use Encode; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; my $dataStart = tell(DATA); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Serializer.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Serializer.pm index 3ceb632f8245001d549d7c88515b3ac6d8be84df..4fcd0ff344f083de884a7cb0a93a74ed2d8de9f2 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Serializer.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Serializer.pm @@ -6,7 +6,7 @@ use Encode; use JSON; use Lemonldap::NG::Common::Conf::Constants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; BEGIN { *Lemonldap::NG::Common::Conf::normalize = \&normalize; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Wrapper.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Wrapper.pm index 7c4cb5a6da05770773fa8d3827abf3cd004eb4b0..38b6446be857073f181901f1e8e3cb28728aa265 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Wrapper.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Conf/Wrapper.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Common::Conf::Wrapper; use strict; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub TIEHASH { my ( $class, $conf, $overrides ) = @_; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Crypto.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Crypto.pm index 9d6c4b443a4e7affc5a7e6a1953455201e13e698..84e4156f3e7ec9f6615827bf5e80221852b08ed4 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Crypto.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Crypto.pm @@ -14,7 +14,7 @@ use MIME::Base64; use Digest::MD5 qw(md5); use bytes; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our $msg; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/FormEncode.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/FormEncode.pm index 4e126964fe4f50531fe7678b31fe8c2a7d776854..af8636eed31926080a48144528649350bc63ff2a 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/FormEncode.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/FormEncode.pm @@ -4,7 +4,7 @@ use strict; use Exporter; our @ISA = qw(Exporter); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @EXPORT_OK = qw(build_urlencoded); our @EXPORT = qw(build_urlencoded); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Apache2.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Apache2.pm index 2e7453d44c8a1353c88f68855a321218cd55da31..5597ade9263b46e5d8f0557991f164d629f8a78c 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Apache2.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Apache2.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Common::Logger::Apache2; use Apache2::ServerRec; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { return bless {}, shift; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Dispatch.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Dispatch.pm index 6e74a701e21edea165a9eec4741bcaa087aceab3..41230ddb9f8d78ffe1256949ae18dd2421ef54e1 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Dispatch.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Dispatch.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Common::Logger::Dispatch; use strict; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { no warnings 'redefine'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Log4perl.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Log4perl.pm index 5a153b29f7d3559d32300528c34d9bae867f35fd..c83b9453525ccabd62336d47e6f47b92e35bd551 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Log4perl.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Log4perl.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Logger::Log4perl; use strict; use Log::Log4perl; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our $init = 0; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Null.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Null.pm index c1078c0466fb7c2ee951c89a8edae3340e9b144c..28283904d03ff2a61d4a4cf782ce8f05a9506564 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Null.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Null.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Common::Logger::Null; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { return bless {}, shift; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Sentry.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Sentry.pm index 464f6737fae55a687b1e3987883bb9a17094857f..30004c1f129170118efe785e2151a1113faeae59 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Sentry.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Sentry.pm @@ -10,7 +10,7 @@ package Lemonldap::NG::Common::Logger::Sentry; use strict; use Sentry::Raven; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { my $self = bless {}, shift; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Std.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Std.pm index ff24327635dbc05e5f28beed68e87c889a055505..96e49cb6aab733945e9649f99d3ea3687739918d 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Std.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Std.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Common::Logger::Std; use strict; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { no warnings 'redefine'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Syslog.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Syslog.pm index f75895b0053b64d8cc45805a77632c765b68a430..235a884851762fe3986689bf0dc14c7f25f69c9d 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Syslog.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Logger/Syslog.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Logger::Syslog; use strict; use Sys::Syslog qw(:standard); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { my ( $class, $conf, %args ) = @_; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Module.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Module.pm index ce71bea42f3e92ba8f652aacd42f884945e953c0..bdd22a780cf94f36b826c38f58e737e36a0ea783 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Module.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Module.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Module; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Object that provides loggers and error methods (typically PSGI object) has p => ( is => 'rw', weak_ref => 1 ); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications.pm index 014b98189e37ef15a14b95aaff2aac7b008f9d23..c0b35a67ede57b3a03553aaadb5d95d4f35c81af 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Common::Notifications; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/DBI.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/DBI.pm index 9c3fd1c77839eab73d4e565df8db735465dfd7a0..e1fbd156c5fed763185293d374e7153d7aee85bd 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/DBI.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/DBI.pm @@ -11,7 +11,7 @@ use Time::Local; use DBI; use Encode; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Notifications'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/File.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/File.pm index 40da339d10b56dd683671aca29c2562190077013..483e16bb6cb9ea7e09f835859c7105e05e5fe6f7 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/File.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/File.pm @@ -9,7 +9,7 @@ use strict; use Mouse; use MIME::Base64; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Notifications'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/JSON.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/JSON.pm index 350e77ea44e67157df2417ba03becf1c602c706d..f327968e1fb62ce3c9bd006b811f5ce3db44c8e5 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/JSON.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/JSON.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use JSON qw(from_json to_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub newNotification { my ( $self, $jsonString ) = @_; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/LDAP.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/LDAP.pm index b8fb1713b632d24c642c86b189c561b31ea35e75..f90ebbc0c56480b39400d461b2639f7c85987059 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/LDAP.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/LDAP.pm @@ -13,7 +13,7 @@ use MIME::Base64; use Net::LDAP; use utf8; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Notifications'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/XML.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/XML.pm index 5dadca8c8fb41d0fe7caea7ac8f22e07d2aacc8c..cb7bad5399a386c69a9ea9cab86d56615bd8eb42 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/XML.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Notifications/XML.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use XML::LibXML; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # XML parser has parser => ( diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI.pm index 99d2ca74c2de4c4bc31bdd7ab0aa0ab515924b6b..d90face37916f22baad4497f9b0546a07ac7cf4f 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI.pm @@ -6,7 +6,7 @@ use JSON; use Lemonldap::NG::Common::PSGI::Constants; use Lemonldap::NG::Common::PSGI::Request; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; our $_json = JSON->new->allow_nonref; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Cli/Lib.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Cli/Lib.pm index 9c37ab8a167b6244f89586cd423d828b59f13ed5..d74c12dcb3b908a90789b598926a14772921ae35 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Cli/Lib.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Cli/Lib.pm @@ -4,7 +4,7 @@ use JSON; use Mouse; use Lemonldap::NG::Common::PSGI; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has iniFile => ( is => 'ro', isa => 'Str' ); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Constants.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Constants.pm index d5057acc9ffaf3abc395fc9ad711b1989afe3200..9e51149aee21cf4edd173724cc43c9feafd1a01a 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Constants.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Constants.pm @@ -4,7 +4,7 @@ use strict; use Exporter 'import'; use base qw(Exporter); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # CONSTANTS diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Request.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Request.pm index 4a8133f62532a47eb6029c2da8ab8878e9421c06..d29af92b1de864591026ddc4df48b193a4c67e00 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Request.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Request.pm @@ -7,7 +7,7 @@ use JSON; use Plack::Request; use URI::Escape; -our $VERSION = '2.0.1'; +our $VERSION = '2.1.0'; our @ISA = ('Plack::Request'); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Router.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Router.pm index 887a8caf99f0959e4acbc38700d7a483eaa81dae..c3228f28e1e172e81c802ad61fea4098e00d2543 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Router.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/Router.pm @@ -4,7 +4,7 @@ use Mouse; use Lemonldap::NG::Common::PSGI; use Lemonldap::NG::Common::PSGI::Constants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::PSGI'; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPServer.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPServer.pm index b8dfad7ab912ce3c05f56dc1c8af6bdce621be41..2b117015ee8a5962d00fc19f602c7379bfe5654d 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPServer.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPServer.pm @@ -8,7 +8,7 @@ use SOAP::Transport::HTTP; our @ISA = ('SOAP::Transport::HTTP::Server'); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Call SOAP::Trace::objects(). sub DESTROY { SOAP::Trace::objects('()') } diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPService.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPService.pm index 486d10a3b2e5d72284424b7e65fd812a5506a2c8..d401bf0c04c339de66ffafcadf4b7772e278513e 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPService.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/PSGI/SOAPService.pm @@ -7,7 +7,7 @@ package Lemonldap::NG::Common::PSGI::SOAPService; require SOAP::Lite; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; ## @cmethod Lemonldap::NG::Common::PSGI::SOAPService new(object obj,string @func) # Constructor diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Regexp.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Regexp.pm index dc86a1d01bb3e16b453d4f1d57dfe9bff5efe814..8dd386d231c040c484cd590d5938b0119a51b340 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Regexp.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Regexp.pm @@ -5,7 +5,7 @@ package Lemonldap::NG::Common::Regexp; use AutoLoader 'AUTOLOAD'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Safelib.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Safelib.pm index e595718f433f54a67f380c94dfda1755e9a9bca3..1a91c3cc4157cdd221159fae643fdbbaf6a66714 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Safelib.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Safelib.pm @@ -12,7 +12,7 @@ use Lemonldap::NG::Common::IPv6; #use AutoLoader qw(AUTOLOAD); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Set here all the names of functions that must be available in Safe objects. # Not that only functions, not methods, can be written here diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm index 5193e2d233f346056d32190a3395ac9ec0ead9f0..3c35630532e8265e8674cfb5512ca261ef8a0006 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session.pm @@ -6,7 +6,7 @@ package Lemonldap::NG::Common::Session; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; use Lemonldap::NG::Common::Apache::Session; diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session/REST.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session/REST.pm index ae37c8fb0d65b0ab4177b9ccff752aa58472c73f..52f7cbcbb4d616312cf068c91771d2f339dd434b 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session/REST.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/Session/REST.pm @@ -5,7 +5,7 @@ use Mouse; use Lemonldap::NG::Common::Conf::Constants; use JSON qw(from_json to_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has sessionTypes => ( is => 'rw' ); diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/TOTP.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/TOTP.pm index 96a97db76751ff022e3041027113093ba186ff01..03bb717a8de0100de68caaf88c72b6d365a476bf 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/TOTP.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/TOTP.pm @@ -9,7 +9,7 @@ use Convert::Base32 qw(decode_base32 encode_base32); use Crypt::URandom; use Digest::HMAC_SHA1 'hmac_sha1_hex'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # Verify that TOTP $code matches with $secret sub verifyCode { diff --git a/lemonldap-ng-common/lib/Lemonldap/NG/Common/UserAgent.pm b/lemonldap-ng-common/lib/Lemonldap/NG/Common/UserAgent.pm index 5a23ea67fd657c358e7d2aa226a9150f8f914ce9..f525e02b53a2db0cdf97fccd83acdb4131b00cf3 100644 --- a/lemonldap-ng-common/lib/Lemonldap/NG/Common/UserAgent.pm +++ b/lemonldap-ng-common/lib/Lemonldap/NG/Common/UserAgent.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Common::UserAgent; use LWP::UserAgent; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { my ( $class, $conf ) = @_; diff --git a/lemonldap-ng-handler/META.yml b/lemonldap-ng-handler/META.yml index 4393de6940017f42073d8eda19bfab29d77e1db4..c575f61ec7aa52070919cef10ff7de424415690a 100644 --- a/lemonldap-ng-handler/META.yml +++ b/lemonldap-ng-handler/META.yml @@ -28,7 +28,7 @@ recommends: SOAP::Lite: '0' requires: LWP::UserAgent: '0' - Lemonldap::NG::Common: v2.0.2 + Lemonldap::NG::Common: v2.1.0 Mouse: '0' URI: '0' resources: diff --git a/lemonldap-ng-handler/Makefile.PL b/lemonldap-ng-handler/Makefile.PL index bf0fc82279641a43b4e77d077d94c520641d3d8b..0d26ede3dc2827cf571f2c5fed0cd67e815dc7e1 100644 --- a/lemonldap-ng-handler/Makefile.PL +++ b/lemonldap-ng-handler/Makefile.PL @@ -39,7 +39,7 @@ WriteMakefile( }, }, PREREQ_PM => { - 'Lemonldap::NG::Common' => '2.0.2', + 'Lemonldap::NG::Common' => '2.1.0', 'LWP::UserAgent' => 0, 'Mouse' => 0, 'URI' => 0, diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm index 1aba604f55f00030a881f30312c8fff35463f49d..b3613fc9a3e080489f6e33d4d41f1aa7d79fec8d 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Handler; # Use the appropriate handler # For Apache, use Lemonldap::NG::Handler::ApacheMP2 -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2.pm index ba1cbde4761e70b61c98c13de2c3caadcfbff73d..2db04607d1b2dbe31882b8f0bd3649194c612393 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Handler::ApacheMP2::Request; use Lemonldap::NG::Handler::ApacheMP2::Main; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PUBLIC METHODS diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/AuthBasic.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/AuthBasic.pm index 8ea47c926013a67f90061d652d29e5507cf18a95..b5202f3e66621502cf807ca8b7af7ffa1c16319d 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/AuthBasic.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/AuthBasic.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::AuthBasic', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/CDA.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/CDA.pm index f9420151b59035cf9f80547e0b5c36fc5cc7b2bf..78597cd2875dc2e4e924ca31207944ced9e893e3 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/CDA.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/CDA.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::CDA', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOps.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOps.pm index da4e157449292963d5f56733598463273f1731b9..557f2337b7f55bf8cbb4982393a4a212fdb43905 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOps.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOps.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::DevOps', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOpsST.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOpsST.pm index 73248393345ccde9c57105cb56e3363824ca63a0..60a854d5ab49941df06dd021d4ab49a70c8ae16c 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOpsST.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/DevOpsST.pm @@ -9,6 +9,6 @@ use base 'Lemonldap::NG::Handler::Lib::DevOps', 'Lemonldap::NG::Handler::Lib::ServiceToken', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/FCGIClient.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/FCGIClient.pm index a373ee10ee4c02ccd72e78367f843fdd3b8b9b69..c319cedf92ce114326d8ddabfd61559ad0a7f47e 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/FCGIClient.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/FCGIClient.pm @@ -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.0'; +our $VERSION = '2.1.0'; sub handler { my ( $class, $r ) = @_; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Main.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Main.pm index 6cc5e2dc223f366f2cc90593982008a72c4acdc1..88f45ce651b84578abda17afc6e196b6de4234e8 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Main.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Main.pm @@ -29,7 +29,7 @@ use constant AUTH_REQUIRED => Apache2::Const::AUTH_REQUIRED; use constant MAINTENANCE => Apache2::Const::HTTP_SERVICE_UNAVAILABLE; use constant BUFF_LEN => 8192; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Set default logger use constant defaultLogger => 'Lemonldap::NG::Common::Logger::Apache2'; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Menu.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Menu.pm index 5a27a91ea1fbd0579b23a4eb4cf973b60c4d0f66..d4c0a719b3de8ffdca258773e38a5a58e69d7919 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Menu.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/Menu.pm @@ -12,7 +12,7 @@ use base qw(Lemonldap::NG::Handler::ApacheMP2::Main); use Apache2::Filter (); use constant BUFF_LEN => 8192; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub handler { my $r = pop; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/SecureToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/SecureToken.pm index 26dbb3afff76c4221bfc6f1eb1ea2bbd2d800272..82a840d1e41507dd4857bdbb3c8d22e9e6092dc5 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/SecureToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/SecureToken.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::SecureToken', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ServiceToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ServiceToken.pm index ebb272f55cece924f13cce22e74abdff8c143f51..4ba61ceedf918926381256b7f2c11b32c5dff8cd 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ServiceToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ServiceToken.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::ServiceToken', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ZimbraPreAuth.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ZimbraPreAuth.pm index 577d1a0cb5a85a5199f0ac48007227dbba689373..d3513675d028a7f05b79b2ba49b418297e574880 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ZimbraPreAuth.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/ApacheMP2/ZimbraPreAuth.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::ZimbraPreAuth', 'Lemonldap::NG::Handler::ApacheMP2::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/AuthBasic.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/AuthBasic.pm index e57432c71a8710910ed8b6bb7b8f9f16a122ed44..4e2485613966452499a6a3d18bc8261c888a9bc5 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/AuthBasic.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/AuthBasic.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Common::UserAgent; use Lemonldap::NG::Common::FormEncode; use Lemonldap::NG::Common::Session; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our @ISA = ('Exporter'); our @EXPORT = qw(fetchId retrieveSession createSession hideCookie goToPortal); our @EXPORT_OK = @EXPORT; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/CDA.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/CDA.pm index 4ddd6ebc2a1d8a8708fed01d09e0a72a614fcc4e..ff7e8f96b9ab81f6bbf7053a0d3fd1f54548c8e2 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/CDA.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/CDA.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Handler::Lib::CDA; use strict; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub run { my ( $class, $req, $rule, $protection ) = @_; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/DevOps.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/DevOps.pm index e3f3e9be8d83fd2d059daf8a37fa676160b3c24b..cb3252ed2c64e9bd08f68d56a0e7450c92d28a75 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/DevOps.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/DevOps.pm @@ -4,7 +4,7 @@ use strict; use Lemonldap::NG::Common::UserAgent; use JSON qw(from_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; our $_ua; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/PSGI.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/PSGI.pm index 068995e12d68449e16dea818eb8ebcbf8dabe6fa..9098a5db618f6363ac72b82808e4b97ffdc0ef94 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/PSGI.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/PSGI.pm @@ -5,7 +5,7 @@ use Mouse; #use Lemonldap::NG::Handler::Main qw(:jailSharedVars); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has protection => ( is => 'rw', isa => 'Str' ); has rule => ( is => 'rw', isa => 'Str' ); diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/SecureToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/SecureToken.pm index 995f4b0c13eba33c90109efe7a34384e2690f1fd..731663ab1eef4a3da5e606d53a05a7f1b8bb614a 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/SecureToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/SecureToken.pm @@ -14,7 +14,7 @@ use strict; use Cache::Memcached; use Apache::Session::Generate::MD5; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Shared variables our $secureTokenMemcachedConnection; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ServiceToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ServiceToken.pm index 0aaa5444e1b3c4e5c434c4dcc0851132a12f8ac9..ad8aae0b5603819a23248d5528a7c98145513e29 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ServiceToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ServiceToken.pm @@ -2,7 +2,7 @@ package Lemonldap::NG::Handler::Lib::ServiceToken; use strict; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub fetchId { my ( $class, $req ) = @_; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/Status.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/Status.pm index 9bf5bba390b676cdda07c4d2f914b00ec62f3645..3b62b42646504c1a822e04cee1d7bc89ed4640ba 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/Status.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/Status.pm @@ -9,7 +9,7 @@ use JSON qw(to_json); use IO::Select; use IO::Socket::INET; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; our $status = {}; our $activity = []; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ZimbraPreAuth.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ZimbraPreAuth.pm index b7c6eca1d726ee362c0ca9e7bbb079a9473610c4..49812c23a72e49e9e12ea909f77476d4592d987c 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ZimbraPreAuth.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Lib/ZimbraPreAuth.pm @@ -11,7 +11,7 @@ package Lemonldap::NG::Handler::Lib::ZimbraPreAuth; use strict; use Digest::HMAC_SHA1 qw(hmac_sha1 hmac_sha1_hex); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Overload main run method sub run { diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm index 52e859dd657406545c53a4249caa4fb28c1d6dd1..9950bb5395fc3dd59b608edc064119c4eac52115 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main.pm @@ -9,6 +9,6 @@ use Lemonldap::NG::Handler::Main::Reload; use Lemonldap::NG::Handler::Main::Run; use Lemonldap::NG::Handler::Main::SharedVariables; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Init.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Init.pm index 957c86119cd805f26902111c59b457daa77c1ae0..e188458e90a0f5898ef75080c74635dae0ae07c6 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Init.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Init.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Handler::Main::Init; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Handler::Main; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm index 02b1dcb1a2545e67ff8106b4769e9fc655865aa7..94b75db63944566ea2a44d5cc975ee80d2d8726e 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Jail.pm @@ -29,7 +29,7 @@ has jail => ( is => 'rw' ); has error => ( is => 'rw' ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; ## @imethod protected build_jail() # Build and return the security jail used to compile rules and headers. diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Reload.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Reload.pm index e032fb4910c042efa854d13be840077474fd4d4b..b492d22342804fe31ee0c0e595689fb0e12de355 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Reload.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Reload.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Handler::Main::Reload; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Handler::Main; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Run.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Run.pm index 77756fcb4c27b99031ec955d53320c8df1e83743..d3e1d6efd77038d257e7b498520e1a1be18ca083 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Run.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Run.pm @@ -1,7 +1,7 @@ # Main running methods file package Lemonldap::NG::Handler::Main::Run; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Handler::Main; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/SharedVariables.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/SharedVariables.pm index 67906127e593b74fea70135030212d4e42e4888a..fad7e3fe4c6187d78b605734f73e2604277843c6 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/SharedVariables.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/SharedVariables.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Handler::Main::SharedVariables; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Since handler has no instances but only static classes, this module provides # classes properties with accessors diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI.pm index 48e213c615833a6c6a92cf41defe5feb74e3ce81..1d5014dd9e4ec09861bb8cdd50077fb3ef407139 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI.pm @@ -9,7 +9,7 @@ use Lemonldap::NG::Handler::PSGI::Main; extends 'Lemonldap::NG::Handler::Lib::PSGI', 'Lemonldap::NG::Common::PSGI'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { my ( $self, $args ) = @_; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/AuthBasic.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/AuthBasic.pm index bf4a9db7c67fb0a4e23e0ae2ceb2371e2718e2ee..6fba8da921706ade0851a4cb29898ee8ca12af76 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/AuthBasic.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/AuthBasic.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::AuthBasic', 'Lemonldap::NG::Handler::PSGI::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/CDA.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/CDA.pm index c8cd5e0db94c23f7b0a4b2ec7d8f1730bb7ea9af..e86aa4f6afc9a2f36456d660e5bdd7184027511f 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/CDA.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/CDA.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::CDA', 'Lemonldap::NG::Handler::PSGI::Main'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Main.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Main.pm index bc3265b35a0c8ba527d69767a3a1cd4f257cd370..633da13a9e2b915ffa848a62ddbc4dab3ab4d231 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Main.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Main.pm @@ -5,7 +5,7 @@ package Lemonldap::NG::Handler::PSGI::Main; use strict; use base 'Lemonldap::NG::Handler::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Specific modules and constants for Test or CGI use constant FORBIDDEN => 403; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Router.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Router.pm index a1173be24eee4f4ea9b1313b4dcfed57c8ef56c8..9b5ac9483d57ab60e0b8c6039be1bd157887c400 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Router.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Router.pm @@ -7,7 +7,7 @@ require Lemonldap::NG::Handler::PSGI::Main; extends 'Lemonldap::NG::Handler::Lib::PSGI', 'Lemonldap::NG::Common::PSGI::Router'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { $_[0]->api('Lemonldap::NG::Handler::PSGI::Main'); diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/ServiceToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/ServiceToken.pm index de65c4addb747602bbda9cf3589beb7f0b2e29d5..23d01cbca92757c9387874534119fe62042da92f 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/ServiceToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/ServiceToken.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::ServiceToken', 'Lemonldap::NG::Handler::PSGI::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Try.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Try.pm index b12d28c51e8a36d02838384b9c25b03842fedda0..afd6398c06f892792328491baef2a9ffec4acd5a 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Try.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/PSGI/Try.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Handler::PSGI::Try; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Handler::PSGI::Router'; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server.pm index 30123a690d5740dbfec5e05892d4109ec46094dd..f40ad76a60cb972cb74cad39f97c1bb7a1e7cdff 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server.pm @@ -7,7 +7,7 @@ use strict; use Mouse; use Lemonldap::NG::Handler::Server::Main; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Handler::PSGI'; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/AuthBasic.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/AuthBasic.pm index 0f7a8a41ddfa5da278a3284a067a8dcd3e41a93b..61202ffa304063b480cd58d9722d1c82cedaf950 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/AuthBasic.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/AuthBasic.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::AuthBasic', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/CDA.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/CDA.pm index ad8bbee15c09a8971a954620489ebedc354c3751..a29355ff47ec06e56716eef3ad48dc1b7d7bb3bb 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/CDA.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/CDA.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::CDA', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOps.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOps.pm index 65fb4f1613db824ccc6a6b2655c0b86a4dee2a70..4e9911fe73889dfeeb106345754994f7339df787 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOps.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOps.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::DevOps', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOpsST.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOpsST.pm index a0f883bd8ace45b6c386f55921207fb886cb6a05..cbb1396ea381936e45cd9cf40a298af77b386ce8 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOpsST.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/DevOpsST.pm @@ -9,6 +9,6 @@ use base 'Lemonldap::NG::Handler::Lib::DevOps', 'Lemonldap::NG::Handler::Lib::ServiceToken', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Main.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Main.pm index 5b0f15fd2c2a1d3113b37a029398673b19ac1be3..9855cd33423509ff1de4b3efe512e1821e800cfa 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Main.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Main.pm @@ -5,7 +5,7 @@ package Lemonldap::NG::Handler::Server::Main; use strict; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; use base 'Lemonldap::NG::Handler::PSGI::Main'; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Nginx.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Nginx.pm index 598007453585d789fc8744a2c8b8c182f263e979..d0b31cf45b16f3aaa6e38e50b6cc1d12ceecf34a 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Nginx.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/Nginx.pm @@ -6,7 +6,7 @@ use strict; use Mouse; use Lemonldap::NG::Handler::Server::Main; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Handler::PSGI'; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/SecureToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/SecureToken.pm index cf392d0fbad3fcd6d34f234dae28c2f0a63a30ca..55bdd30e2f576f8e642490772968969aaa3c610d 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/SecureToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/SecureToken.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::SecureToken', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ServiceToken.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ServiceToken.pm index 2022bc3fd735950d63d5429327fe17fc4ada90d4..cc2f08c9e791e4760a65fea7cc1057fc2ecce87d 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ServiceToken.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ServiceToken.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::ServiceToken', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ZimbraPreAuth.pm b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ZimbraPreAuth.pm index 49265d8d37730fa2eb002149f52b6e2970a2a974..14b80f6f5c82964aa2f06671759c04dca77f3a2a 100644 --- a/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ZimbraPreAuth.pm +++ b/lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Server/ZimbraPreAuth.pm @@ -8,6 +8,6 @@ use strict; use base 'Lemonldap::NG::Handler::Lib::ZimbraPreAuth', 'Lemonldap::NG::Handler::Server::Main'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; 1; diff --git a/lemonldap-ng-handler/lib/Plack/Middleware/Auth/LemonldapNG.pm b/lemonldap-ng-handler/lib/Plack/Middleware/Auth/LemonldapNG.pm index a2834422beb24fc169a521835c5c8f646a6b460c..5ff8edd37b6b4f82f488df6ebeabd19bcd5e7040 100644 --- a/lemonldap-ng-handler/lib/Plack/Middleware/Auth/LemonldapNG.pm +++ b/lemonldap-ng-handler/lib/Plack/Middleware/Auth/LemonldapNG.pm @@ -1,7 +1,7 @@ package Plack::Middleware::Auth::LemonldapNG; our $AUTHORITY = 'cpan:GUIMARD'; -our $VERSION = '2.0'; +our $VERSION = '2.1.0'; our $llclass = 'Lemonldap::NG::Handler::Server'; use strict; diff --git a/lemonldap-ng-manager/META.yml b/lemonldap-ng-manager/META.yml index 9703615502e90a1f8a593b28935a246ec6a8be93..7b41c6567b67b1a0eee414fedcbf3b8b0249ee53 100644 --- a/lemonldap-ng-manager/META.yml +++ b/lemonldap-ng-manager/META.yml @@ -25,8 +25,8 @@ requires: Convert::PEM: '0' Crypt::OpenSSL::RSA: '0' LWP::UserAgent: '0' - Lemonldap::NG::Common: v2.0.2 - Lemonldap::NG::Handler: v2.0.2 + Lemonldap::NG::Common: v2.1.0 + Lemonldap::NG::Handler: v2.1.0 resources: MailingList: mailto:lemonldap-ng-dev@ow2.org X_twitter: https://twitter.com/lemonldapng diff --git a/lemonldap-ng-manager/Makefile.PL b/lemonldap-ng-manager/Makefile.PL index bbc5fa95fc685e828664273fcb302f95b9b3b91a..0a8bbd5cf4492b4ed3d909d79649a4f9973b832a 100644 --- a/lemonldap-ng-manager/Makefile.PL +++ b/lemonldap-ng-manager/Makefile.PL @@ -35,8 +35,8 @@ WriteMakefile( PREREQ_PM => { 'Convert::PEM' => 0, 'Crypt::OpenSSL::RSA' => 0, - 'Lemonldap::NG::Common' => '2.0.2', - 'Lemonldap::NG::Handler' => '2.0.2', + 'Lemonldap::NG::Common' => '2.1.0', + 'Lemonldap::NG::Handler' => '2.1.0', 'LWP::UserAgent' => 0, }, # e.g., Module::Name => 1.1 ( diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm index ec1faacdd10372651f7bb5667d27047d7b6c4c45..5c6665bee59c7c9bce59910a92bb03c3b149025c 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm @@ -17,7 +17,7 @@ use JSON; use Lemonldap::NG::Common::Conf::Constants; use Lemonldap::NG::Common::PSGI::Constants; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Conf::AccessLib', 'Lemonldap::NG::Handler::PSGI::Router'; diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/2ndFA.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/2ndFA.pm index 3f8ea9164d8ee16655a76743d6f41e7c9b1b3fd1..d0c62dcf8d2f215c6c145696c4a2dbcdf59af34c 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/2ndFA.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/2ndFA.pm @@ -16,7 +16,7 @@ use feature 'state'; extends 'Lemonldap::NG::Common::Conf::AccessLib', 'Lemonldap::NG::Common::Session::REST'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; ############################# # I. INITIALIZATION METHODS # diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm index be49f298587c767bed434d58ddbc0ffb8cd0df43..6ca11b64ab90ef8103b8b27ca29b5b742140aed4 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Attributes.pm @@ -1,7 +1,7 @@ # This file is generated by Lemonldap::NG::Manager::Build. Don't modify it by hand package Lemonldap::NG::Manager::Attributes; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; sub types { return { diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm index aa9df246739e4b88dc02196996b5835907693b8d..66615a72608a179ebf09e72e2aaf1a16c4c05669 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Attributes.pm @@ -6,7 +6,7 @@ package Lemonldap::NG::Manager::Build::Attributes; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; use strict; use Regexp::Common qw/URI/; diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/CTrees.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/CTrees.pm index 8245a91a7c6e9dd5dbfd0f035d27410ff5de4c2e..335c5398e860b8c7db2be25ccad9c2d3c4369993 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/CTrees.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/CTrees.pm @@ -14,7 +14,7 @@ package Lemonldap::NG::Manager::Build::CTrees; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub cTrees { return { diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm index 165a574a47efdb3f65c1f13543eed6f4344be14c..e4daf332ff9084e7106b95625f61cc1798d1e96c 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Build/Tree.pm @@ -17,7 +17,7 @@ package Lemonldap::NG::Manager::Build::Tree; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # TODO: Missing: # * activeTimer diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm index 45173a928e19006e0f7b3c15d9ee45b8f02f7046..ac934a050f89241686fb5dd006b2437b86314d04 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli.pm @@ -6,7 +6,7 @@ use Mouse; use Data::Dumper; use Lemonldap::NG::Common::Conf::ReConstants; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; $Data::Dumper::Useperl = 1; extends('Lemonldap::NG::Manager::Cli::Lib'); diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli/Lib.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli/Lib.pm index d0436e881709651411505aceb75c2379a358ec10..44152c8ee724728cfc9c8d90f5b8c43702ebfd33 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli/Lib.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Cli/Lib.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Manager::Cli::Lib; use Mouse; use Lemonldap::NG::Manager; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::PSGI::Cli::Lib'; diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf.pm index dd9a3b0f808a3cfb72614a300fa243c95d5b61bd..5d9d4863d3420a6d373936408f8f2f9540fb648d 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf.pm @@ -19,7 +19,7 @@ use feature 'state'; extends 'Lemonldap::NG::Common::Conf::RESTServer'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; ############################# # I. INITIALIZATION METHODS # diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Diff.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Diff.pm index 67b153a1358fed039608df69759561b75e52e743..d2bc0df49611286b593f8ab22d4c8526bfc9d10d 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Diff.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Diff.pm @@ -5,7 +5,7 @@ use Mouse; use Lemonldap::NG::Manager::Conf::Parser; use Lemonldap::NG::Common::Conf::Constants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; *defaultValue = \&Lemonldap::NG::Manager::Conf::Parser::defaultValue; diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm index 371137409db6ea49dbc0f81ae5321e162de9008d..b26799bb07e29eee63aaf5856f578fbd37d514e3 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Parser.pm @@ -26,7 +26,7 @@ use JSON 'to_json'; use Lemonldap::NG::Common::Conf::ReConstants; use Lemonldap::NG::Manager::Attributes; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Conf::Compact'; diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Tests.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Tests.pm index 05970827a8114344d56065c99e8b67d341fc59dc..0aa1423d7dd4ede50c659bb9f02506f71091782f 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Tests.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Tests.pm @@ -4,7 +4,7 @@ use utf8; use Lemonldap::NG::Common::Regexp; use Lemonldap::NG::Handler::Main; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; ## @method hashref tests(hashref conf) # Return a hash ref where keys are the names of the tests and values diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Zero.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Zero.pm index 540f51255fcc36b67c70949ae30e522d21a1b06b..a3f8fab5f533898f329c52e229aaea7b3627ab6f 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Zero.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Conf/Zero.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Manager::Conf::Zero; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; sub zeroConf { my ( $domain, $sessionDir, $persistentSessionDir, $notificationDir ) = @_; diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm index 2b030ce84466b572ebbccefbf881e6b2ab88b58e..459e1f3c98a1f7746d09528ab3aaa83ffc9ef5aa 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Notifications.pm @@ -15,7 +15,7 @@ use feature 'state'; extends 'Lemonldap::NG::Common::Conf::AccessLib'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has notifAccess => ( is => 'rw' ); diff --git a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm index dc6ffc4cb1bd35e4a85ab4c369409f2e321d02ad..330027f3d26ab8889e52d6435a4093d3a4d23706 100644 --- a/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm +++ b/lemonldap-ng-manager/lib/Lemonldap/NG/Manager/Sessions.pm @@ -17,7 +17,7 @@ use feature 'state'; extends 'Lemonldap::NG::Common::Conf::AccessLib', 'Lemonldap::NG::Common::Session::REST'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; ############################# # I. INITIALIZATION METHODS # diff --git a/lemonldap-ng-manager/site/htdocs/static/languages/ar.json b/lemonldap-ng-manager/site/htdocs/static/languages/ar.json index 116e6466859a879a339a4acf9d45177389635330..a13355374b5c170585fa11bd401d71d96da28558 100644 --- a/lemonldap-ng-manager/site/htdocs/static/languages/ar.json +++ b/lemonldap-ng-manager/site/htdocs/static/languages/ar.json @@ -124,7 +124,7 @@ "casSrv":"خادم كاس", "casSrvMetaDataExportedVars":"السمات المصدرة", "casSrvMetaDataOptions":"الخيارات", -"casSrvMetaDataOptionsDisplay":"عرض", +"casSrvMetaDataOptionsDisplay":"Display", "casSrvMetaDataOptionsDisplayName":"الاسم المطلوب عرضه", "casSrvMetaDataOptionsGateway":"بوابة إثبات الهوية", "casSrvMetaDataOptionsIcon":"مسارالأيقونة", diff --git a/lemonldap-ng-manager/site/htdocs/static/languages/vi.json b/lemonldap-ng-manager/site/htdocs/static/languages/vi.json index d2c431f5820d708bf68061e2d1156d4a8c68b2cf..0a14c7ac0f162dd893fb3cfbc1a8317c83e69d13 100644 --- a/lemonldap-ng-manager/site/htdocs/static/languages/vi.json +++ b/lemonldap-ng-manager/site/htdocs/static/languages/vi.json @@ -124,7 +124,7 @@ "casSrv":"CAS Server", "casSrvMetaDataExportedVars":"Thuộc tính xuất", "casSrvMetaDataOptions":"Tùy chọn", -"casSrvMetaDataOptionsDisplay":"Hiển thị", +"casSrvMetaDataOptionsDisplay":"Display", "casSrvMetaDataOptionsDisplayName":"Tên để hiển thị", "casSrvMetaDataOptionsGateway":"Xác thực Gateway", "casSrvMetaDataOptionsIcon":"Đường dẫn Icon", diff --git a/lemonldap-ng-portal/META.yml b/lemonldap-ng-portal/META.yml index 0a3b358b75729bb15d59e8c5cbf7f16b9f6dfe1f..fc302cec3780ea7b5653f25e0a314f0ee0c077c2 100644 --- a/lemonldap-ng-portal/META.yml +++ b/lemonldap-ng-portal/META.yml @@ -48,7 +48,7 @@ recommends: Web::ID: '0' requires: Clone: '0' - Lemonldap::NG::Handler: v2.0.2 + Lemonldap::NG::Handler: v2.1.0 Regexp::Assemble: '0' resources: MailingList: mailto:lemonldap-ng-dev@ow2.org diff --git a/lemonldap-ng-portal/Makefile.PL b/lemonldap-ng-portal/Makefile.PL index 4e546f375700f941486ce50deb1edb9e707a323d..660f2b3ef258697f10a55305720e699555840d09 100644 --- a/lemonldap-ng-portal/Makefile.PL +++ b/lemonldap-ng-portal/Makefile.PL @@ -59,7 +59,7 @@ WriteMakefile( }, PREREQ_PM => { 'Clone' => 0, - 'Lemonldap::NG::Handler' => '2.0.2', + 'Lemonldap::NG::Handler' => '2.1.0', 'Regexp::Assemble' => 0, }, ( diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm index 8d8a349a2feed92b37559efd4c11f03bb605e37d..4bb525def74e4dfa683eb701ed9b3903468126ae 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm @@ -1,7 +1,7 @@ # Alias for Lemonldap::NG::Portal::Main package Lemonldap::NG::Portal; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; use Lemonldap::NG::Portal::Main; use base 'Lemonldap::NG::Portal::Main'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Engines/Default.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Engines/Default.pm index 840baf443d96461cd34436bfeed998b1e4c70da7..40d5dfcecfad6a838c74e481c9d6e7f22a55656f 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Engines/Default.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Engines/Default.pm @@ -20,7 +20,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_TOKENEXPIRED ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Ext2F.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Ext2F.pm index 3dac32de5544845f74937954e956cf64bc6a8c73..6282f52159953241f473309ba0b2de875ad4f5cb 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Ext2F.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Ext2F.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Mail2F.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Mail2F.pm index 60181531f04f162500cb076c5b740e7eda2de85f..550d485612eda08974f702aa98f5fb4b7fde4eb4 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Mail2F.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Mail2F.pm @@ -12,7 +12,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_MUSTHAVEMAIL ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor', 'Lemonldap::NG::Portal::Lib::SMTP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/REST.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/REST.pm index 23aaf34992525000387f5572e09f6f0dc39dc5ad..4bb04addd66bba67a587862f0218e74a42d39bcb 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/REST.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/REST.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor', 'Lemonldap::NG::Portal::Lib::REST'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/TOTP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/TOTP.pm index cd334a745791e95e732b29bcb3c2473007d605ae..088be5b3cbf691e073695a6c656fa8da683e415f 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/TOTP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/TOTP.pm @@ -5,7 +5,7 @@ use strict; use Mouse; use JSON qw(from_json to_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Common::TOTP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/U2F.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/U2F.pm index 6afe08b9f9800c04be219e8681cf145f769cda34..adab2c892aba3d04b65442b5c2b192769eb83914 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/U2F.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/U2F.pm @@ -5,7 +5,7 @@ use strict; use Mouse; use JSON qw(from_json to_json); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Portal::Lib::U2F'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/Yubikey.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/Yubikey.pm index 83957fab8f9176f662be1dab9c9c25a080acfd69..6222ee02f208c119a5b011c411405ee28ef7541c 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/Yubikey.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Register/Yubikey.pm @@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_ERROR ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/TOTP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/TOTP.pm index 599652a88fe4328ad47699709a1775627ba3faba..ffcb4fb0377fea1c3b4c146e2b4f381a8f455166 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/TOTP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/TOTP.pm @@ -15,7 +15,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor', 'Lemonldap::NG::Common::TOTP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/U2F.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/U2F.pm index 09393a9cfee9ee2188fbe6110980155911c6c7c5..b94b3f37f60612ba4932d596bf14a4da6a3ef7de 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/U2F.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/U2F.pm @@ -16,7 +16,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_U2FFAILED ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor', 'Lemonldap::NG::Portal::Lib::U2F'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/UTOTP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/UTOTP.pm index c49679713f313bb7e1d7c97eda8a168f7ffe9f25..18ad7240084bc416edb27ebf72d3067c7f7ed47a 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/UTOTP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/UTOTP.pm @@ -6,7 +6,7 @@ use JSON qw(from_json to_json); use Lemonldap::NG::Portal::Main::Constants qw( ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Yubikey.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Yubikey.pm index 355bcde97c69e8aad7984dad763c9a76133da790..acf0e894502a7adfec0619e699a2145dabb80460 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Yubikey.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/2F/Yubikey.pm @@ -15,7 +15,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::SecondFactor'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/AD.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/AD.pm index 2a2ae8fbb8c24cd7faf1e292a03163a2c58169d5..5fae909ef683af6e25099603968f771226861b10 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/AD.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/AD.pm @@ -8,7 +8,7 @@ use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_PP_PASSWORD_EXPIRED PE_PP_CHANGE_AFTER_RESET); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Auth::LDAP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Apache.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Apache.pm index aed01cf2b8fc4da2ab303e04091eec64027f3211..e2c2cd3c2a4cee1a55f6785e9a5f2febc2c37683 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Apache.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Apache.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_ERROR PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/CAS.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/CAS.pm index 2847f776774324c40d7f0d9fac151b6b5ac7dd3b..0b8df83c3dc2aaec0e0a6ede071afff6f9fb1a24 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/CAS.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/CAS.pm @@ -12,7 +12,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth', 'Lemonldap::NG::Portal::Lib::CAS'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Choice.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Choice.pm index dca5179519836e58d8d722bc59db57b61bebc7e8..e8ce9475551601e84c830f6d048b4c6fed69e678 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Choice.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Choice.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_FIRSTACCESS PE_ERROR); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Lib::Choice'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm index cb294c8f86b9e2c2356eac45670a88eb88253ff5..09cef0327e93e3f295abd8dcc3a973811bfa99ba 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Combination.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Common::Combination::Parser; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR); use Scalar::Util 'weaken'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # TODO: See Lib::Wrapper extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/DBI.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/DBI.pm index f0bb3897d24287a07e3b65fc914134c43edceb0c..8efb057579eecda6ea7e40d4011af1d8277b920b 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/DBI.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/DBI.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_BADCREDENTIALS); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Auth::_WebForm', 'Lemonldap::NG::Portal::Lib::DBI'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Demo.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Demo.pm index 2487f3f7d3b54ee479bd1283f4bf623b6fa7c0e3..dd7ead83586abd9a6a64592d954a2130ae025c85 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Demo.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Demo.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_BADCREDENTIALS); extends qw(Lemonldap::NG::Portal::Auth::_WebForm); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Facebook.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Facebook.pm index 0e5213024cab1b90a195b97bf9974e1f43ae82f8..5ece7123c49b554b4fde747e8b2ea18be78dc33a 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Facebook.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Facebook.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Common::FormEncode; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR PE_BADCREDENTIALS); use utf8; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/GPG.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/GPG.pm index 1935955b305a0e96cea45b967a70a7e9ffb880ae..98814df77563c3974fc1c44ffb540e1aa6018451 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/GPG.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/GPG.pm @@ -12,7 +12,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Auth::_WebForm'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Kerberos.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Kerberos.pm index 4a34310ffd0b0fbcb7754d8881aca76067886ed9..842e41120a3bbcb971aff74458fa79330f9929dd 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Kerberos.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Kerberos.pm @@ -12,7 +12,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LDAP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LDAP.pm index 484a3d09f0b9b256b5f2264a71069d08569a7e04..7f1fe5d6c3dd93413c44f0efee68a7fe2cb3be07 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LDAP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LDAP.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_PP_PASSWORD_EXPIRED ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # Inheritance: UserDB::LDAP provides all needed ldap functions extends diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LinkedIn.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LinkedIn.pm index c2c5be79eacb259d017a4da0741751c5f6431582..8dd8a2f662b75a51c59d94cd6cc5e60f2e1be62a 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LinkedIn.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LinkedIn.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Common::FormEncode; use Lemonldap::NG::Common::UserAgent; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR PE_REDIRECT); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Null.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Null.pm index 6928d7afa9349dcd7afa9aadc6db577f090c707a..433cc0d535b462cef6e7d7dc5d0fa82b3e124ebf 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Null.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Null.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenID.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenID.pm index 9a46c45684a30e9f33c4374dc04eebfeb27c9db6..a43880f6162aa94db7c69cf3c2a647134a8bddf9 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenID.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenID.pm @@ -15,7 +15,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_REDIRECT ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenIDConnect.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenIDConnect.pm index 6c63421986094f021e1b75d28ed065acb73067ec..8d4616e3bb6275926041db5221da020dfc8e3d04 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenIDConnect.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/OpenIDConnect.pm @@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth', 'Lemonldap::NG::Portal::Lib::OpenIDConnect'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/PAM.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/PAM.pm index cacda64246e1ca95b95e527e6a9f5ba9121f452a..7489c8927cc00d3622c0456538e51337730bd197 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/PAM.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/PAM.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends qw(Lemonldap::NG::Portal::Auth::_WebForm); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Proxy.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Proxy.pm index 29bfe81137da7f33a898bf4fa34b0ff48319f577..288850310f5a0bd34548a5e7f93d90d8ac7014ed 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Proxy.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Proxy.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Auth::_WebForm'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/REST.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/REST.pm index 6f0f434cbc1bce1aa77d935d8014d6de02c2ac9c..d4fae654d1ccc4854a615892e5ce81dffa7136f7 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/REST.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/REST.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Auth::_WebForm', 'Lemonldap::NG::Portal::Lib::REST'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Radius.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Radius.pm index 0890bc147762468aecd520e4f366893ef2c1e691..9d669a69dc51cd98dca0d890bb7e6cd2224ee218 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Radius.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Radius.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends qw(Lemonldap::NG::Portal::Auth::_WebForm); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Remote.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Remote.pm index d5b15502a49844c65a50b242b7890f0400d1afcc..06ef058b993a11fde325c534e588d7d5d12297e7 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Remote.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Remote.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth', 'Lemonldap::NG::Portal::Lib::Remote'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm index 38ab9dbbb26d99d61488ce61e855ce0df011d9f6..5670ba60ea6a31f6164695c1449bf80d096cb1e5 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm @@ -24,7 +24,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth', 'Lemonldap::NG::Portal::Lib::SAML'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SSL.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SSL.pm index 6b20a6aae68a4d94773dbaef939b30f81a1e8b87..420dde8b5653b267c229855a2d2a4021343053bc 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SSL.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SSL.pm @@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Slave.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Slave.pm index 026d3f97739ec9a9e3a3da5eacc051322ab735a8..f93f4058490a6cdd50a89396b06ec443451c0d59 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Slave.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Slave.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_FORBIDDENIP PE_USERNOTFOUND); use Lemonldap::NG::Portal::Lib::Slave; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Twitter.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Twitter.pm index 91addc06db379292781a04cad955e9e4d8c187f9..905f653bf118a176428d1422ba1960ac1be58627 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Twitter.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/Twitter.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR); extends 'Lemonldap::NG::Portal::Main::Auth'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/WebID.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/WebID.pm index f10380f0a59faa42d65ecca782435972e819c12d..f45b2b6b8134ee10dd34c84664eb7319ad822715 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/WebID.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/WebID.pm @@ -12,7 +12,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm index b73ffb1a7b7ce93be1d72c35f3fb905cdbe774a7..fd0ce0aadc54a789863a230e1eb3f40351da88c9 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/_WebForm.pm @@ -18,7 +18,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_TOKENEXPIRED ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDC.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDC.pm index d21f118eb7250b3efb710f5cceb7bba12972fcdf..a671a1e1a416b9037fbc7a47f9000cdc75773899 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDC.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/CDC.pm @@ -10,7 +10,7 @@ use Mouse; use MIME::Base64; use Lemonldap::NG::Common::FormEncode; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::PSGI'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm index 98d4927ef9d7f42d22206369863d819e42f2a9bc..3e9146a1661065ed8af10241b78799d0a4ed5757 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/CAS.pm @@ -13,7 +13,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Issuer', 'Lemonldap::NG::Portal::Lib::CAS'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm index 95ce996eb9d50c24ce0ee1ac8c77fa5852bea722..a06230b89b2118faec72d1561aa269c7ac5b6324 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/Get.pm @@ -6,7 +6,7 @@ use URI::Escape; use Lemonldap::NG::Common::FormEncode; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_BADURL PE_GET_SERVICE_NOT_ALLOWED); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Issuer'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm index 58850db2a670728108b211c8af560fe13fc880de..d7f60569e18b9858294ccb6f810e4fff3a9c1982 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenID.pm @@ -16,7 +16,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OID_SERVICE_NOT_ALLOWED ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Issuer'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm index c9f741936e31b52cc00091757a5728b7d04d5154..31b35614b21afde36c5015ffc71177549228aca2 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/OpenIDConnect.pm @@ -15,7 +15,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OIDC_SERVICE_NOT_ALLOWED ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Issuer', 'Lemonldap::NG::Portal::Lib::OpenIDConnect', diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm index 7461ca787318ef37b778140073b2d9503e8a6ea1..b85cb5871b857d55ef0a3a9b76a4cba6dce544c1 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Issuer/SAML.pm @@ -16,7 +16,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_UNAUTHORIZEDPARTNER ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Issuer', 'Lemonldap::NG::Portal::Lib::SAML'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/CAS.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/CAS.pm index c3eae90009f5aab2374fceb6b6ab103760767f74..8a73218587b8ad6471de051bd5afc48430e68a84 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/CAS.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/CAS.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Common::FormEncode; use XML::Simple; use Lemonldap::NG::Common::UserAgent; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Captcha.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Captcha.pm index c4ee4ee1be59e9a3d47b24f316ea0ba29563240a..acea746dce8c93c6c011a8a4cfd635561863b6e1 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Captcha.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Captcha.pm @@ -5,7 +5,7 @@ use GD::SecurityImage use_magick => 1; use Mouse; use MIME::Base64; -our $VERSION = '2.0.1'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Choice.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Choice.pm index 34fea5d31b936f2168d35fa46eb50452964b0445..432b0edc78e4daaee3afa1e3a0ddc3510f0a753b 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Choice.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Choice.pm @@ -7,7 +7,7 @@ use Safe; extends 'Lemonldap::NG::Portal::Lib::Wrapper'; with 'Lemonldap::NG::Portal::Lib::OverConf'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has modules => ( is => 'rw', default => sub { {} } ); diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/DBI.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/DBI.pm index af2bb0bea57353726006f12439227649d172104b..27376e18b84388c059686d3eac8b19481544bdb2 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/DBI.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/DBI.pm @@ -12,7 +12,7 @@ use Mouse; extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/LDAP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/LDAP.pm index a5314e1578fc466c3d3d28f8e85d3678ce81d107..994d6c7397e66fcb1ab4fd3b80bca9b39cac444a 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/LDAP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/LDAP.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::Lib::Net::LDAP; extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Net/LDAP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Net/LDAP.pm index d47551146cc8d8892e4dbd22cb1ecbc28e933ee5..202a50458c49c3e28264ae7edeb9bfe715a7bb87 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Net/LDAP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Net/LDAP.pm @@ -12,7 +12,7 @@ use Unicode::String qw(utf8); use Scalar::Util 'weaken'; use utf8; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; our $ppLoaded = 0; BEGIN { diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/JSON.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/JSON.pm index a5c4c69d8c8678897ba295cc4e293cc7669866ad..cb2a39c0adf6ecf8e1b413209385752cc42c96c2 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/JSON.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/JSON.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use JSON qw(from_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; no warnings 'redefine'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/XML.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/XML.pm index 1f5f355b70a1215a917d397b4c44047ef23ac17c..5c4ccb7cdede61167f040b39212cfdc579dd8151 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/XML.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Notifications/XML.pm @@ -5,7 +5,7 @@ use Mouse; use XML::LibXML; use XML::LibXSLT; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # Lemonldap::NG::Portal::Main::Plugin provides addAuthRoute() and # addUnauthRoute() methods in addition of Lemonldap::NG::Common::Module. diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OneTimeToken.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OneTimeToken.pm index bbf2ce7ba15879be5dc0930f55633cad1da07ca9..250c537cd51af8e2159bb8cd7b716ec29cbd4fdb 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OneTimeToken.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OneTimeToken.pm @@ -5,7 +5,7 @@ use Mouse; use JSON qw(from_json to_json); use Crypt::URandom; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/SREG.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/SREG.pm index 82ef247fec4bbd4f1e2be1fc519edaf856c9c1d3..6a3a2e26bf4d08ea1170588ff2e52eab619b3faf 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/SREG.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/SREG.pm @@ -9,7 +9,7 @@ package Lemonldap::NG::Portal::Lib::OpenID::SREG; use strict; use Lemonldap::NG::Common::Regexp; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; ## @method protected hash sregHook(hash prm) # Hook called to add SREG parameters to the OpenID response diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/Server.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/Server.pm index cfa6fe278d85bc0317f72879f0121f4bdb2d7cfd..24e8f07c519d9ad75db0336cf48620e68cdd345b 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/Server.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenID/Server.pm @@ -13,7 +13,7 @@ use Lemonldap::NG::Common::Regexp; use constant DEBUG => 0; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; use constant OPENID2_NS => 'http://specs.openid.net/auth/2.0'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenIDConnect.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenIDConnect.pm index 181a1b0c6bf2cdd3f86b06b7a00a0cd726cfc4f4..c911d8dfc3cc286bef9e989aff3b626e5df006ba 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenIDConnect.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OpenIDConnect.pm @@ -19,7 +19,7 @@ use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_REDIRECT); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # OpenID Connect standard claims use constant PROFILE => [ diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OtherSessions.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OtherSessions.pm index be14a2fd02931b5ff463b3f2ff67d15194b0f59d..eb2500775d8c77949ca9e20f9020a96c213f8998 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OtherSessions.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/OtherSessions.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::Lib::OtherSessions; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has module => ( is => 'rw', default => 'Lemonldap::NG::Common::Apache::Session' ); diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/REST.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/REST.pm index 23f5807ad6c10ead880452ed7fe3e0ff5b13ca7f..6f7362d82d8f02ec50e23f99f8fa3cf952f272dd 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/REST.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/REST.pm @@ -5,7 +5,7 @@ use Mouse; use Lemonldap::NG::Common::UserAgent; use JSON qw(from_json to_json); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has ua => ( is => 'rw', diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/RESTProxy.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/RESTProxy.pm index fcf57efb2063e806156359d52e36c92a6b107a7c..bc5a65e8f655ddfce1edf546eb67282ff2662c66 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/RESTProxy.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/RESTProxy.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Common::UserAgent; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR PE_BADCREDENTIALS); use Lemonldap::NG::Common::FormEncode; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has ua => ( is => 'rw' ); diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Remote.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Remote.pm index d56d6528b724cc04dc46ff09c588389cf972a516..9ee645f9ee1dd37bd572c192cbcafebb836304fb 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Remote.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Remote.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Common::Session; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR PE_REDIRECT); use MIME::Base64; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SAML.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SAML.pm index 22f437595ad71554d1f0c7eff1ad19e46c2379f1..92bfad5c6e7bc50fe0e5dd2a60da9f9074cc67f6 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SAML.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SAML.pm @@ -20,7 +20,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SAML_SLO_ERROR ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SMTP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SMTP.pm index e8c8c9eadf514213c0c6e6feaba5d03481c5016d..1d742dfdd732195c51fc28721580a90465692afc 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SMTP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SMTP.pm @@ -15,7 +15,7 @@ use Email::Sender::Transport::SMTP qw(); use MIME::Base64; use Encode; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; our $transport; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SOAPProxy.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SOAPProxy.pm index ac5c3a1b30ed8e7e3292ee69f894a9172059ba01..ddd1f6b7a83cb88b734bcfafe56309c43027a1bd 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SOAPProxy.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/SOAPProxy.pm @@ -5,7 +5,7 @@ use Mouse; use SOAP::Lite; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR PE_BADCREDENTIALS); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Slave.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Slave.pm index a6423f4123d82f5c143d43db83fa7493faac61e3..afb3b1249d655fe8834c94cc7e57ea6b61f86488 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Slave.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Slave.pm @@ -10,7 +10,7 @@ use base qw(Exporter); use strict; our @EXPORT = qw(checkIP checkHeader); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # RUNNING METHODS diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/U2F.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/U2F.pm index aa25e6c4e71ddc615e131628a1a321e32061a368..04ffc2aa40475942935ceb2ba47995cd85b300db 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/U2F.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/U2F.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use MIME::Base64 qw(encode_base64 decode_base64); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has origin => ( is => 'rw', ); diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Wrapper.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Wrapper.pm index 0bf29751b226a79a7dc6d1ee47238245f7610f9e..759ae0312c0a5b2debb2f974a7852eec018ceab2 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Wrapper.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/Wrapper.pm @@ -8,7 +8,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Auth'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main.pm index 7a01f93c35b057ff18828ff07f1b7c910b57d732..1f4ecccb9358834d14f4baa1135eeef6fe0f454b 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main.pm @@ -13,7 +13,7 @@ use Lemonldap::NG::Portal::Main::Process; use Lemonldap::NG::Portal::Main::Display; use Lemonldap::NG::Portal::Main::Menu; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Handler::PSGI::Try'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Auth.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Auth.pm index 6088175cc659527729073f375e54dd04b563506f..94f024d224aba35a82a929889b6309f0c4186f06 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Auth.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Auth.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::Main::Auth; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Constants.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Constants.pm index c4feef030dbfae43fed1925bfa8b9329fe2d7659..6981372c58eb07d77b676fa5aa39b52b6ae21045 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Constants.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Constants.pm @@ -3,7 +3,7 @@ package Lemonldap::NG::Portal::Main::Constants; use strict; use Exporter 'import'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; use constant HANDLER => 'Lemonldap::NG::Handler::PSGI::Main'; use constant { diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Display.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Display.pm index 9a5dfc4a3be3b0e6a3e02ef7416334c6b24c8da8..83e3ed982af953e8dac72c3c082aba1d9a4e953f 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Display.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Display.pm @@ -2,7 +2,7 @@ # Display functions for LemonLDAP::NG Portal package Lemonldap::NG::Portal::Main::Display; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Portal::Main; use strict; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Init.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Init.pm index 427112d39064432539de5b8d10b249178576bd65..97130dd3a68d74a5493a59b6de352ffb51c9325c 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Init.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Init.pm @@ -8,7 +8,7 @@ # of lemonldap-ng.ini) and underlying handler configuration package Lemonldap::NG::Portal::Main::Init; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Portal::Main; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Issuer.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Issuer.pm index 92f33e712d92926dc1433e1da9bbf4dd8c7d306c..ee0bbb63b3341da0dbbe0b89e20f2682b8c93fea 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Issuer.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Issuer.pm @@ -20,7 +20,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Main::Plugin'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Menu.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Menu.pm index 6bf0b08ce5c613537aa6a03410248dd87b84387a..c7861a2af517d1dcfb429bf5f190868ae528ef40 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Menu.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Menu.pm @@ -6,7 +6,7 @@ use strict; use Mouse; use Clone 'clone'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugin.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugin.pm index f1d918a2680b79b206ab70abb12645a616f60ac7..0a9d34c2f3678355df76cbd3787210074010e945 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugin.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugin.pm @@ -6,7 +6,7 @@ use strict; use Mouse; use HTML::Template; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugins.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugins.pm index 802d2601c3ce9390c13473901208c06f633d91a5..65739f65e27b3165d4752e146ab742d5f28efef0 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugins.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Plugins.pm @@ -2,7 +2,7 @@ # into "plugins" list in lemonldap-ng.ini, section "portal" package Lemonldap::NG::Portal::Main::Plugins; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Portal::Main; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Process.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Process.pm index 2446599ebb2753692272aded972e47ce8d400630..57b2312296e59c71423f86d45e019d6cb309b5ed 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Process.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Process.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Portal::Main::Process; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Portal::Main; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Request.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Request.pm index 518a87b3ea934a02ab0d7993a2708630bcfba4d9..2926f17f4b675d8c3b78d8d8363d94adcdb8f6c8 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Request.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Request.pm @@ -7,7 +7,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants ':all'; -our $VERSION = '2.0.1'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::PSGI::Request'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm index 936f134aeb409e6529333d454aa2a182c0302e9e..82f7e646f5c6c8befe52e95209406126476504e6 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/Run.pm @@ -9,7 +9,7 @@ # package Lemonldap::NG::Portal::Main::Run; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; package Lemonldap::NG::Portal::Main; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/SecondFactor.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/SecondFactor.pm index 946435d6a62d33b05a1a3718ea7e7d5b3e67fad9..bf02b6d564787917c26a319ac9e333299a040227 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/SecondFactor.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Main/SecondFactor.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_BADCREDENTIALS ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/AD.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/AD.pm index 307a68f382eda567694f6425ec5bbba7193b7628..10fdf3c79f05d4b84dda07d9d349124dc1d24460 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/AD.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/AD.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants extends 'Lemonldap::NG::Portal::Lib::LDAP', 'Lemonldap::NG::Portal::Password::Base'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; sub init { my ($self) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Base.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Base.pm index 7de056ee995f95deee90d03c4f2c8f3558a44399..8c1b933bb1b637b3c2b112a2ee34b7b584950432 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Base.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Base.pm @@ -13,7 +13,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Main::Plugin'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Choice.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Choice.pm index 5bc833acca3ebdef8a9c7c4a191abeddad5f6ad3..56d8e885ccf0db80391dfaff24a62881a83ec93d 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Choice.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Choice.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_ERROR); extends 'Lemonldap::NG::Portal::Password::Base', 'Lemonldap::NG::Portal::Lib::Choice'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { my ($self) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/DBI.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/DBI.pm index 91759f0042eb595c6bf1048e0fea57f20ccd3470..cd9aa552a793ac0d01862c3cb0d963630d85e841 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/DBI.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/DBI.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_PASSWORD_OK PE_ERROR); extends 'Lemonldap::NG::Portal::Password::Base', 'Lemonldap::NG::Portal::Lib::DBI'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { $_[0]->Lemonldap::NG::Portal::Password::Base::init diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Demo.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Demo.pm index 975fb99c2c96e48918b07c1e95f1f9bbd31244b0..d7a6ae69ce0cdbf78eda4e9f359e760079ea3edb 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Demo.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Demo.pm @@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Password::Base'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { my ($self) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/LDAP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/LDAP.pm index d34c978deab8e899d19980b86a89055f9b9c4066..fde6208ea9194c171464504e8200338cf6e51177 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/LDAP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/LDAP.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants extends 'Lemonldap::NG::Portal::Lib::LDAP', 'Lemonldap::NG::Portal::Password::Base'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; sub init { my ($self) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Null.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Null.pm index e9ad31bd51b75e869bc442333d873a8579c9cf15..b6ac69f3a531436d0903c41c09160906cfd6bb90 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Null.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/Null.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Password::Base'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { 1 } diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/REST.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/REST.pm index a27f89eb32c3e82327e0027f2301815656233e3e..5fac5de31309998db051bf229425331855c2830e 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/REST.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Password/REST.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Password::Base', 'Lemonldap::NG::Portal::Lib::REST'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { my ($self) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/AutoSignin.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/AutoSignin.pm index 71963542d0f0bb82827f916aa1d3f2fe8241f0ce..234f3b4931eae51b9a7a30d23c67630f87c571fc 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/AutoSignin.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/AutoSignin.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/BruteForceProtection.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/BruteForceProtection.pm index 0098b9e3b16d278e6ff47473e3cc81c8844240ea..f1f41cc90a51b456b8f4112c4bead9edfc7e3748 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/BruteForceProtection.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/BruteForceProtection.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_WAIT); -our $VERSION = '2.0.1'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CDA.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CDA.pm index de634fff2a0cc0e72abac7804cf66d11ab939c13..1c17388ab5609df73c9be235f6d3c0bcbca50e83 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CDA.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CDA.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CheckState.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CheckState.pm index 45bb3c9b81854cd68767c3b73714292b7329c4d1..f158e733b7c3d4c658aaf9da54cdf86732315466 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CheckState.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/CheckState.pm @@ -8,7 +8,7 @@ package Lemonldap::NG::Portal::Plugins::CheckState; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/ForceAuthn.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/ForceAuthn.pm index 8c8b3f041151bed083a5e0a1cee9120be9699082..78cda6979bf797a04aefa02c9ebda98af0b4b0ac 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/ForceAuthn.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/ForceAuthn.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_MUSTAUTHN); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/GrantSession.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/GrantSession.pm index 9ab0cad3d8c231a4b7ec172c99beebc35b3c778c..99b1a67d1aa1aaec2ef055fd086bc51c1ec799da 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/GrantSession.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/GrantSession.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_BADCREDENTIALS ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/History.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/History.pm index 293dc7b408c928d00613535143930772c549402f..1fabf457c8ac4324e4d3b5814a0f6897fd7d3bee 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/History.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/History.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_INFO PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Portal::Lib::OtherSessions'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/MailPasswordReset.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/MailPasswordReset.pm index 2ec2f15bfb90d469aff885905024ec07acd92a48..3602025874621f287a5af20fd2f417f4142f23ed 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/MailPasswordReset.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/MailPasswordReset.pm @@ -28,7 +28,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_USERNOTFOUND ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Portal::Lib::SMTP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Notifications.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Notifications.pm index bbf0657cba3cc18379121a72b8f0ae245907c3d5..dd39f7712b3466c91eb76384bea9ca204e320449 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Notifications.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Notifications.pm @@ -19,7 +19,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/PublicPages.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/PublicPages.pm index 045e98637bdbdeda12a69c5b6205d2678cc3b38b..9afe87eb6962e3cfad23f2f5b0f5c453ceee4e73 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/PublicPages.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/PublicPages.pm @@ -5,7 +5,7 @@ use Mouse; extends 'Lemonldap::NG::Portal::Main::Plugin'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { my ($self) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/RESTServer.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/RESTServer.pm index 7d0580cbf82359eb9b65c4144e5b415b7fabb118..f704c4763885ecb1118e696fe99b9fe2916dbee6 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/RESTServer.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/RESTServer.pm @@ -48,7 +48,7 @@ use Mouse; use JSON qw(from_json to_json); use MIME::Base64; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Register.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Register.pm index 929ea53c171ae9759f3142554750c306ef52d810..002a4b6f01803b84a31f9d7ac57a7c70131b303d 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Register.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Register.pm @@ -22,7 +22,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_TOKENEXPIRED ); -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Portal::Lib::SMTP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm index b7c9406f8351d9d1bf9879aac0712f1feb24b35c..e25b1408162e065febdda7f13d5a472a0748cae3 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm @@ -15,7 +15,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_FORMEMPTY); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Common::Conf::AccessLib'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SingleSession.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SingleSession.pm index 71fb401318fb9a920119ccbd1f35d19d43b70782..dcaa0426c46450104dde747bf8799ade05bdb064 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SingleSession.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SingleSession.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin', 'Lemonldap::NG::Portal::Lib::OtherSessions'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Status.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Status.pm index aa12cf6157b879ae592134a73dc88833314c0808..5203d3207e7ea300262feda3493ab4a5f4678256 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Status.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Status.pm @@ -11,7 +11,7 @@ use JSON qw(from_json); use MIME::Base64; use IO::Socket::INET; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/StayConnected.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/StayConnected.pm index 1217221031146e9cb4494d17e4bdc1148eb2154e..edea7617f03432aa489620a2454fdec6c78de4fc 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/StayConnected.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/StayConnected.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Upgrade.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Upgrade.pm index 42b92095956dfd17d66a2c485a11d6949e015587..62f3b8865e0a397029059b9db23ff0c4198c2bfe 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Upgrade.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/Upgrade.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_TOKENEXPIRED ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Main::Plugin'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/AD.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/AD.pm index ebab90c0231162e69aaa2296578097124fc59302..1c8ad0a0da77872f27ef095c3e0dc7c6f2592227 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/AD.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/AD.pm @@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Register::LDAP'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub createUser { my ( $self, $req ) = @_; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/Demo.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/Demo.pm index bd50025f956bdd2d370869acca0276b49720baa0..9b6eb3cd69602ae77e1eddabe49b31db68a752d8 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/Demo.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/Demo.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK); extends 'Lemonldap::NG::Portal::Main::Plugin'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub init { 1; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/LDAP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/LDAP.pm index 1f1b30877d10ef96a0359a869fa1b1ad35ec99c5..1884de0998a6a8baf790e975cb931a243451390b 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/LDAP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Register/LDAP.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Portal::Lib::LDAP'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # RUNNING METHODS diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/AD.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/AD.pm index de30ae84006f8b054c38a162401113409e8e5f10..5a0fef90a9d2fff8ec116b4cf4be1805be1395ba 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/AD.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/AD.pm @@ -4,7 +4,7 @@ package Lemonldap::NG::Portal::UserDB::AD; use strict; use Mouse; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::UserDB::LDAP'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/CAS.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/CAS.pm index bd85d353b3a0883b2d8e74028ac56c658c425111..5a8ea5eb691d5f35379a1d4d34728cd54bda0f04 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/CAS.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/CAS.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Choice.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Choice.pm index 33559058f6fa928a066808a7c9c11f0d5173acd5..5df92928174074f0afcd7b2ffd51cc98fe48f2e4 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Choice.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Choice.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_FIRSTACCESS); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Portal::Lib::Choice'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Combination.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Combination.pm index de5c89a7bd28fe3ca20d835195b1b9b4c93c54bd..906d82343957954b5ccf8cf7846a6deb403713f9 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Combination.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Combination.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Portal::UserDB::Combination; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; sub new { return $_[1]->{p}->{_authentication}; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/DBI.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/DBI.pm index 436e80a21d15dd4be0f64f922bccda828e3ba093..e7baf042b6b2cf576f368f93faa65dcb25ca95ed 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/DBI.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/DBI.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_ERROR PE_BADCREDENTIALS); extends 'Lemonldap::NG::Portal::Lib::DBI'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # PROPERTIES diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Demo.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Demo.pm index 6edc5a6380cbef60cde6d05c26ae5e8d457856cb..c2202f6e91a8dd6aba79be94fe5112067da9d41d 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Demo.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Demo.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_BADCREDENTIALS); extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # Sample accounts from Doctor Who characters our %demoAccounts = ( diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Facebook.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Facebook.pm index 78e9fb85d994c52726831e125e7cdcab4cb8649e..f78e26f9124a01c164e090800b644619727a3216 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Facebook.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Facebook.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(PE_OK PE_MISSINGREQATTR); extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; has vars => ( is => 'rw', diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/LDAP.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/LDAP.pm index 3460173801193684f34b9463b06d73f1ffb55ecd..9db67a0ce0c978f2844d9232102f7ccfd7acbf47 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/LDAP.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/LDAP.pm @@ -8,7 +8,7 @@ use Lemonldap::NG::Portal::Main::Constants extends 'Lemonldap::NG::Portal::Lib::LDAP'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; has ldapGroupAttributeNameSearch => ( is => 'rw', diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Null.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Null.pm index d55bba46e3a4afaca11c4711fe979dd2e1e7565d..b67faf483b5169046aaf1ffc13a77086453cbd64 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Null.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Null.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::Main::Constants; extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenID.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenID.pm index 8f1d1be888098229ab5b49b2a096b4b1c5bc79fc..ed191cc786095489d71f9e3469823caf665a0e7d 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenID.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenID.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module', 'Lemonldap::NG::Portal::Lib::OpenIDConnect'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenIDConnect.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenIDConnect.pm index 14bc0e0fb006286153e277ed297fad4f8293c304..aca71070c78be86c69442058153a6ab6e7cdc050 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenIDConnect.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/OpenIDConnect.pm @@ -7,7 +7,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_OK ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module', 'Lemonldap::NG::Portal::Lib::OpenIDConnect'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Proxy.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Proxy.pm index 8d7e81691ff60c1492ad7e8eeb5e846d078ee555..83e6522045248347aeb01bb3745d42267d89cbf8 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Proxy.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Proxy.pm @@ -6,7 +6,7 @@ use Lemonldap::NG::Portal::Main::Constants 'PE_OK'; extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/REST.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/REST.pm index 918076a80859dcf1be9084aa15ba837e0c14ff0a..8199f640964783c9e6b6455c8806aae22899f8b0 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/REST.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/REST.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Common::Module', 'Lemonldap::NG::Portal::Lib::REST'; -our $VERSION = '2.0.2'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Remote.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Remote.pm index af508e7572d36f057817189e8118bef2c09c991f..016a776b72100865312d7d1737050f1a540d9542 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Remote.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Remote.pm @@ -4,7 +4,7 @@ use strict; use Mouse; use Lemonldap::NG::Portal::Main::Constants qw(PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module', 'Lemonldap::NG::Portal::Lib::Remote'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/SAML.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/SAML.pm index fdfbb1830ab3c296475e7687cf67faae487a5b62..2b72e776817bd2dfcd2d6c2222abafcb97d00913 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/SAML.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/SAML.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SAML_LOAD_SERVICE_ERROR ); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module', 'Lemonldap::NG::Portal::Lib::SAML'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Slave.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Slave.pm index 50beefd448d2eff1d1b3aeb827f268cb7d63b38c..a547b24215930ee4e3f40a62abd285d69bf18b5e 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Slave.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/Slave.pm @@ -10,7 +10,7 @@ use Mouse; use Lemonldap::NG::Portal::Lib::Slave; use Lemonldap::NG::Portal::Main::Constants qw(PE_FORBIDDENIP PE_OK); -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; extends 'Lemonldap::NG::Common::Module'; diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/WebID.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/WebID.pm index 639ed6bf3d8e2e268d1f1f27f68e3c7d91ab6921..ee99f00347c364d72938f6a95c26cd7052e2c50e 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/WebID.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/UserDB/WebID.pm @@ -10,7 +10,7 @@ use Lemonldap::NG::Portal::Main::Constants qw( extends 'Lemonldap::NG::Common::Module'; -our $VERSION = '2.0.0'; +our $VERSION = '2.1.0'; # INITIALIZATION diff --git a/lemonldap-ng-portal/site/htdocs/static/languages/zh.json b/lemonldap-ng-portal/site/htdocs/static/languages/zh.json index 93a8e3172a93e3c73d138c00e0ce7fa18a5cbce9..4448d039cc487997f56008506369e98b5bf95ee2 100644 --- a/lemonldap-ng-portal/site/htdocs/static/languages/zh.json +++ b/lemonldap-ng-portal/site/htdocs/static/languages/zh.json @@ -88,11 +88,11 @@ "PE86":"Your account is locked. You must wait 30s before authenticate again", "PE87":"You must authenticate again to access to Portal", "PE88":"Your account must have an e-mail address in order to use double factor authentication", -"2fRegRequired":"This service requires a double factor authentication. Register a device now, then go back to the portal.", "PE89":"Access non granted on SAML service", "PE90":"Access non granted on OIDC service", "PE91":"Access non granted on OID service", "PE92":"Access non granted on GET service", +"2fRegRequired":"This service requires a double factor authentication. Register a device now, then go back to the portal.", "accept":"Accept 方法", "accessDenied":"您无权访问此应用", "accountCreated":"您的账号已创建,临时密码已发送至您的邮箱", diff --git a/scripts/changelibversion b/scripts/changelibversion index a1a51bc74e990e4f589eb02cbcff15c5fe2f045a..ce26ec4a4c4ef381b076187bb68d11eaf44bc67d 100755 --- a/scripts/changelibversion +++ b/scripts/changelibversion @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.0.0 +VERSION=2.1.0 perl -i -pe 's/^our \$VERSION.*$/our \$VERSION = '\'$VERSION\'';/' $(find l*/lib/ -name *.pm) perl -i -pe 's/(Lemonldap::NG::(?:Common|Handler|Portal|Manager): +v)[\d\.]+/${1}'$VERSION'/' lemonldap-ng-*/META.yml diff --git a/scripts/doc.pl b/scripts/doc.pl index a030d677283f74c609117201ae1fab364a425551..92b4ba9cf886352e7ccc1d59c90f804c073764bb 100755 --- a/scripts/doc.pl +++ b/scripts/doc.pl @@ -14,7 +14,7 @@ use strict; use LWP::Simple; use Tie::File; -my $version = "2.0"; +my $version = "2.1"; my $offline_zip_url = "http://lemonldap-ng.org/documentation/$version/start?depth=0&depthType=1.0&disableCache=1&do=siteexport&ens=documentation%3A$version%3Astart&exportLinkedPages=1&exportbody=1&renderer=&template=bootstrap3&disableplugin[]=acl&disableplugin[]=config&disableplugin[]=extension&disableplugin[]=oddeven&disableplugin[]=siteexport&disableplugin[]=usermanager"; my $rc;