Skip to content

Commit 794cb9e

Browse files
authored
Merge pull request #1802 from jifer/typed-field-mapper-option
2 parents 4bb9f20 + 7bbff25 commit 794cb9e

31 files changed

+155
-53
lines changed

.doctrine-project.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,22 @@
44
"slug": "doctrine-bundle",
55
"versions": [
66
{
7-
"name": "2.12",
8-
"branchName": "2.12.x",
7+
"name": "2.13",
8+
"branchName": "2.13.x",
99
"slug": "latest",
1010
"upcoming": true
1111
},
12+
{
13+
"name": "2.12",
14+
"branchName": "2.12.x",
15+
"slug": "2.12",
16+
"current": true
17+
},
1218
{
1319
"name": "2.11",
1420
"branchName": "2.11.x",
1521
"slug": "2.11",
16-
"current": true
22+
"maintained": false
1723
},
1824
{
1925
"name": "2.10",

.gitattributes

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
phpunit.xml.dist export-ignore
66
phpcs.xml.dist export-ignore
77
psalm.xml.dist export-ignore
8-
/Resources/doc export-ignore
9-
/Tests export-ignore
8+
/docs export-ignore
9+
/tests export-ignore
10+
.symfony.bundle.yaml export-ignore

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
labels:
8+
- "CI"

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ on:
1212
jobs:
1313
coding-standards:
1414
name: "Coding Standards"
15-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@3.1.0"
15+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.0.1"
1616
with:
1717
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
@@ -15,4 +15,4 @@ on:
1515
jobs:
1616
composer-lint:
1717
name: "Composer Lint"
18-
uses: "doctrine/.github/.github/workflows/composer-lint.yml@3.1.0"
18+
uses: "doctrine/.github/.github/workflows/composer-lint.yml@5.0.1"

.github/workflows/continuous-integration.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
- "7.4"
2525
- "8.0"
2626
- "8.1"
27+
- "8.2"
2728
dependencies:
2829
- "highest"
2930
stability:
@@ -46,22 +47,22 @@ jobs:
4647
# Test last supported minor version
4748
- symfony-require: "6.*"
4849
dependencies: "highest"
49-
php-version: "8.2"
50+
php-version: "8.3"
5051

5152
# DBAL only without ORM
52-
- php-version: "8.2"
53+
- php-version: "8.3"
5354
dependencies: "highest"
5455
stability: "stable"
5556
remove-orm: true
5657

5758
# DBAL 4
58-
- php-version: "8.2"
59+
- php-version: "8.3"
5960
dependencies: "highest"
6061
stability: "dev"
6162
remove-orm: true
6263

6364
# Bleeding edge
64-
- php-version: "8.2"
65+
- php-version: "8.3"
6566
dependencies: "highest"
6667
stability: "dev"
6768

@@ -93,7 +94,7 @@ jobs:
9394
if: "${{ matrix.remove-orm }}"
9495

9596
- name: "Install dependencies with Composer"
96-
uses: "ramsey/composer-install@v2"
97+
uses: "ramsey/composer-install@v3"
9798
with:
9899
dependency-versions: "${{ matrix.dependencies }}"
99100
composer-options: "--prefer-dist"
@@ -102,7 +103,7 @@ jobs:
102103
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
103104

104105
- name: "Upload coverage file"
105-
uses: "actions/upload-artifact@v3"
106+
uses: "actions/upload-artifact@v4"
106107
with:
107108
name: "phpunit-${{ matrix.php-version }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage"
108109
path: "coverage.xml"
@@ -120,11 +121,13 @@ jobs:
120121
fetch-depth: 2
121122

122123
- name: "Download coverage files"
123-
uses: "actions/download-artifact@v3"
124+
uses: "actions/download-artifact@v4"
124125
with:
125126
path: "reports"
126127

127128
- name: "Upload to Codecov"
128-
uses: "codecov/codecov-action@v3"
129+
uses: "codecov/codecov-action@v4"
129130
with:
130131
directory: reports
132+
env:
133+
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"

.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@3.1.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@5.0.1"
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
@@ -28,7 +28,7 @@ jobs:
2828
run: "composer config minimum-stability stable"
2929

3030
- name: "Install dependencies with Composer"
31-
uses: "ramsey/composer-install@v2"
31+
uses: "ramsey/composer-install@v3"
3232

3333
- name: "Run a static analysis with vimeo/psalm"
3434
run: "vendor/bin/psalm --show-info=false --stats --output-format=github --find-unused-psalm-suppress"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
if: "${{ startsWith(matrix.symfony-require, '4.') }}"
4545

4646
- name: "Install dependencies with Composer"
47-
uses: "ramsey/composer-install@v2"
47+
uses: "ramsey/composer-install@v3"
4848
with:
4949
dependency-versions: "${{ matrix.dependencies }}"
5050
composer-options: "--prefer-dist"

.symfony.bundle.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ branches:
77
- "2.10.x"
88
- "2.11.x"
99
- "2.12.x"
10+
- "2.13.x"
1011
maintained_branches:
11-
- "2.11.x"
1212
- "2.12.x"
13-
doc_dir: { "2.11.x": "Resources/doc/", "2.12.x": "docs/" }
14-
current_branch: "2.11.x"
15-
dev_branch: "2.12.x"
13+
- "2.13.x"
14+
doc_dir: "docs/"
15+
current_branch: "2.12.x"
16+
dev_branch: "2.13.x"

0 commit comments

Comments
 (0)