Archives
Master Symfony2 fundamentals
Symfony hosting done right
Discover the SensioLabs Support
Blog
Symfony 2.0.16 released
by
Fabien Potencier
– July 11, 2012
– 10 comments
Symfony 2.0.16 has just been released.
This version mainly fixes the PEAR packages (again). Twig has been updated to 1.8.3 and Swiftmailer to 4.2.0.
The CHANGELOG has all the details about the changes and you can even have a look at the full diff.
Some changes has also been made in the autoloader. Have a look at the diff or just replace the autoloading code for Swiftmailer with the following line:
require __DIR__.'/../vendor/swiftmailer/lib/swift_required.php';
If you are starting a new project, you can get the Symfony Standard Edition distribution on the download page.
If you already have a project based on the Symfony Standard Edition 2.0.x, you can easily upgrade to 2.0.16 by getting the new deps and deps.lock files.
Then, run the vendors script (it also clears your cache):
$ ./bin/vendors install
Remember that the Symfony2 Components are also available as standalone libraries. You can get them via their dedicated read-only repositories on Github (https://github.com/symfony/Finder for instance) or install them via Composer.





is a trademark of Fabien Potencier. All rights reserved.
Add a Comment
Comments
Fatal error: Call to undefined method Assetic\Filter\CoffeeScriptFilter::setBare() in /app/cache/dev/appDevDebugProjectContainer.php on line 119
https://raw.github.com/symfony/symfony-standard/v2.0.16/deps.lock
The deps file has has twig 1.8.2 not 1.8.3
The deps file has symfony branch not the tag as version.
I think it was not your day fabien ;)
require __DIR__.'/../vendor/swiftmailer/lib/swift_required.php';
Then I hit the SwiftMailer bug (thanks for the tip on that).