Version 0.11 of Domframework :

* BUG dblayer : check if the unique multiple values are not used before
    updating
  * BUG Markdown : Two automatic links on the same line are not correct, the
    regex must be Ungreedy
  * BUG route : if using modules, the redirect was wrong
  * form : the submit text can be defined in the label too
  * form : add the hidden support to the fields
  * BUG dblayer : Add support to ordering if column name is 'group' by using the
    separator (need by SQLite)
  * HTTP authentication : return an exception with 401 to allow the browser to
    authenticate. Allow the REST API to work by catching the error instead of
    die


git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@1932 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2015-01-27 01:33:47 +00:00
parent 619da88365
commit 0b17469544
2 changed files with 16 additions and 1 deletions

15
debian/changelog vendored
View File

@@ -1,3 +1,18 @@
domframework (0.11-1) testing; urgency=low
* BUG dblayer : check if the unique multiple values are not used before
updating
* BUG Markdown : Two automatic links on the same line are not correct, the
regex must be Ungreedy
* BUG route : if using modules, the redirect was wrong
* form : the submit text can be defined in the label too
* form : add the hidden support to the fields
* BUG dblayer : Add support to ordering if column name is 'group' by using the
separator (need by SQLite)
* HTTP authentication : return an exception with 401 to allow the browser to
authenticate. Allow the REST API to work by catching the error instead of
die
-- Dominique Fournier <dominique@fournier38.fr> Tue, 27 Jan 2015 02:32:57 +0100
domframework (0.10-1) testing; urgency=low
* BUG : dblayer : don't raise an exception when re-inserting unique record
* dblayer : add more unit tests

View File

@@ -1,6 +1,6 @@
#!/bin/bash -x
# Think about changing the version.php file !!
VERSION="0.10"
VERSION="0.11"
PACKAGE="domframework"
rm -rf /tmp/${PACKAGE}pack
mkdir /tmp/${PACKAGE}pack