diff --git a/ChangeLog b/ChangeLog index ca400a7b..9f52c395 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,57 @@ +2010-02-03 Andrew McMillan + * Release 0.9.8.1 + * Update the sync changes for deletion of a calendar. + * Always report DELETE action in sync-changes + * Report correct href with DELETE action in sync report. + +2010-02-01 Andrew McMillan + * Remove misguided include logic. + * Editor widget class has been moved into AWL. + +2010-01-30 Andrew McMillan + * Fix up the javascript around enabling fields when calendar/addressbook. + * Move version display to setup.php and do basic dependency checks. + +2010-01-27 Andrew McMillan + * Allow config files to be under /usr/local + +2010-01-11 Andrew McMillan + * We don't need to reference a $action . '.js' file. + * Create a default calendar when a User or Resource principal is created. + +2010-01-10 Andrew McMillan + * Add a utility IsCreate() method opposite to IsUpdate(). + * Try and reduce the odds of an extra quote in the password. + +2009-12-28 Andrew McMillan + * Basic support for the ACL method. Working, but needs work. + * Improve logging of parameterised queries. + +2009-12-27 Andrew McMillan + * DAV::owner should be wrapped with DAV::property in DAV::ace response. + * Return 406 Not Acceptable for invalid XML request. + * Refactor principal-property-search REPORT. + * Use calendar-user-address-set for search rather than CS extension. + * Move DAVResource inclusion to REPORT wrapper. + * Comment out debugging messages for peformance. + * Fix problems with logging of failed queries. + * Add pass-through for PDO ErrorInfo() method. + * New regression tests and updated results. + * Add support for principal-search-property-set REPORT per RFC3744 + * Refactor the construction of DAV::acl and report owner acl + +2009-12-26 Andrew McMillan + * Current regression test results. + * Move MKCOL/MKCALENDAR to NeedPrivilege() + * Correct log facility. + * Strip redundant code from CalDAVRequest + * Revert misguided namespacing change on Not Found properties. + * Move response for supported-lock and supported-privilege-set into DAVResource.php + * Fix logic for calculating by_email + * New style privilege checking. + * Switch to NeedPrivilege() method for checking privileges. + * Switch privileges to use the new model. + 2009-12-24 Andrew McMillan * Release 0.9.8 * Slightly updated TODO. diff --git a/VERSION b/VERSION index e3e18070..b5343984 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.8 +0.9.8.1 diff --git a/debian/changelog b/debian/changelog index ace1f046..a0aea4a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +davical (0.9.8.1) unstable; urgency=low + + * New upstream release + + -- Andrew McMillan Fri, 05 Feb 2010 08:14:55 -0800 + davical (0.9.8-0) unstable; urgency=low * New upstream release (closes: #561288, #561285) diff --git a/debian/control b/debian/control index dcf06696..07533360 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: davical Section: web Priority: extra Maintainer: Andrew McMillan -Standards-Version: 3.8.3 +Standards-Version: 3.8.4 Build-Depends: debhelper (>= 5) Vcs-git: git://repo.or.cz/davical.git Vcs-browser: http://repo.or.cz/w/davical.git @@ -10,7 +10,7 @@ Homepage: http://davical.org/ Package: davical Architecture: all -Depends: debconf (>= 1.0.32), php5-pgsql, postgresql-client-8.4 | postgresql-client-8.3 | postgresql-client-8.2 | postgresql-client-8.1, libawl-php (= 0.39-0), libdbd-pg-perl, libyaml-perl +Depends: debconf (>= 1.0.32), php5-pgsql, postgresql-client-8.4 | postgresql-client-8.3 | postgresql-client-8.2, libawl-php (= 0.40-0), libdbd-pg-perl, libyaml-perl Conflicts: rscds Description: The DAViCal CalDAV Server The DAViCal CalDAV Server is designed to trivially store diff --git a/inc/always.php b/inc/always.php index 5b8bd04a..4826e222 100644 --- a/inc/always.php +++ b/inc/always.php @@ -131,7 +131,7 @@ awl_set_locale($c->default_locale); * */ $c->code_version = 0; -$c->version_string = '0.9.8'; // The actual version # is replaced into that during the build /release process +$c->version_string = '0.9.8.1'; // The actual version # is replaced into that during the build /release process if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) { $c->code_major = $matches[1]; $c->code_minor = $matches[2];