|
2 | 2 | All notable changes to this project will be documented in this file.
|
3 | 3 | This project adheres to [Semantic Versioning](http://semver.org/).
|
4 | 4 |
|
| 5 | +## [3.8.0](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/compare/3.7.0...3.8.0) - 2021-04-06 |
| 6 | +### Added |
| 7 | +- [[#553](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/553)] Added `Sonata\DoctrineMongoDBAdminBundle\FieldDescription\FieldDescription` class ([@franmomu](https://github.com/franmomu)) |
| 8 | +- [[#553](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/553)] Added `Sonata\DoctrineMongoDBAdminBundle\FieldDescription\TypeGuesser` class ([@franmomu](https://github.com/franmomu)) |
| 9 | +- [[#553](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/553)] Added `Sonata\DoctrineMongoDBAdminBundle\FieldDescription\FilterTypeGuesser` class ([@franmomu](https://github.com/franmomu)) |
| 10 | +- [[#554](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/554)] Added support for sorting embbeded fields in lists ([@franmomu](https://github.com/franmomu)) |
| 11 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Added `FieldDescriptionFactory` class to create FieldDescription instances ([@franmomu](https://github.com/franmomu)) |
| 12 | +- [[#548](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/548)] Added `ModelManager::reverseTransform()` method ([@franmomu](https://github.com/franmomu)) |
| 13 | +- [[#528](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/528)] Added some `ProxyQueryInterface` to use it as a type declaration ([@franmomu](https://github.com/franmomu)) |
| 14 | +- [[#526](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/526)] Support for PHP 8.x ([@franmomu](https://github.com/franmomu)) |
| 15 | + |
| 16 | +### Deprecated |
| 17 | +- [[#558](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/558)] Deprecated `ModelManager::getModelInstance()` method ([@franmomu](https://github.com/franmomu)) |
| 18 | +- [[#558](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/558)] Deprecated not passing an instance of `ProxyQueryInterface` to `ModelManager::addIdentifiersToQuery()` method ([@franmomu](https://github.com/franmomu)) |
| 19 | +- [[#558](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/558)] Deprecated not passing an instance of `ProxyQueryInterface` to `ModelManager::batchDelete()` method ([@franmomu](https://github.com/franmomu)) |
| 20 | +- [[#553](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/553)] Deprecated `Sonata\DoctrineMongoDBAdminBundle\Admin\FieldDescription` class ([@franmomu](https://github.com/franmomu)) |
| 21 | +- [[#553](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/553)] Deprecated `Sonata\DoctrineMongoDBAdminBundle\Guesser\TypeGuesser` class ([@franmomu](https://github.com/franmomu)) |
| 22 | +- [[#553](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/553)] Deprecated `Sonata\DoctrineMongoDBAdminBundle\Guesser\FilterTypeGuesser` class ([@franmomu](https://github.com/franmomu)) |
| 23 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Deprecated `ModelManager::getParentMetadataForProperty()` method ([@franmomu](https://github.com/franmomu)) |
| 24 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Deprecated `ModelManager::getNewFieldDescriptionInstance()` method ([@franmomu](https://github.com/franmomu)) |
| 25 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Deprecated `AbstractTypeGuesser` class ([@franmomu](https://github.com/franmomu)) |
| 26 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Deprecated `FilterTypeGuesser::guessType()` method ([@franmomu](https://github.com/franmomu)) |
| 27 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Deprecated `TypeGuesser::guessType()` method ([@franmomu](https://github.com/franmomu)) |
| 28 | +- [[#531](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/531)] Deprecated `ListBuilder::buildActionFieldDescription()` method ([@franmomu](https://github.com/franmomu)) |
| 29 | +- [[#548](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/548)] Deprecated `ModelManager::modelReverseTransform()` method ([@franmomu](https://github.com/franmomu)) |
| 30 | +- [[#528](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/528)] Deprecated calling `Filter::apply()` with an instance not implementing `ProxyQueryInterface` ([@franmomu](https://github.com/franmomu)) |
| 31 | + |
| 32 | +### Fixed |
| 33 | +- [[#549](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/549)] Missing argument 2 in calls to `trigger_error()` ([@franmomu](https://github.com/franmomu)) |
| 34 | + |
5 | 35 | ## [3.7.0](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/compare/3.6.0...3.7.0) - 2021-01-27
|
6 | 36 | ### Added
|
7 | 37 | - [[#509](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/509)] Added implementation of `Pager::getCurrentPageResults()` method. ([@franmomu](https://github.com/franmomu))
|
|
0 commit comments