Skip to content

Commit

Permalink
3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phansys committed Sep 6, 2023
1 parent 2bd2690 commit 291d0c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ a release.
---

## [Unreleased]

## [3.13.0]
### Fixed
- References: fixed condition in `XML` Driver that did not allow to retrieve from the entity definition the `mappedBy` and `inversedBy` fields.
- Fix bug collecting metadata for inherited mapped classes
Expand Down
2 changes: 1 addition & 1 deletion src/DoctrineExtensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class DoctrineExtensions
/**
* Current version of extensions
*/
public const VERSION = '3.12.0';
public const VERSION = '3.13.0';

/**
* Hooks all extension metadata mapping drivers into
Expand Down
2 changes: 1 addition & 1 deletion src/Tree/Entity/Repository/NestedTreeRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function __call($method, $args)
if (!$node instanceof Node) {
@trigger_error(\sprintf(
'Not implementing the "%s" interface from node "%s" is deprecated since gedmo/doctrine-extensions'
.' 3.12 and will throw a "%s" error in version 4.0.',
.' 3.13 and will throw a "%s" error in version 4.0.',

Check warning on line 89 in src/Tree/Entity/Repository/NestedTreeRepository.php

View check run for this annotation

Codecov / codecov/patch

src/Tree/Entity/Repository/NestedTreeRepository.php#L89

Added line #L89 was not covered by tests
Node::class,
\get_class($node),
\TypeError::class
Expand Down

0 comments on commit 291d0c5

Please sign in to comment.