diff --git a/debian/changelog b/debian/changelog index 3c654db..b7c161c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 13 Mar 2018 09:02:18 +0100 + domframework (0.49-1) testing; urgency=low FEATURES ADDED: diff --git a/version.php b/version.php index 0675aea..5fa784b 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.49"); +define ("DOMFRAMEWORK_VERSION", "0.50");