Skip to content

Commit 32f9c61

Browse files
3.6 (#498)
1 parent eaf0a0d commit 32f9c61

File tree

4 files changed

+45
-21
lines changed

4 files changed

+45
-21
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [3.6.0](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/compare/3.5.0...3.6.0) - 2021-01-04
6+
### Added
7+
- [[#486](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/486)] Added `DataSource` to provide a `DataSourceInterface` implementation. ([@franmomu](https://github.com/franmomu))
8+
9+
### Deprecated
10+
- [[#492](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/492)] Deprecated `ModelManager::getMetadata()` method. ([@franmomu](https://github.com/franmomu))
11+
- [[#492](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/492)] Deprecated `ModelManager::hasMetadata()` method. ([@franmomu](https://github.com/franmomu))
12+
- [[#486](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/486)] Deprecated `ModelManager::getDataSourceIterator()`. ([@franmomu](https://github.com/franmomu))
13+
- [[#473](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/473)] Deprecated `ModelManager::getModelIdentifier()`. ([@franmomu](https://github.com/franmomu))
14+
- [[#473](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/473)] Deprecated `ModelManager::getDefaultSortValues()`. ([@franmomu](https://github.com/franmomu))
15+
- [[#473](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/473)] Deprecated `ModelManager::getDefaultPerPageOptions()`. ([@franmomu](https://github.com/franmomu))
16+
- [[#473](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/473)] Deprecated `ModelManager::modelTransform()`. ([@franmomu](https://github.com/franmomu))
17+
- [[#451](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/451)] Deprecated passing `null` as argument 2 for `ModelManager::find()`; ([@franmomu](https://github.com/franmomu))
18+
- [[#451](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/451)] Deprecated passing `null` as argument 1 for `ModelManager::getNormalizedIdentifier()`; ([@franmomu](https://github.com/franmomu))
19+
- [[#451](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/451)] Deprecated passing other type than `object` as argument 1 for `ModelManager::getUrlSafeIdentifier()`; ([@franmomu](https://github.com/franmomu))
20+
21+
### Fixed
22+
- [[#497](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/497)] Fixed calling to deprecated `Pager::setCountColumn()` method. ([@franmomu](https://github.com/franmomu))
23+
- [[#479](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/479)] Fixed calling to `AdminInterface::id` without an object. ([@franmomu](https://github.com/franmomu))
24+
- [[#463](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/463)] `FormContractor::getDefaultOptions()` passes `collection_by_reference` option instead of `by_reference` to `AdminType` in order to respect the new API ([@VincentLanglet](https://github.com/VincentLanglet))
25+
- [[#470](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/470)] Fixed returning an array of identifiers in `ModelManager::getIdentifierFieldNames`. ([@franmomu](https://github.com/franmomu))
26+
- [[#468](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/468)] Fixed the return type of `TypeGuesser::guessType`, it must return `null` or `TypeGuess`. ([@franmomu](https://github.com/franmomu))
27+
- [[#459](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/459)] Fixed deprecation constructing `FieldDescription` without arguments. ([@franmomu](https://github.com/franmomu))
28+
529
## [3.5.0](sonata-project/SonataDoctrineMongoDBAdminBundle/compare/3.4.0...3.5.0) - 2020-10-09
630
### Added
731
- [[#438](https://github.com/sonata-project/SonataDoctrineMongoDBAdminBundle/pull/438)] `FormContractor::getDefaultOptions()` pass `by_reference` from `CollectionType` to `AdminType` ([@VincentLanglet](https://github.com/VincentLanglet))

UPGRADE-3.x.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
UPGRADE 3.x
22
===========
33

4-
UPGRADE FROM 3.x to 3.x
4+
UPGRADE FROM 3.5 to 3.6
55
=======================
66

77
### Sonata\DoctrineMongoDBAdminBundle\Guesser\TypeGuesser

src/Model/ModelManager.php

+16-16
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function __construct(ManagerRegistry $registry, ?PropertyAccessorInterfac
7272
/**
7373
* NEXT_MAJOR: Change visibility to private.
7474
*
75-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be private in version 4.0
75+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be private in version 4.0
7676
*
7777
* @param string $class
7878
*
@@ -83,7 +83,7 @@ public function getMetadata($class)
8383
// Remove this block.
8484
if ('sonata_deprecation_mute' !== (\func_get_args()[1] ?? null)) {
8585
@trigger_error(sprintf(
86-
'The "%s()" method is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and'
86+
'The "%s()" method is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and'
8787
.' will be removed in version 4.0.',
8888
__METHOD__
8989
), E_USER_DEPRECATED);
@@ -129,15 +129,15 @@ public function getParentMetadataForProperty($baseClass, $propertyFullName)
129129
/**
130130
* NEXT_MAJOR: Remove this method.
131131
*
132-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0
132+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0
133133
*
134134
* @return bool
135135
*/
136136
public function hasMetadata($class)
137137
{
138138
if ('sonata_deprecation_mute' !== (\func_get_args()[1] ?? null)) {
139139
@trigger_error(sprintf(
140-
'The "%s()" method is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and'
140+
'The "%s()" method is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and'
141141
.' will be removed in version 4.0.',
142142
__METHOD__
143143
), E_USER_DEPRECATED);
@@ -206,7 +206,7 @@ public function find($class, $id)
206206
if (null === $id) {
207207
@trigger_error(sprintf(
208208
'Passing null as argument 1 for %s() is deprecated since'
209-
.' sonata-project/doctrine-mongodb-admin-bundle 3.x and will be not allowed in version 4.0.',
209+
.' sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be not allowed in version 4.0.',
210210
__METHOD__
211211
), E_USER_DEPRECATED);
212212

@@ -330,14 +330,14 @@ public function executeQuery($query)
330330
/**
331331
* NEXT_MAJOR: Remove this method.
332332
*
333-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.
333+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.
334334
*
335335
* @psalm-suppress NullableReturnStatement
336336
*/
337337
public function getModelIdentifier($class)
338338
{
339339
@trigger_error(sprintf(
340-
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.',
340+
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.',
341341
__METHOD__
342342
), E_USER_DEPRECATED);
343343

@@ -361,7 +361,7 @@ public function getNormalizedIdentifier($document)
361361
if (null === $document) {
362362
@trigger_error(sprintf(
363363
'Passing null as argument 1 for %s() is deprecated since'
364-
.' sonata-project/doctrine-mongodb-admin-bundle 3.x and will be not allowed in version 4.0.',
364+
.' sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be not allowed in version 4.0.',
365365
__METHOD__
366366
), E_USER_DEPRECATED);
367367

@@ -388,7 +388,7 @@ public function getUrlSafeIdentifier($document)
388388
if (!\is_object($document)) {
389389
@trigger_error(sprintf(
390390
'Passing other type than object for argument 1 for %s() is deprecated since'
391-
.' sonata-project/doctrine-mongodb-admin-bundle 3.x and will be not allowed in version 4.0.',
391+
.' sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be not allowed in version 4.0.',
392392
__METHOD__
393393
), E_USER_DEPRECATED);
394394

@@ -434,7 +434,7 @@ public function batchDelete($class, ProxyQueryInterface $query)
434434
/**
435435
* NEXT_MAJOR: Remove this method.
436436
*
437-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.
437+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.
438438
*/
439439
public function getDataSourceIterator(DatagridInterface $datagrid, array $fields, $firstResult = null, $maxResult = null)
440440
{
@@ -528,12 +528,12 @@ public function getPaginationParameters(DatagridInterface $datagrid, $page)
528528
/**
529529
* NEXT_MAJOR: Remove this method.
530530
*
531-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.
531+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.
532532
*/
533533
public function getDefaultSortValues($class)
534534
{
535535
@trigger_error(sprintf(
536-
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.',
536+
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.',
537537
__METHOD__
538538
), E_USER_DEPRECATED);
539539

@@ -548,12 +548,12 @@ public function getDefaultSortValues($class)
548548
/**
549549
* NEXT_MAJOR: Remove this method.
550550
*
551-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.
551+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.
552552
*/
553553
public function getDefaultPerPageOptions(string $class): array
554554
{
555555
@trigger_error(sprintf(
556-
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.',
556+
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.',
557557
__METHOD__
558558
), E_USER_DEPRECATED);
559559

@@ -563,12 +563,12 @@ public function getDefaultPerPageOptions(string $class): array
563563
/**
564564
* NEXT_MAJOR: Remove this method.
565565
*
566-
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.
566+
* @deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.
567567
*/
568568
public function modelTransform($class, $instance)
569569
{
570570
@trigger_error(sprintf(
571-
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.',
571+
'Method %s() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.',
572572
__METHOD__
573573
), E_USER_DEPRECATED);
574574

tests/Model/ModelManagerTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public function testGetNormalizedIdentifierNull(): void
125125
$manager = new ModelManager($this->registry, $this->propertyAccessor);
126126

127127
$this->expectDeprecation(
128-
'Passing null as argument 1 for Sonata\DoctrineMongoDBAdminBundle\Model\ModelManager::getNormalizedIdentifier() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be not allowed in version 4.0.'
128+
'Passing null as argument 1 for Sonata\DoctrineMongoDBAdminBundle\Model\ModelManager::getNormalizedIdentifier() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be not allowed in version 4.0.'
129129
);
130130

131131
$this->assertNull($manager->getNormalizedIdentifier(null));
@@ -318,7 +318,7 @@ public function testModelTransform(): void
318318
$instance = new \stdClass();
319319

320320
$this->expectDeprecation(sprintf(
321-
'Method %s::modelTransform() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be removed in version 4.0.',
321+
'Method %s::modelTransform() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be removed in version 4.0.',
322322
ModelManager::class
323323
));
324324

@@ -380,7 +380,7 @@ public function testFindBadId(): void
380380
$model = new ModelManager($this->registry, $this->propertyAccessor);
381381

382382
$this->expectDeprecation(
383-
'Passing null as argument 1 for Sonata\DoctrineMongoDBAdminBundle\Model\ModelManager::find() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be not allowed in version 4.0.'
383+
'Passing null as argument 1 for Sonata\DoctrineMongoDBAdminBundle\Model\ModelManager::find() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be not allowed in version 4.0.'
384384
);
385385

386386
$this->assertNull($model->find('notImportant', null));
@@ -405,7 +405,7 @@ public function testGetUrlSafeIdentifierNull(): void
405405
$model = new ModelManager($this->registry, $this->propertyAccessor);
406406

407407
$this->expectDeprecation(
408-
'Passing null as argument 1 for Sonata\DoctrineMongoDBAdminBundle\Model\ModelManager::getNormalizedIdentifier() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.x and will be not allowed in version 4.0.'
408+
'Passing null as argument 1 for Sonata\DoctrineMongoDBAdminBundle\Model\ModelManager::getNormalizedIdentifier() is deprecated since sonata-project/doctrine-mongodb-admin-bundle 3.6 and will be not allowed in version 4.0.'
409409
);
410410

411411
$this->assertNull($model->getNormalizedIdentifier(null));

0 commit comments

Comments
 (0)