Skip to content

Commit 85d58c2

Browse files
committed
3.4.0
1 parent 535bdcb commit 85d58c2

File tree

3 files changed

+30
-27
lines changed

3 files changed

+30
-27
lines changed

Diff for: CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,20 @@ a release.
1919
---
2020

2121
## [Unreleased]
22+
23+
## [3.4.0] - 2021-12-05
2224
### Added
2325
- PHP 8 Attributes support for Doctrine MongoDB to document & traits.
2426
- Support for doctrine/dbal >=3.2.
2527
- Timestampable: Support to use annotations as attributes on PHP >= 8.0.
2628
- Loggable: Support to use annotations as attributes on PHP >= 8.0.
2729

28-
### Changes
29-
- Translatable: Dropped support for other values than "true", "false", "1" and "0" in the `fallback` attribute of the XML mapping.
30+
### Changed
31+
- Translatable: Dropped support for other values than "true", "false", "1" and "0" in the `fallback` attribute of the `translatable`
32+
element in the XML mapping.
3033
- Tree: Dropped support for other values than "true", "false", "1" and "0" in the `activate-locking` attribute of the `tree`
3134
element in the XML mapping.
32-
Tree: Dropped support for other values than "true", "false", "1" and "0" in the `append_id`, `starts_with_separator` and
35+
- Tree: Dropped support for other values than "true", "false", "1" and "0" in the `append_id`, `starts_with_separator` and
3336
`ends_with_separator` attributes of the `tree-path` element in the XML mapping.
3437
- Dropped support for doctrine/dbal < 2.13.1.
3538
- The third argument of `Gedmo\SoftDeleteable\Query\TreeWalker\Exec\MultiTableDeleteExecutor::__construct()` requires a `Doctrine\ORM\Mapping\ClassMetadata` instance.

Diff for: composer.json

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "gedmo/doctrine-extensions",
3-
"type": "library",
43
"description": "Doctrine2 behavioral extensions",
4+
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"behaviors",
78
"doctrine2",
@@ -17,8 +18,6 @@
1718
"blameable",
1819
"uploadable"
1920
],
20-
"homepage": "http://gediminasm.org/",
21-
"license": "MIT",
2221
"authors": [
2322
{
2423
"name": "Gediminas Morkevicius",
@@ -33,6 +32,11 @@
3332
"email": "[email protected]"
3433
}
3534
],
35+
"homepage": "http://gediminasm.org/",
36+
"support": {
37+
"email": "[email protected]",
38+
"wiki": "https://github.com/Atlantic18/DoctrineExtensions/tree/main/doc"
39+
},
3640
"require": {
3741
"php": "^7.2 || ^8.0",
3842
"behat/transliterator": "~1.2",
@@ -42,13 +46,6 @@
4246
"doctrine/event-manager": "^1.0",
4347
"doctrine/persistence": "^1.3.3 || ^2.0"
4448
},
45-
"conflict": {
46-
"doctrine/cache": "<1.11",
47-
"doctrine/dbal": "<2.13.1 || ^3.0 <3.2",
48-
"doctrine/mongodb-odm": "<2.0",
49-
"doctrine/orm": "<2.10.2",
50-
"sebastian/comparator": "<2.0"
51-
},
5249
"require-dev": {
5350
"doctrine/cache": "^1.11 || ^2.0",
5451
"doctrine/dbal": "^2.13.1 || ^3.2",
@@ -64,20 +61,18 @@
6461
"symfony/console": "^4.4 || ^5.3 || ^6.0",
6562
"symfony/yaml": "^4.4 || ^5.3 || ^6.0"
6663
},
64+
"conflict": {
65+
"doctrine/cache": "<1.11",
66+
"doctrine/dbal": "<2.13.1 || ^3.0 <3.2",
67+
"doctrine/mongodb-odm": "<2.0",
68+
"doctrine/orm": "<2.10.2",
69+
"sebastian/comparator": "<2.0"
70+
},
6771
"suggest": {
6872
"doctrine/mongodb-odm": "to use the extensions with the MongoDB ODM",
6973
"doctrine/orm": "to use the extensions with the ORM",
7074
"symfony/cache": "to cache parsed annotations"
7175
},
72-
"config": {
73-
"bin-dir": "bin",
74-
"sort-packages": true
75-
},
76-
"extra": {
77-
"branch-alias": {
78-
"dev-main": "3.4-dev"
79-
}
80-
},
8176
"autoload": {
8277
"psr-4": {
8378
"Gedmo\\": "src/"
@@ -88,11 +83,16 @@
8883
"Gedmo\\Tests\\": "tests/Gedmo/"
8984
}
9085
},
86+
"config": {
87+
"bin-dir": "bin",
88+
"sort-packages": true
89+
},
90+
"extra": {
91+
"branch-alias": {
92+
"dev-main": "3.5-dev"
93+
}
94+
},
9195
"scripts": {
9296
"fix-cs": "php-cs-fixer fix --config=.php-cs-fixer.dist.php"
93-
},
94-
"support": {
95-
"email": "[email protected]",
96-
"wiki": "https://github.com/Atlantic18/DoctrineExtensions/tree/main/doc"
9797
}
9898
}

Diff for: src/DoctrineExtensions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ final class DoctrineExtensions
3232
/**
3333
* Current version of extensions
3434
*/
35-
public const VERSION = '3.3.1';
35+
public const VERSION = '3.4.0';
3636

3737
/**
3838
* Hooks all extension metadata mapping drivers into

0 commit comments

Comments
 (0)