Skip to content

Commit ccc9827

Browse files
authored
Merge pull request #548 from doctrine/2.1.x-merge-up-into-3.0.x_hs9SiMUT
Merge release 2.1.0 into 3.0.x
2 parents eddc4c3 + f161e20 commit ccc9827

18 files changed

+497
-50
lines changed

.doctrine-project.json

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,34 @@
55
"docsSlug": "doctrine-data-fixtures",
66
"versions": [
77
{
8-
"name": "2.0",
9-
"branchName": "2.0.x",
8+
"name": "3.0",
9+
"branchName": "3.0.x",
1010
"slug": "latest",
1111
"upcoming": true
1212
},
13+
{
14+
"name": "2.1",
15+
"branchName": "2.1.x",
16+
"slug": "2.1",
17+
"upcoming": true
18+
},
19+
{
20+
"name": "2.0",
21+
"branchName": "2.0.x",
22+
"slug": "2.0",
23+
"current": true
24+
},
1325
{
1426
"name": "1.8",
1527
"branchName": "1.8.x",
1628
"slug": "1.8",
17-
"upcoming": true
29+
"maintained": true
1830
},
1931
{
2032
"name": "1.7",
2133
"branchName": "1.7.x",
2234
"slug": "1.7",
23-
"current": true
35+
"maintained": false
2436
},
2537
{
2638
"name": "1.6",

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "composer"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "11:00"
8+
open-pull-requests-limit: 10
9+
labels:
10+
- "Dependencies"
11+
versioning-strategy: "increase-if-necessary"
12+
target-branch: "1.8.x"
313
- package-ecosystem: "github-actions"
414
directory: "/"
515
schedule:
616
interval: "weekly"
717
labels:
818
- "CI"
19+
target-branch: "1.8.x"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
coding-standards:
1313
name: "Coding Standards"
14-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.2.0"
14+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@7.3.0"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- "8.1"
2929
- "8.2"
3030
- "8.3"
31+
- "8.4"
3132
dependencies:
3233
- "highest"
3334
stability:
@@ -36,9 +37,6 @@ jobs:
3637
- php-version: "8.1"
3738
dependencies: "lowest"
3839
stability: "stable"
39-
- php-version: "8.3"
40-
dependencies: "highest"
41-
stability: "dev"
4240

4341
steps:
4442
- name: "Checkout"
@@ -91,7 +89,7 @@ jobs:
9189
path: "reports"
9290

9391
- name: "Upload to Codecov"
94-
uses: "codecov/codecov-action@v4"
92+
uses: "codecov/codecov-action@v5"
9593
with:
9694
directory: "reports"
9795
env:

.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@5.2.0"
20+
uses: "doctrine/.github/.github/workflows/documentation.yml@7.3.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@5.2.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@7.3.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
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
static-analysis:
1313
name: "Static Analysis"
14-
uses: "doctrine/.github/.github/workflows/phpstan.yml@5.2.0"
14+
uses: "doctrine/.github/.github/workflows/phpstan.yml@7.3.0"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
name: "Website config validation"
3+
4+
on:
5+
pull_request:
6+
branches:
7+
- "*.x"
8+
paths:
9+
- ".doctrine-project.json"
10+
- ".github/workflows/website-schema.yml"
11+
push:
12+
branches:
13+
- "*.x"
14+
paths:
15+
- ".doctrine-project.json"
16+
- ".github/workflows/website-schema.yml"
17+
18+
jobs:
19+
json-validate:
20+
name: "Validate JSON schema"
21+
uses: "doctrine/.github/.github/workflows/website-schema.yml@7.1.0"

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"require": {
1717
"php": "^8.1",
18-
"doctrine/persistence": "^3.1",
18+
"doctrine/persistence": "^3.1 || ^4.0",
1919
"psr/log": "^1.1 || ^2 || ^3"
2020
},
2121
"conflict": {
@@ -25,13 +25,13 @@
2525
},
2626
"require-dev": {
2727
"ext-sqlite3": "*",
28-
"doctrine/coding-standard": "^12",
28+
"doctrine/coding-standard": "^13",
2929
"doctrine/dbal": "^3.5 || ^4",
3030
"doctrine/mongodb-odm": "^1.3.0 || ^2.0.0",
3131
"doctrine/orm": "^2.14 || ^3",
3232
"fig/log-test": "^1",
33-
"phpstan/phpstan": "^1.10",
34-
"phpunit/phpunit": "^10.5.3",
33+
"phpstan/phpstan": "2.1.17",
34+
"phpunit/phpunit": "10.5.45",
3535
"symfony/cache": "^6.4 || ^7",
3636
"symfony/var-exporter": "^6.4 || ^7"
3737
},

0 commit comments

Comments
 (0)