Skip to content

Commit 112091b

Browse files
authored
Merge pull request #2096 from greg0ire/3.0.x
Merge 2.18.x up into 3.0.x
2 parents b93edbc + c2e36d3 commit 112091b

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
lines changed

.doctrine-project.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,22 @@
1010
"slug": "latest",
1111
"upcoming": true
1212
},
13+
{
14+
"name": "2.18",
15+
"branchName": "2.18.x",
16+
"slug": "2.18",
17+
"upcoming": true
18+
},
1319
{
1420
"name": "2.17",
1521
"branchName": "2.17.x",
1622
"slug": "2.17",
17-
"upcoming": true
23+
"current": true
1824
},
1925
{
2026
"name": "2.16",
2127
"slug": "2.16",
22-
"current": true
28+
"maintained": false
2329
},
2430
{
2531
"name": "2.15",

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
php-version: "${{ matrix.php-version }}"
8989
coverage: "pcov"
90-
ini-values: "zend.assertions=1"
90+
ini-file: "development"
9191
extensions: "pdo_sqlite"
9292
tools: "flex"
9393

.github/workflows/test-dev-stability.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: "shivammathur/setup-php@v2"
3636
with:
3737
php-version: "${{ matrix.php-version }}"
38-
ini-values: "zend.assertions=1"
38+
ini-file: "development"
3939
extensions: "pdo_sqlite"
4040
tools: "flex"
4141

.symfony.bundle.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ branches:
1212
- "2.15.x"
1313
- "2.16.x"
1414
- "2.17.x"
15+
- "2.18.x"
1516
maintained_branches:
16-
- "2.16.x"
1717
- "2.17.x"
18+
- "2.18.x"
1819
doc_dir: "docs/en/"
19-
current_branch: "2.16.x"
20-
dev_branch: "2.17.x"
20+
current_branch: "2.17.x"
21+
dev_branch: "2.18.x"

UPGRADE-2.18.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
UPGRADE FROM 2.17 to 2.18
2+
=========================
3+
4+
DoctrineOrmMappingsPass
5+
-----------------------
6+
7+
### The `DoctrineOrmMappingsPass::createYamlMappingDriver()` method is deprecated
8+
9+
This method is deprecated with no replacement planned and will be removed in
10+
DoctrineBundle 3.0.
11+
12+
### The `DoctrineOrmMappingsPass::createAnnotationMappingDriver()` method is deprecated
13+
14+
This method is deprecated with no replacement planned and will be removed in
15+
DoctrineBundle 3.0.

0 commit comments

Comments
 (0)