Start the 0.13 package process by changelog and makePackageDebian

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2101 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2015-04-29 12:07:08 +00:00
parent 74e02a1c12
commit 69a0cc79de
2 changed files with 57 additions and 1 deletions

56
debian/changelog vendored
View File

@@ -1,3 +1,59 @@
domframework (0.13-1) testing; urgency=low
* route.php : Add support of URL matching with or without Slash
* dblayer : don't connect multiple times to the same database/username
* dblayer : don't do the update if no data is provided
* dblayer : add support to hooks (pre|post)(insert|update|delete)
* authzgroups : update to support new dbLayer object
* logger : allow to push multiple datas of multiple types in logs. The log
convert it in text to save them
* logger : allow to remove more entries in the dump stack to find the right
file calling the logger
* logger : log the readl client address when using a proxy
* config : allow to read the configuration file from data or datas dir
* module : Add support of modules analyzing
* routeSQL : Add pagination support and informationsArea
* routeSQL : Add support to user-defined actions buttons
* routeSQL : Actions buttons must be defined at start or end of line
* routeSQL : Allow to put the parameters in any order
* routeSQL : Allow to disable the internal CSS
* routeSQL : Create a beautiful internal CSS for listing of entry (without
external dependency)
* routeSQL : Add Search support
* routeSQL : Push in a cookie the numbers of displayed elements (by URL)
* routeSQL : Push in a cookie the search criteria (by URL)
* routeSQL : Add position of add button/paginator/search arround the table
* routeSQL : Create a beautiful internal CSS for editing an entry (without
external dependency)
* routeSQL : search can now start by a ^ or finish by a $ to simulate a regex
* routeSQL : Add support of url-defined var (like zone/XX/entry/YY)
* routeSQL : Add an optionnal authorization support
* routeSQL : Do a READ-ONLY mode
* routeSQL : Display the HTML pages with the renderer to be more flexible
* routeSQL : add REST support (without auth, nor chained mode)
* routeSQL : Limit the list to the authorized of elements
* routeSQL : Add the Chain support to REST support
* routeSQL : Add the Authorization support to REST support
* routeSQL : Add the module support for $route->redirect(XX,module)
* routeSQL : do the translation in english/french
* routeSQL : don't display the pages directely, but use the view layer to
display the content variable
* routeSQL : Display the associated unique field from a foreign key instead of
the numerical value
* routeSQL : Add a select list (or a text search) for foreign keys when insert
or update
* BUG routeSQL : incorrect cookie used when search in a page and go in a
chained page : the chained page use the cookie without need !
* auth : don't need bootstrap or jquery to work (all the CSS is integrated)
* ratelimit : add the ratelimit abstract class with its first child (file
storage)
* lockfile : in file
* authentication : if a proxy is used, the url to redirect is incorrect and
should not be used (maybe a relative URL can be better)
* route : if a proxy is used, the baseURL is wrong. It should be better if a
relative URL is used. Need to modify the redirectURL too. There is a param
$absolute to allow the old mode to be operationnal (not used by default)
-- Dominique Fournier <dominique@fournier38.fr> Wed, 29 Apr 2015 14:06:57 +0100
domframework (0.12-1) testing; urgency=low
* BUG locale : Missing all the locales in Debian package
-- Dominique Fournier <dominique@fournier38.fr> Tue, 27 Jan 2015 11:51:57 +0100

View File

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