diff --git a/build/RELEASE b/build/RELEASE index 8286a0e77..bf8a32f3f 100644 --- a/build/RELEASE +++ b/build/RELEASE @@ -5,7 +5,7 @@ The version ----------- - The release version should be updated in the following location: -* changelog (add a changelog for the target version) +* changelog (add a changelog from JIRA for the target version) * Main modules (Common.pm/Handler.pm/Portal.pm/Manager.pm) * Makefile.PL for cross-dependencies * Doxyfile diff --git a/build/lemonldap-ng/Doxyfile b/build/lemonldap-ng/Doxyfile index fcc46afa7..cc20ac5b9 100644 --- a/build/lemonldap-ng/Doxyfile +++ b/build/lemonldap-ng/Doxyfile @@ -25,13 +25,13 @@ DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. -PROJECT_NAME = Lemonldap::NG +PROJECT_NAME = LemonLDAP::NG # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.1.0 +PROJECT_NUMBER = 1.2.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/build/lemonldap-ng/changelog b/build/lemonldap-ng/changelog index 588bae6eb..9526a1d69 100644 --- a/build/lemonldap-ng/changelog +++ b/build/lemonldap-ng/changelog @@ -1,3 +1,32 @@ +lemonldap-ng (1.2.0) stable; urgency=low + +lemonldap-ng (1.1.2) stable; urgency=low + + * [LEMONLDAP-355] - The "basic($uid,$_password)" extended function makes an + error 500 in Apache + * [LEMONLDAP-356] - Wrong language when user has already a session and gets + redirected + * [LEMONLDAP-357] - CPAN tester report: missing dependency for SecureToken + Handler + * [LEMONLDAP-358] - [SecureToken] Check if cached connection is alive before + using it + * [LEMONLDAP-359] - [SecureToken] Add an option to raise error if token + could not be generated + * [LEMONLDAP-360] - Fix Debian dependencies + * [LEMONLDAP-361] - [CAS Issuer] check authorization on CAS service + * [LEMONLDAP-362] - Portal grant function returns -1 on undefined vhost. It + should return 0. + * [LEMONLDAP-363] - Lasso Debian dependency need to be updated + * [LEMONLDAP-364] - Configure httpOnly option in Manager + * [LEMONLDAP-365] - Log sent headers in debug mode + +lemonldap-ng (1.1.1) stable; urgency=low + + * [LEMONLDAP-350] - remote SOAP handlers errors on reload + * [LEMONLDAP-351] - Cannot get LDAP groups for DN with '\' into it + * [LEMONLDAP-352] - Notifications needs to be accepted twice + * [LEMONLDAP-353] - Configure notification filename value separator + lemonldap-ng (1.1.0) stable; urgency=low * [LEMONLDAP-303] - Form replay filter is not compatible with recent Safe diff --git a/build/lemonldap-ng/debian/changelog b/build/lemonldap-ng/debian/changelog index 296e758ed..901ecd948 100644 --- a/build/lemonldap-ng/debian/changelog +++ b/build/lemonldap-ng/debian/changelog @@ -1,3 +1,21 @@ +lemonldap-ng (1.2.0-0.1) unstable; urgency=low + + * Local build + + -- Xavier Guimard Fri, 07 Oct 2011 11:00:00 +0100 + +lemonldap-ng (1.1.2-0.1) unstable; urgency=low + + * Local build + + -- Xavier Guimard Fri, 07 Oct 2011 11:00:00 +0100 + +lemonldap-ng (1.1.1-0.1) unstable; urgency=low + + * Local build + + -- Xavier Guimard Fri, 29 Jul 2011 11:00:00 +0100 + lemonldap-ng (1.1.0-0.1) unstable; urgency=low * Local build diff --git a/build/rpm/lemonldap-ng.spec b/build/rpm/lemonldap-ng.spec index f2053cb68..7f83f2712 100644 --- a/build/rpm/lemonldap-ng.spec +++ b/build/rpm/lemonldap-ng.spec @@ -14,11 +14,11 @@ %define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch) %define real_name lemonldap-ng -%define real_version 1.1.0 -%define cpan_common_version 1.1.0 -%define cpan_handler_version 1.1.0 -%define cpan_manager_version 1.1.0 -%define cpan_portal_version 1.1.0 +%define real_version 1.2.0 +%define cpan_common_version 1.2.0 +%define cpan_handler_version 1.2.0 +%define cpan_manager_version 1.2.0 +%define cpan_portal_version 1.2.0 %define lm_prefix /usr %define lm_sharedir %{_datadir}/lemonldap-ng @@ -471,6 +471,12 @@ rm -rf %{buildroot} # Changelog #============================================================================== %changelog +* Fri Oct 07 2011 Clement Oudot - 1.2.0-1 +- Update to 1.2.0 +* Fri Oct 07 2011 Clement Oudot - 1.1.2-1 +- Update to 1.1.2 +* Fri Jul 29 2011 Clement Oudot - 1.1.1-1 +- Update to 1.1.1 * Fri Jul 08 2011 Clement Oudot - 1.1.0-1 - Update to 1.1.0 * Mon Jun 30 2011 Clement Oudot - 1.0.6-1 diff --git a/modules/lemonldap-ng-common/META.yml b/modules/lemonldap-ng-common/META.yml index 9b8e92879..885fbf70b 100644 --- a/modules/lemonldap-ng-common/META.yml +++ b/modules/lemonldap-ng-common/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Lemonldap-NG-Common -version: 1.1.0 +version: 1.2.0 abstract: Common files for Lemonldap::NG infrastructure author: - Xavier Guimard , Clément Oudot diff --git a/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm b/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm index 648cebe2f..1e3912f6f 100644 --- a/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm +++ b/modules/lemonldap-ng-common/lib/Lemonldap/NG/Common.pm @@ -1,6 +1,6 @@ package Lemonldap::NG::Common; -our $VERSION = '1.1.0'; +our $VERSION = '1.2.0'; use strict; diff --git a/modules/lemonldap-ng-handler/META.yml b/modules/lemonldap-ng-handler/META.yml index 13f73b6b5..6df8e7fb4 100644 --- a/modules/lemonldap-ng-handler/META.yml +++ b/modules/lemonldap-ng-handler/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Lemonldap-NG-Handler -version: 1.1.0 +version: 1.2.0 abstract: The Apache protection module part of author: - Xavier Guimard @@ -19,7 +19,7 @@ requires: CGI: 3.08 Digest::SHA1: 0 IO::Pipe: 0 - Lemonldap::NG::Common: 1.1.0 + Lemonldap::NG::Common: 1.2.0 LWP::UserAgent: 0 Test::MockObject: 0 URI: 0 diff --git a/modules/lemonldap-ng-handler/Makefile.PL b/modules/lemonldap-ng-handler/Makefile.PL index b50cbe100..4ecde1e3f 100644 --- a/modules/lemonldap-ng-handler/Makefile.PL +++ b/modules/lemonldap-ng-handler/Makefile.PL @@ -15,7 +15,7 @@ WriteMakefile( 'Apache::Session' => 0, 'LWP::UserAgent' => 0, 'Cache::Cache' => 0, - 'Lemonldap::NG::Common' => '1.1.0', + 'Lemonldap::NG::Common' => '1.2.0', 'CGI' => 3.08, 'URI' => 0, 'Apache::Session::Generate::MD5' => 0, diff --git a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm index 14de3c88a..cea76b3f0 100644 --- a/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm +++ b/modules/lemonldap-ng-handler/lib/Lemonldap/NG/Handler.pm @@ -5,7 +5,7 @@ # Alias for Lemonldap::NG::Handler::SharedConf package Lemonldap::NG::Handler; -our $VERSION = '1.1.0'; +our $VERSION = '1.2.0'; use Lemonldap::NG::Handler::SharedConf; use base qw(Lemonldap::NG::Handler::SharedConf); diff --git a/modules/lemonldap-ng-manager/META.yml b/modules/lemonldap-ng-manager/META.yml index 32c56cb56..fef1ce3c9 100644 --- a/modules/lemonldap-ng-manager/META.yml +++ b/modules/lemonldap-ng-manager/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Lemonldap-NG-Manager -version: 1.1.0 +version: 1.2.0 abstract: Perl extension for managing Lemonldap::NG Web-SSO author: - Xavier Guimard , Clément Oudot , Thomas Chemineau @@ -22,9 +22,9 @@ requires: HTML::Template: 0 IO::String: 0 JSON: 0 - Lemonldap::NG::Common: 1.1.0 - Lemonldap::NG::Handler: 1.1.0 - Lemonldap::NG::Portal: 1.1.0 + Lemonldap::NG::Common: 1.2.0 + Lemonldap::NG::Handler: 1.2.0 + Lemonldap::NG::Portal: 1.2.0 LWP::UserAgent: 0 XML::LibXML: 0 XML::LibXSLT: 0 diff --git a/modules/lemonldap-ng-manager/Makefile.PL b/modules/lemonldap-ng-manager/Makefile.PL index 188504296..2ca21ab9a 100644 --- a/modules/lemonldap-ng-manager/Makefile.PL +++ b/modules/lemonldap-ng-manager/Makefile.PL @@ -18,9 +18,9 @@ WriteMakefile( 'File::Basename' => 0, 'HTML::Template' => 0, 'JSON' => 0, - 'Lemonldap::NG::Common' => '1.1.0', - 'Lemonldap::NG::Handler' => '1.1.0', - 'Lemonldap::NG::Portal' => '1.1.0', + 'Lemonldap::NG::Common' => '1.2.0', + 'Lemonldap::NG::Handler' => '1.2.0', + 'Lemonldap::NG::Portal' => '1.2.0', 'LWP::UserAgent' => 0, 'XML::LibXML' => 0, 'XML::LibXSLT' => 0, diff --git a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm index 0a197b9e7..4797f21ce 100644 --- a/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm +++ b/modules/lemonldap-ng-manager/lib/Lemonldap/NG/Manager.pm @@ -11,7 +11,7 @@ use Lemonldap::NG::Handler::CGI qw(:globalStorage :locationRules); #inherits use Lemonldap::NG::Common::Conf; #link protected conf Configuration use Lemonldap::NG::Common::Conf::Constants; #inherits -our $VERSION = '1.1.0'; +our $VERSION = '1.2.0'; our @ISA = qw( Lemonldap::NG::Handler::CGI Lemonldap::NG::Manager::Downloader diff --git a/modules/lemonldap-ng-portal/META.yml b/modules/lemonldap-ng-portal/META.yml index da85b4c8b..b7efc6cd3 100644 --- a/modules/lemonldap-ng-portal/META.yml +++ b/modules/lemonldap-ng-portal/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: Lemonldap-NG-Portal -version: 1.1.0 +version: 1.2.0 abstract: The authentication portal part of Lemonldap::NG Web-SSO author: - Xavier Guimard , Clément Oudot , Thomas Chemineau , Mikael Ates @@ -20,8 +20,8 @@ requires: File::Basename: 0 HTML::Template: 0 IO::String: 0 - Lemonldap::NG::Common: 1.1.0 - Lemonldap::NG::Handler: 1.1.0 + Lemonldap::NG::Common: 1.2.0 + Lemonldap::NG::Handler: 1.2.0 MIME::Lite: 0 Net::LDAP: 0 SOAP::Lite: 0 diff --git a/modules/lemonldap-ng-portal/Makefile.PL b/modules/lemonldap-ng-portal/Makefile.PL index 1b3a92f2d..61fc2a55a 100644 --- a/modules/lemonldap-ng-portal/Makefile.PL +++ b/modules/lemonldap-ng-portal/Makefile.PL @@ -28,8 +28,8 @@ WriteMakefile( 'CGI' => 3.08, 'File::Basename' => 0, 'HTML::Template' => 0, - 'Lemonldap::NG::Common' => '1.1.0', - 'Lemonldap::NG::Handler' => '1.1.0', + 'Lemonldap::NG::Common' => '1.2.0', + 'Lemonldap::NG::Handler' => '1.2.0', 'MIME::Lite' => 0, 'Net::LDAP' => 0, 'String::Random' => 0, diff --git a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm index 9c4e0e30c..f1005075a 100644 --- a/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm +++ b/modules/lemonldap-ng-portal/lib/Lemonldap/NG/Portal.pm @@ -5,7 +5,7 @@ # Alias for Lemonldap::NG::SharedConf package Lemonldap::NG::Portal; -our $VERSION = '1.1.0'; +our $VERSION = '1.2.0'; use Lemonldap::NG::Portal::SharedConf; use base 'Lemonldap::NG::Portal::SharedConf';