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");