Blog

symfony 0.6.3 released

« Back to the Blog

Categories

Archives

Creative Commons License This work is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License.
rss feed

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:

There are two warnings about the use of the 0.6.3:

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.


gravatar icon
#1 pierre said about 6 hours later

Is there andy documentation out there about the ZF/EZC bridges? I worked with this frameworks already, and I wanna see what this bridge can offer me.

gravatar icon
#2 François Zaninotto said about 17 hours later

Pierre: try the custom extensions chapter in the symfony book

http://www.symfony-project.com/content/book/page/custom_helper.html

gravatar icon
#3 Mohammad said about 22 hours later

WOW it's wonderful

gravatar icon
#4 NiKo said 2 days later

Well, I've just upgraded and now I got a strange message : "Configuration file "/usr/share/php/data/symfony/config/php.yml" specifies that php.ini "magic_quotes_gpc" key must be set to "". The current value is "1" (php.ini location: "/etc/php5/apache2/php.ini"). [err0001]"

... While the settings are corrects in my php.ini :-?

gravatar icon
#5 NiKo said 2 days later

The problem seem to be variable type misunderstanding while parsing php yaml conf files in this new version.

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...

gravatar icon
#6 daniel said 2 days later

all my ajax and rico has stopped working with the new update..

what the??

gravatar icon
#7 Peter said 21 days later

Quite bad that actions and routing are now case sensitive :(
Perhaps we could have additional setting in settings.yml to turn this feature on and off?