symfony 0.6.3 released
June 23, 2006 • Published by Francois Zaninotto
The new 0.6.3 stable release of symfony is there, up and running, and it is expecting your download. It is not a major release, but it fixes some bugs and brings some small enhancements. As it doesn't break BC, there is no reason why you shouldn't upgrade.
So open a CLI and simply type:
$ pear upgrade symfony/symfony-stable
With this release, you will benefit from the efforts made by the symfony developers during the past two months. Here is a quick changelog:
- calendar language files update (pl, zh, nl, no, it)
- new options for the
sfFillInFilter
filter - major
sfWebDebug
refactoring (no more dependency on prototype) - position option to stylesheets in
view.yml
- native support for JSON/AJAX actions
- better exception layout
- new
sfPropelUniqueValidator
validator - new component and partial cache
- updated creole and propel
- zend framework and ez components bridges
- new hooks in admin generator generated classes
- better date support in admin generator
- new project control panel for CLI replacement in development
- lot of small tweaks and enhancements in admin generator
- lot of bugs fixes and small enhancements
There are two warnings about the use of the 0.6.3:
If you use i18n Propel support in your
schema.xml
or if you have problems building you Propel model/sql (error thrown : "XML schema file (PATH/config/schema.xml) does not validate"), you can add apropel.schema.validate = false
at the end of yourconfig/propel.ini
file. This setting is by default for all new projects.Actions in the routing are now case sensitive. If you have a page with an action named
fooBar
, your action method must be named exactlyexecuteFooBar
.
For more details about the 121 tickets closed since 0.6.2, you can read the custom trac report or the weekly dev news in the wiki.
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
http://www.symfony-project.com/content/book/page/custom_helper.html
... While the settings are corrects in my php.ini :-?
Indeed, this is a vardump of the result of the parsing of my php.yml file (in ./util/sfYaml.class.php) :
array(2) {
["set"]=>
array(3) {
["magic_quotes_runtime"]=>
bool(false)
["log_errors"]=>
bool(true)
["arg_separator.output"]=>
string(6) "\&"
}
["check"]=>
array(3) {
["magic_quotes_gpc"]=>
bool(false)
["register_globals"]=>
bool(false)
["zend.ze1_compatibility_mode"]=>
bool(false)
}
}
which is :
set:
magic_quotes_runtime: off
log_errors: on
arg_separator.output: \&
check:
magic_quotes_gpc: off
register_globals: off
zend.ze1_compatibility_mode: off
... so the test in ./config/sfPhpConfigHandler.class.php compare booleans with... php.ini strings.
But maybe it's my config or I missed something...
what the??
Perhaps we could have additional setting in settings.yml to turn this feature on and off?