Skip to content

Commit 759a246

Browse files
authored
Merge pull request #2143 from doctrine/3.1.x-merge-up-into-4.0.x_SNGUD4R1
Merge release 3.1.0 into 4.0.x
2 parents 0364d87 + 24417f4 commit 759a246

26 files changed

+107
-51
lines changed

.doctrine-project.json

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,40 @@
55
"slug": "doctrine-bundle",
66
"versions": [
77
{
8-
"name": "3.0",
9-
"branchName": "3.0.x",
8+
"name": "4.0",
9+
"branchName": "4.0.x",
1010
"slug": "latest",
1111
"upcoming": true
1212
},
13+
{
14+
"name": "3.1",
15+
"branchName": "3.1.x",
16+
"slug": "3.1",
17+
"upcoming": true
18+
},
19+
{
20+
"name": "3.0",
21+
"branchName": "3.0.x",
22+
"slug": "3.0",
23+
"current": true
24+
},
25+
{
26+
"name": "2.19",
27+
"branchName": "2.19.x",
28+
"slug": "2.19",
29+
"maintained": true
30+
},
1331
{
1432
"name": "2.18",
1533
"branchName": "2.18.x",
1634
"slug": "2.18",
17-
"upcoming": true
35+
"maintained": true
1836
},
1937
{
2038
"name": "2.17",
2139
"branchName": "2.17.x",
2240
"slug": "2.17",
23-
"current": true
41+
"maintained": false
2442
},
2543
{
2644
"name": "2.16",

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ updates:
66
interval: "weekly"
77
labels:
88
- "CI"
9+
target-branch: "2.18.x"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ on:
2626
jobs:
2727
coding-standards:
2828
name: "Coding Standards"
29-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@8.0.0"
29+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@v12.2.0"
3030
with:
3131
composer-options: "--prefer-dist --prefer-stable"

.github/workflows/composer-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ on:
1717
jobs:
1818
composer-lint:
1919
name: "Composer Lint"
20-
uses: "doctrine/.github/.github/workflows/composer-lint.yml@8.0.0"
20+
uses: "doctrine/.github/.github/workflows/composer-lint.yml@v12.2.0"

.github/workflows/continuous-integration.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,21 @@ jobs:
5454
stability: "stable"
5555
php-version: "8.4"
5656

57-
# Test LTS
57+
# Test legacy LTS
5858
- symfony-require: "6.4.*"
5959
dependencies: "highest"
6060
php-version: "8.4"
6161

62+
# Test LTS
63+
- symfony-require: "7.4.*"
64+
dependencies: "highest"
65+
php-version: "8.4"
66+
67+
# Test non-LTS
68+
- symfony-require: "8.0.*"
69+
dependencies: "highest"
70+
php-version: "8.4"
71+
6272
# DBAL only without ORM
6373
- php-version: "8.4"
6474
dependencies: "highest"
@@ -113,7 +123,7 @@ jobs:
113123
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
114124

115125
- name: "Upload coverage file"
116-
uses: "actions/upload-artifact@v4"
126+
uses: "actions/upload-artifact@v5"
117127
with:
118128
name: "phpunit-${{ matrix.php-version }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage"
119129
path: "coverage.xml"
@@ -133,7 +143,7 @@ jobs:
133143
fetch-depth: 2
134144

135145
- name: "Download coverage files"
136-
uses: "actions/download-artifact@v5"
146+
uses: "actions/download-artifact@v6"
137147
with:
138148
path: "reports"
139149

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ on:
1717
jobs:
1818
documentation:
1919
name: "Documentation"
20-
uses: "doctrine/.github/.github/workflows/documentation.yml@8.0.0"
20+
uses: "doctrine/.github/.github/workflows/documentation.yml@v12.2.0"

.github/workflows/release-on-milestone-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: "Git tag, release & create merge-up PR"
11-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@8.0.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@v12.2.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ on:
2626
jobs:
2727
static-analysis:
2828
name: "Static Analysis"
29-
uses: "doctrine/.github/.github/workflows/phpstan.yml@8.0.0"
29+
uses: "doctrine/.github/.github/workflows/phpstan.yml@v12.2.0"

.github/workflows/website-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ on:
1818
jobs:
1919
json-validate:
2020
name: "Validate JSON schema"
21-
uses: "doctrine/.github/.github/workflows/website-schema.yml@8.0.0"
21+
uses: "doctrine/.github/.github/workflows/website-schema.yml@v12.2.0"

.symfony.bundle.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,16 @@ branches:
1313
- "2.16.x"
1414
- "2.17.x"
1515
- "2.18.x"
16+
- "2.19.x"
17+
- "3.0.x"
18+
- "3.1.x"
19+
- "4.0.x"
1620
maintained_branches:
17-
- "2.17.x"
1821
- "2.18.x"
22+
- "2.19.x"
23+
- "3.0.x"
24+
- "3.1.x"
25+
- "4.0.x"
1926
doc_dir: "docs/en/"
20-
current_branch: "2.17.x"
21-
dev_branch: "2.18.x"
27+
current_branch: "3.0.x"
28+
dev_branch: "3.1.x"

0 commit comments

Comments
 (0)