1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
<?php
/**
* Release focus. Possible values:
* 0 - N/A
* 1 - Initial freshmeat announcement
* 2 - Documentation
* 3 - Code cleanup
* 4 - Minor feature enhancements
* 5 - Major feature enhancements
* 6 - Minor bugfixes
* 7 - Major bugfixes
* 8 - Minor security fixes
* 9 - Major security fixes
*/
$this->notes['fm']['focus'] = 8;
/* Mailing list release notes. */
$this->notes['ml']['changes'] = <<<ML
The Horde Team is pleased to announce the final release of the Horde
Application Framework version 3.1.3.
This is a bugfix release that also fixes a cross site scripting vulnerability
and improves protection against phishing attempts.
Many thanks to the "immerda project group" (http://www.immmerda.ch) and Marc
Ruef for reporting these problems and working with us to test the fixes.
The Horde Application Framework is a modular, general-purpose web application
framework written in PHP. It provides an extensive array of libraries that
are targeted at the common problems and tasks involved in developing modern
web applications.
Major changes compared to Horde 3.1.2 are:
* Security Fixes
- Closed an XSS problem in index.php and improved protection against
phishing attempts.
* Bugfixes and improvements
- Added Kolab group ACL support.
- Improved import of date and time fields.
- Fixed synchronization support.
- Updated Catalan, German and Slovenian translations.
ML;
/* Freshmeat release notes, not more than 600 characters. */
$this->notes['fm']['changes'] = <<<FM
This is a bugfix release that also fixes a cross site scripting vulnerability
and improves protection against phishing attempts.
Kolab group ACL support has been added, import of date and time fields has
been improved, and synchronization support has been fixed.
Catalan, German and Slovenian translations have been updated.
FM;
$this->notes['name'] = 'Horde';
$this->notes['fm']['project'] = 'horde';
$this->notes['fm']['branch'] = 'Horde 3';
|