FOSElasticaBundle/CHANGELOG-3.1.md

28 lines
1.3 KiB
Markdown
Raw Normal View History

2014-11-10 14:05:56 +01:00
CHANGELOG for 3.1.x
===================
This changelog references the relevant changes (bug and security fixes) done
in 3.1 versions.
To get the diff for a specific change, go to
https://github.com/FriendsOfSymfony/FOSElasticaBundle/commit/XXX where XXX is
the commit hash. To get the diff between two versions, go to
https://github.com/FriendsOfSymfony/FOSElasticaBundle/compare/v3.0.4...v3.1.0
2015-01-04 10:16:32 +01:00
* 3.1.0 (Unreleased)
2015-01-04 10:16:32 +01:00
* BC BREAK: `Doctrine\Listener#scheduleForDeletion` access changed to private.
* BC BREAK: `ObjectPersisterInterface` gains the method `handlesObject` that
returns a boolean value if it will handle a given object or not.
* BC BREAK: Removed `Doctrine\Listener#getSubscribedEvents`. The container
2015-01-04 10:16:32 +01:00
configuration now configures tags with the methods to call to avoid loading
2015-01-04 12:02:54 +01:00
this class on every request where doctrine is active. #729
* Added ability to configure `date_detection`, `numeric_detection` and
2015-01-04 12:02:54 +01:00
`dynamic_date_formats` for types. #753
* New event `POST_TRANSFORM` which allows developers to add custom properties to
Elastica Documents for indexing.
* When available, the `fos:elastica:populate` command will now use the
ProgressBar helper instead of outputting strings. You can use verbosity
controls on the command to output additional information like memory
usage, runtime and estimated time.