Skip to content

Commit eef4b49

Browse files
committed
3.12.0
1 parent 5ee410d commit eef4b49

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ a release.
1818
---
1919

2020
## [Unreleased]
21+
22+
## [3.12.0] - 2023-07-08
2123
### Added
2224
- Tree: `setSibling()` and `getSibling()` methods in the `Node` interface through the BC `@method` annotation
2325
- Tree: Support array of fields and directions in the `$sortByField` and `$direction` parameters at `AbstractTreeRepository::recover()`
24-
- Loggable: Support for composite identifiers.
26+
- Loggable: Support for composite identifiers
2527

2628
### Changed
2729
- Named arguments have precedence over the values passed in the `$data` array in annotation classes at `Gedmo\Mapping\Annotation\`
@@ -36,7 +38,7 @@ a release.
3638
### Deprecated
3739
- Tree: Not implementing `Node` interface in classes that are used as nodes
3840
- Implementing the `Gedmo\Tool\WrapperInterface::getIdentifier()` method without the second argument (`$flatten`) is deprecated and will
39-
be required in version 4.0.
41+
be required in version 4.0
4042

4143
## [3.11.1] - 2023-02-20
4244
### Fixed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
},
9595
"extra": {
9696
"branch-alias": {
97-
"dev-main": "3.12-dev"
97+
"dev-main": "3.13-dev"
9898
}
9999
},
100100
"scripts": {

src/DoctrineExtensions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class DoctrineExtensions
2828
/**
2929
* Current version of extensions
3030
*/
31-
public const VERSION = '3.11.0';
31+
public const VERSION = '3.12.0';
3232

3333
/**
3434
* Hooks all extension metadata mapping drivers into

src/Tree/Entity/Repository/NestedTreeRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function __call($method, $args)
8686
if (!$node instanceof Node) {
8787
@trigger_error(\sprintf(
8888
'Not implementing the "%s" interface from node "%s" is deprecated since gedmo/doctrine-extensions'
89-
.' 3.x and will throw a "%s" error in version 4.0.',
89+
.' 3.12 and will throw a "%s" error in version 4.0.',
9090
Node::class,
9191
\get_class($node),
9292
\TypeError::class

0 commit comments

Comments
 (0)