Start packaging of 0.52

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4793 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2018-12-21 09:57:45 +00:00
parent b05453d202
commit b82f56d306
2 changed files with 30 additions and 1 deletions

29
debian/changelog vendored
View File

@@ -1,3 +1,32 @@
domframework (0.52-1) testing; urgency=low
FEATURES ADDED:
* Start the namespace conversion (no namespace defined, but add the needed
calls \Exception and __NAMESPACE__."\class")
* route : allow OPTIONS HTTP method
* xdiff : Add XDiff support in pure PHP. Allow to see which lines of two text
files are modified, like the "diff" command. See
https://en.wikipedia.org/wiki/Diff
* route : catch the base of site on "." too
* dblayeroo : Add FLOAT support
* dblayeroo : Add normalize method by default (trim all the values, except the
null ones). Use it in verify too
* dblayeroo : Add the "realTypes" support with basic associated tests. The
realtypes are more specific than the SQL types. Examples the real type
"mail" will be stored in "varchar(255)". If the user want some custom
tests, it must extends the class and create checkRealType_XXX tests
* outputhtml : Allow to get multiple data from the view and replace all the
array keys by their values (and not only {title} and {content})
* tcpclient : Add timeout support
* httpclient : allow to use http connection to GET/POST data with cookies
management and HTTPS support. All of this without allow_url_fopen need
CORRECTED BUGS:
* ipaddresses : update CIDR tests : was not catch error if the last char of
CIDR was a letter
-- Dominique Fournier <dominique@fournier38.fr> Fri, 21 Dec 2018 10:54:49 +0100
domframework (0.51-1) testing; urgency=low domframework (0.51-1) testing; urgency=low
FEATURES ADDED: FEATURES ADDED:

View File

@@ -11,4 +11,4 @@
if (!defined ("DOMFRAMEWORK_VERSION") || if (!defined ("DOMFRAMEWORK_VERSION") ||
version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0) version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0)
die ("Your DomFramework version is too old : 0.6 minimum\n"); */ die ("Your DomFramework version is too old : 0.6 minimum\n"); */
define ("DOMFRAMEWORK_VERSION", "0.51"); define ("DOMFRAMEWORK_VERSION", "0.52");