Start packaging of 0.50 version

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4160 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2018-03-13 08:02:29 +00:00
parent 7864fe8628
commit ec960adb4e
2 changed files with 41 additions and 1 deletions

40
debian/changelog vendored
View File

@@ -1,3 +1,43 @@
domframework (0.50-1) testing; urgency=low
FEATURES ADDED:
* ipaddresses : add validCIDR, validIPv4CIDR, validIPv6CIDR to check the CIDR
* ipaddresses : add validIPAddressWithCIDR, validIPAddressIPv4WithCIDR and
validIPAddressIPv6WithCIDR
* ipaddresses : add compressIP to compress an IPv6 address (remove the 0 and
add the :: if possible)
* ipaddresses : add networkFirstIP and networkLastIP to get the first and last
address of a network. In IPv4, the first address is network address and the
last address is broadcast address.
* ipaddresses : add ipInNetwork to know if the provided ip address is in or
outside the network and cidr provided
* ipaddresses : Manage the IPv4 blocks in IPv6 : ::ffff:192.168.1.2
* tcpserver: allow the loop to be interrupted by a signal
* tcpclient : generate an exception if the DNS has an error
* tcpclient: Get the A and AAAA records before querying the CNAME only if
needed (speedup if the CNAME DNS can not be found and hang the request)
* tcpclient : Allow to set the SSL options if needed
* tcpclient : use the TLS1.1 or TLS1.2 and no more the TLS1.0
* password : Add password management and the associated tests
* cli : Add controllersDir and modelsDir methods to set multiple pathes for
controllers and models
CORRECTED BUGS:
* tcpclient: test correctely the certificate of the server by setting
correctely the name of the peer
* tcpclient: enable crypto : raise an exception in case of error
* tcpserver: do not generate a warning on screen if the client reject the
crypto enabling
* logger : to file, add a LOCK_EX to be sure that each message is finished to
be write before starting a new one
* daemon : do not start the daemon if the PID file is finished by a \n
* outputhtml : allow the class to be defined by an autoloader instead of hard
wire the class files
* authentication : use the ratelimit dir /tmp/ratelimit to not try to remove
all the files in /tmp
-- Dominique Fournier <dominique@fournier38.fr> Tue, 13 Mar 2018 09:02:18 +0100
domframework (0.49-1) testing; urgency=low domframework (0.49-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.49"); define ("DOMFRAMEWORK_VERSION", "0.50");