File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,10 @@ a release.
18
18
---
19
19
20
20
## [ Unreleased]
21
+
22
+ ## [ 3.14.0]
21
23
### Added
24
+ - Support for Symfony 7
22
25
- Tree: Added ` @template ` and ` @template-extends ` annotations to the Tree repositories
23
26
24
27
### Changed
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ final class DoctrineExtensions
29
29
/**
30
30
* Current version of extensions
31
31
*/
32
- public const VERSION = '3.13 .0 ' ;
32
+ public const VERSION = '3.14 .0 ' ;
33
33
34
34
/**
35
35
* Hooks all extension metadata mapping drivers into
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ public function getObjectManager()
97
97
}
98
98
99
99
@trigger_error (sprintf (
100
- 'Calling "%s()" on event args of class "%s" that does not implement "getObjectManager()" is deprecated since gedmo/doctrine-extensions 3.x '
100
+ 'Calling "%s()" on event args of class "%s" that does not implement "getObjectManager()" is deprecated since gedmo/doctrine-extensions 3.14 '
101
101
.' and will throw a "%s" error in version 4.0. ' ,
102
102
__METHOD__ ,
103
103
get_class ($ this ->args ),
@@ -121,7 +121,7 @@ public function getObject(): object
121
121
}
122
122
123
123
@trigger_error (sprintf (
124
- 'Calling "%s()" on event args of class "%s" that does not imeplement "getObject()" is deprecated since gedmo/doctrine-extensions 3.x '
124
+ 'Calling "%s()" on event args of class "%s" that does not imeplement "getObject()" is deprecated since gedmo/doctrine-extensions 3.14 '
125
125
.' and will throw a "%s" error in version 4.0. ' ,
126
126
__METHOD__ ,
127
127
get_class ($ this ->args ),
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public function getListener()
93
93
public function getEntityManager ()
94
94
{
95
95
@trigger_error (sprintf (
96
- '"%s()" is deprecated since gedmo/doctrine-extensions 3.x and will be removed in version 4.0. ' ,
96
+ '"%s()" is deprecated since gedmo/doctrine-extensions 3.14 and will be removed in version 4.0. ' ,
97
97
__METHOD__
98
98
), E_USER_DEPRECATED );
99
99
@@ -118,7 +118,7 @@ public function getObjectManager()
118
118
public function getEntity ()
119
119
{
120
120
@trigger_error (sprintf (
121
- '"%s()" is deprecated since gedmo/doctrine-extensions 3.x and will be removed in version 4.0. ' ,
121
+ '"%s()" is deprecated since gedmo/doctrine-extensions 3.14 and will be removed in version 4.0. ' ,
122
122
__METHOD__
123
123
), E_USER_DEPRECATED );
124
124
You can’t perform that action at this time.
0 commit comments