This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/CHANGELOG-2.1.md

93 lines
2.9 KiB
Markdown
Raw Normal View History

2011-08-26 16:45:40 +01:00
CHANGELOG for 2.1.x
===================
This changelog references the relevant changes (bug and security fixes) done
in 2.1 minor versions.
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v2.1.0...v2.1.1
2.1.0
-----
2011-08-26 16:45:40 +01:00
2011-10-07 13:12:01 +01:00
### DoctrineBrige
2011-10-07 15:14:09 +01:00
* Added a session storage for Doctrine DBAL
2011-10-07 13:12:01 +01:00
2011-09-22 07:04:24 +01:00
### DoctrineBundle
* The `em` option for the `UniqueEntity` constraint is now optional (and should probably not be used anymore).
2011-09-14 08:06:29 +01:00
### FrameworkBundle
2011-09-30 05:58:54 +01:00
* added kernel.event_subscriber tag
2011-09-28 16:40:20 +01:00
* added a way to create relative symlinks when running assets:install command (--relative option)
2011-09-28 08:17:08 +01:00
* added Controller::getUser()
2011-09-19 17:03:40 +01:00
* [BC BREAK] assets_base_urls and base_urls merging strategy has changed
2011-09-16 17:49:11 +01:00
* changed the default profiler storage to use the filesystem instead of SQLite
* added support for placeholders in route defaults and requirements (replaced by the value set in the service container)
2011-09-14 08:06:29 +01:00
2011-09-22 08:44:58 +01:00
### SecurityBundle
* added a validator for the user password
2011-09-22 07:28:07 +01:00
### WebProfilerBundle
* The toolbar position can now be configured via the `position` option (can be `top` or `bottom`)
2011-09-29 13:52:52 +01:00
### Console
* added support for the shell even if readline is not available
2011-08-29 14:38:12 +01:00
### ClassLoader
* added support for loading globally-installed PEAR packages
### DomCrawler
* added a way to get parsing errors for Crawler::addHtmlContent() and Crawler::addXmlContent() via libxml functions
* added support for submitting a form without a submit button
### Finder
2011-08-29 13:45:37 +01:00
* Finder::exclude() now supports an array of directories as an argument
2011-08-29 13:45:37 +01:00
2011-09-24 14:29:19 +01:00
### Form
2011-09-27 09:12:54 +01:00
* added Form::getErrorsAsString() to help debugging forms
2011-09-24 14:29:19 +01:00
* allowed setting different options for RepeatedType fields (like the label)
### HttpFoundation
2011-08-29 13:45:37 +01:00
2011-09-28 07:18:50 +01:00
* added a generic access to the PHP built-in filter mechanism: ParameterBag::filter()
* made FileBinaryMimeTypeGuesser command configurable
2011-09-13 07:48:32 +01:00
* added Request::getUser() and Request::getPassword()
* added support for the PATCH method in Request
* removed the ContentTypeMimeTypeGuesser class as it is deprecated and never used on PHP 5.3
* added ResponseHeaderBag::makeDisposition() (implements RFC 6266)
2011-09-06 07:59:53 +01:00
* made mimetype to extension conversion configurable
2011-08-29 13:45:37 +01:00
2011-09-06 06:47:18 +01:00
### HttpKernel
* added a File-based profiler storage
2011-09-06 06:54:13 +01:00
* added a MongoDB-based profiler storage
2011-09-06 06:47:18 +01:00
### Routing
* added RouterInterface::getRouteCollection
### Translation
2011-08-29 13:45:37 +01:00
* added support for more than one fallback locale
2011-09-13 07:49:25 +01:00
* added support for translations in ResourceBundles
2011-09-13 07:46:58 +01:00
* added support for extracting translation messages from templates (Twig and PHP)
* added dumpers for translation catalogs
2011-09-06 07:02:25 +01:00
* added support for QT translations
2011-09-02 08:25:13 +01:00
### Validator
2011-09-29 14:56:37 +01:00
* added a Size validator
* added a SizeLength validator
2011-09-06 07:19:05 +01:00
* improved the ImageValidator with min width, max width, min height, and max height constraints
2011-09-02 08:25:13 +01:00
* added support for MIME with wildcard in FileValidator