Minor changelog fixes

This commit is contained in:
Ingo Schommer 2013-10-01 00:15:52 +02:00
parent 98d676bfdc
commit 304e5d192e
2 changed files with 7 additions and 10 deletions

View File

@ -486,13 +486,9 @@ you can enable those warnings and future-proof your code already.
To remove the hints, use `setDescription(null)` and `setAttribute('placeholder', null)`.
* Changed the way FreeStrings in `SSTemplateParser` are recognized, they will now also break on inequality
operators (`<`, `>`). If you use inequality operators in free strings in comparisions like
`<% if Some<String == Some>Other>String %>...<% end_if %>`
you have to replace them with explicitly markes strings like
`<% if "Some<String" == "Some>Other>String" %>...<% end_if %>`
`<% if "Some<String" == "Some>Other>String" %>...<% end_if %>`.
This change was necessary in order to support inequality operators in comparisons in templates
* Hard limit displayed pages in the CMS tree to `500`, and the number of direct children to `250`,
to avoid excessive resource usage. Configure through `Hierarchy.node_threshold_total` and `
@ -505,3 +501,4 @@ you can enable those warnings and future-proof your code already.
* Forms created in the CMS should now be instances of a new `CMSForm` class,
and have the CMS controller's response negotiator passed into them.
Example: `$form = new CMSForm(...); $form->setResponseNegotiator($this->getResponseNegotiator());`

View File

@ -9,9 +9,9 @@ For information on how to upgrade to newer versions consult the [upgrading](/ins
## Stable Releases
* [3.1.0](3.1.0) - Unreleased
* [3.1.0](3.1.0) - 1 October 2013
* [3.0.5](3.0.5) - 2013-02-20
* [3.0.5](3.0.5) - 20 February 2013
* [3.0.4](3.0.4) - 19 February 2013
* [3.0.3](3.0.3) - 26 November 2012
* [3.0.2](3.0.2) - 17 September 2012