From a59fb583814491eef7558dc7a272dc6cedc228b7 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Wed, 14 Oct 2015 05:59:25 +0000 Subject: [PATCH] Version 0.21 package git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2365 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- debian/changelog | 25 +++++++++++++++++++++++++ debian/makePackageDebian | 2 +- version.php | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f3e2b8d..4d2e9d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,28 @@ +domframework (0.21-1) testing; urgency=low + * language : correct the layout by the associated language + + + * authzgroups : if the provided object start by a slash, don't add it. + * authzgroups : add a local cache in the object, for the userrightsget, to + not access to the database each time + * dblayer : add the hookpreread and the hookpostread + * dblayerauthzgroups : add the support to dblayer with authzgroups rights + * dblayer : define the setters of properties to allow chained -> + * dblayerauthzgroups : define the setters of properties to allow chained -> + * dblayer : If provided select is not an array of array, throw an exception + * dblayer : if the verify return an array with the field in key, the exception + of update is now working + * Add users and userssql + * authhtpasswd : Add support to authenticate the user from a .htpasswd file, + created by "htpasswd" command. Allow to add easily a new user if the admin + password is lost + * cli : add support to namespaces + * cli : don't display the protected/private methods : can't be called + * cli-completion : complete rewrite of the bash completion help + * cli : if no controller or models exists, return nothing in listonly mode + (bash_completion) + -- Dominique Fournier Wed, 14 Oct 2015 07:57:57 +0100 + domframework (0.20-1) testing; urgency=low * logger : remove the [internal functions] (without file and line) from the logs diff --git a/debian/makePackageDebian b/debian/makePackageDebian index f4aa027..5f04d83 100755 --- a/debian/makePackageDebian +++ b/debian/makePackageDebian @@ -1,6 +1,6 @@ #!/bin/bash -x # Think about changing the version.php file !! -VERSION="0.20" +VERSION="0.21" PACKAGE="domframework" rm -rf /tmp/${PACKAGE}pack mkdir /tmp/${PACKAGE}pack diff --git a/version.php b/version.php index 745a106..947f780 100644 --- a/version.php +++ b/version.php @@ -11,4 +11,4 @@ if (!defined ("DOMFRAMEWORK_VERSION") || version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0) die ("Your DomFramework version is too old : 0.6 minimum\n"); */ -define ("DOMFRAMEWORK_VERSION", "0.20"); +define ("DOMFRAMEWORK_VERSION", "0.21");