Skip to content

Commit

Permalink
3.10.0 (#615)
Browse files Browse the repository at this point in the history
* 3.10.0

* Update CHANGELOG.md

Co-authored-by: Javier Spagnoletti <[email protected]>

Co-authored-by: Javier Spagnoletti <[email protected]>
  • Loading branch information
VincentLanglet and phansys authored Jul 20, 2021
1 parent 7d0a175 commit 07cf526
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [3.10.0](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/compare/3.9.0...3.10.0) - 2021-07-20
### Added
- [[#610](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/610)] `global_search` option to the `StringFilter` ([@VincentLanglet](https://github.com/VincentLanglet))

### Deprecated
- [[#599](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/599)] Deprecated `ProxyQuery::getSingleScalarResult()` method ([@franmomu](https://github.com/franmomu))

### Fixed
- [[#607](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/607)] Compatibility with SonataAdminBundle 3.x ([@dmaicher](https://github.com/dmaicher))
- [[#610](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/610)] Stop using `ChoiceTypeFilter` for global search ([@VincentLanglet](https://github.com/VincentLanglet))

## [3.9.0](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/compare/3.8.0...3.9.0) - 2021-05-19
### Added
- [[#589](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/589)] Added `IdFilter` to be able to filter by id in lists ([@franmomu](https://github.com/franmomu))
Expand Down
4 changes: 2 additions & 2 deletions UPGRADE-3.x.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
UPGRADE 3.x
===========

UPGRADE FROM 3.x to 3.x
=======================
UPGRADE FROM 3.9 to 3.10
========================

### Sonata\DoctrineMongoDBAdminBundle\Datagrid\ProxyQuery

Expand Down
4 changes: 2 additions & 2 deletions src/Datagrid/ProxyQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,12 @@ public function getSortOrder()
/**
* NEXT_MAJOR: Remove this method.
*
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x, to be removed in 4.0.
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.10, to be removed in 4.0.
*/
public function getSingleScalarResult()
{
@trigger_error(sprintf(
'The method "%s()" is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x'
'The method "%s()" is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.10'
.' and will be removed in version 4.0.',
__METHOD__
), \E_USER_DEPRECATED);
Expand Down

0 comments on commit 07cf526

Please sign in to comment.