[vhffs-dev] [2259] final changes for vhffs 4.5.0 |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 2259
Author: gradator
Date: 2014-12-14 19:35:45 +0100 (Sun, 14 Dec 2014)
Log Message:
-----------
final changes for vhffs 4.5.0
Modified Paths:
--------------
trunk/ChangeLog
trunk/README
trunk/configure.ac
trunk/debian/changelog
trunk/vhffs-api/src/Vhffs/Constants.pm
trunk/vhffs-fs/configure.ac
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2014-12-14 17:06:19 UTC (rev 2258)
+++ trunk/ChangeLog 2014-12-14 18:35:45 UTC (rev 2259)
@@ -1,3 +1,47 @@
+VHFFS 4.5.0
+ - new VHFFS mail management, with a new, clear, almost perfect database
+ schema
+ - Now using Data Source Name (DSN) instead of separate fields for host,
+ port, and database for MySQL and PostgreSQL configuration
+ - all password field changed from crypted-md5 or DES to crypted-SHA-512
+ - updated MySQL patch for Mysql 5.1.73 and MySQL 5.5.40 (Debian Wheezy)
+ - added a patch to add support for dynamic document_root per request in
+ mod-vhost-hash-alias which is now possible in Apache 2.4
+ - ported TuxFamily kernel patch to Linux 3.2.45
+ - bugfix: don't delete users which are not yet free of groups
+ - API: added get_config() method to easily fetch related object
+ configuration
+ - updated awstats patches against awstats 6.95 and 7.1
+ - added VHFFS syslogger!, a tool to redirect standard input to syslog
+ - new pure-ftpd patch, altlog to syslog feature added
+ - log_apachectl and log_apachelocal configuration directives are now
+ replaced to log_postrotate
+ - user hashed passwords and mail hashed passwords are now using the
+ same hash algorithm, don't ask anymore the user password when
+ creating the user mailbox and just copy the hash
+ - reload vhffs configuration file if changed while using FastCGI
+ - added a patch to fix a memory leak in suPHP
+ - Improved the way we managed users created by robots. User who succeed
+ having a validated group or being adding added to an active group are
+ switched to a validated state which prevent them to be automatically
+ removed.
+ - sanitize mercurial description data to match .hgrc requirements
+ - bugfix: fixed duplicate backups of group data for group that were not
+ empty when asked to be deleted
+ - now sending mail to users when objects are successfully created
+ - web and repositories stats (awstats) are now using geoip module
+ instead of reverse DNS, which is faster and gives better results
+ - now allowing dot '.' char in mailinglist local part.
+ - fixed MediaWiki VHFFS auth plugin, call-time pass-by-reference
+ has been removed in PHP 4.4
+ - updated patches for pure-ftpd 1.0.36
+ - fixed exim4 example config for PostgreSQL 9.x,
+ standard_conforming_strings compliance
+ - force scalar context on $cgi->param() where it is necessary to
+ prevent list context abuse
+ - fixed bug #276, XSS issue with "msg" param
+ - updated apache and courier configurations for Debian Wheezy
+
VHFFS 4.4.1
- Fixed a blocking bug on group creation
- Updated some panel strings
Modified: trunk/README
===================================================================
--- trunk/README 2014-12-14 17:06:19 UTC (rev 2258)
+++ trunk/README 2014-12-14 18:35:45 UTC (rev 2259)
@@ -6,9 +6,9 @@
http://www.vhffs.org/doc:installationguide
-Upgrade Guide from VHFFS 4.2.x
+Upgrade Guide from VHFFS 4.4.x
-http://www.vhffs.org/doc:installationguide:upgrade-from-4.2
+http://www.vhffs.org/doc:installationguide:upgrade-from-4.4
Please also read content in vhffs-doc/ directory. It contains useful
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2014-12-14 17:06:19 UTC (rev 2258)
+++ trunk/configure.ac 2014-12-14 18:35:45 UTC (rev 2259)
@@ -1,5 +1,5 @@
AC_REVISION($Revision: 101 $)dnl
-AC_INIT([VHFFS], [4.5-dev], [support@xxxxxxxxx])
+AC_INIT([VHFFS], [4.5.0], [support@xxxxxxxxx])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_MACRO_DIR([m4])
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2014-12-14 17:06:19 UTC (rev 2258)
+++ trunk/debian/changelog 2014-12-14 18:35:45 UTC (rev 2259)
@@ -1,3 +1,9 @@
+vhffs (4.5.0-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Sylvain Rochet <gradator@xxxxxxxxxxxx> Sun, 14 Dec 2014 19:29:09 +0100
+
vhffs (4.4.0-1) unstable; urgency=low
* New upstream release
Modified: trunk/vhffs-api/src/Vhffs/Constants.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Constants.pm 2014-12-14 17:06:19 UTC (rev 2258)
+++ trunk/vhffs-api/src/Vhffs/Constants.pm 2014-12-14 18:35:45 UTC (rev 2259)
@@ -18,8 +18,8 @@
=cut
use constant {
- VHFFS_VERSION => '4.5-dev (Revision: %VHFFS_REVISION%)',
- VHFFS_RELEASE_NAME => undef,
+ VHFFS_VERSION => '4.5.0',
+ VHFFS_RELEASE_NAME => 'Mirounga leonina',
CONF_PATH => '/etc/vhffs/vhffs.conf',
Modified: trunk/vhffs-fs/configure.ac
===================================================================
--- trunk/vhffs-fs/configure.ac 2014-12-14 17:06:19 UTC (rev 2258)
+++ trunk/vhffs-fs/configure.ac 2014-12-14 18:35:45 UTC (rev 2259)
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
-AC_INIT([VHFFS-FS], [4.5-dev], [bugs@xxxxxxxxx])
+AC_INIT([VHFFS-FS], [4.5.0], [bugs@xxxxxxxxx])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_SRCDIR([vhffsfs.c])
AC_CONFIG_HEADER([config.h])