Skip to content

Commit 462a2da

Browse files
authored
Merge pull request #410 from doctrine/4.0.x
Merge 4.0.x up into 4.1.x
2 parents 45004ac + c5e3276 commit 462a2da

8 files changed

+26
-16
lines changed

.doctrine-project.json

+15-3
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,28 @@
55
"docsSlug": "doctrine-persistence",
66
"versions": [
77
{
8-
"name": "4.0",
9-
"branchName": "4.0.x",
8+
"name": "5.0",
9+
"branchName": "5.0.x",
1010
"slug": "latest",
1111
"upcoming": true
1212
},
13+
{
14+
"name": "4.1",
15+
"branchName": "4.1.x",
16+
"slug": "4.1",
17+
"upcoming": true
18+
},
19+
{
20+
"name": "4.0",
21+
"branchName": "4.0.x",
22+
"slug": "4.0",
23+
"current": true
24+
},
1325
{
1426
"name": "3.4",
1527
"branchName": "3.4.x",
1628
"slug": "3.4",
17-
"current": true
29+
"maintained": true
1830
},
1931
{
2032
"name": "3.3",

.github/dependabot.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ updates:
66
interval: "weekly"
77
labels:
88
- "CI"
9+
target-branch: "3.4.x"

.github/workflows/coding-standards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ on:
1212
jobs:
1313
coding-standards:
1414
name: "Coding Standards"
15-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.2.0"
15+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@7.1.0"

.github/workflows/continuous-integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
phpunit:
1414
name: "PHPUnit"
15-
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@5.2.0"
15+
uses: "doctrine/.github/.github/workflows/continuous-integration.yml@7.1.0"
1616
with:
1717
php-versions: '["8.1", "8.2", "8.3"]'
1818
secrets:

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

+1-1
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.1.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ on:
1212
jobs:
1313
static-analysis:
1414
name: "Static Analysis"
15-
uses: "doctrine/.github/.github/workflows/phpstan.yml@5.2.0"
15+
uses: "doctrine/.github/.github/workflows/phpstan.yml@7.1.0"

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Doctrine Persistence
22

3-
[![GitHub Actions][GA 3.4 image]][GA 3.4]
4-
[![Code Coverage][Coverage 3.4 image]][CodeCov 3.4]
3+
[![GitHub Actions][GA 4.0 image]][GA 4.0]
4+
[![Code Coverage][Coverage 4.0 image]][CodeCov 4.0]
55

66
The Doctrine Persistence project is a library that provides common abstractions for object mapper persistence.
77

@@ -11,7 +11,7 @@ The Doctrine Persistence project is a library that provides common abstractions
1111
* [Documentation](https://www.doctrine-project.org/projects/doctrine-persistence/en/latest/index.html)
1212
* [Downloads](https://github.com/doctrine/persistence/releases)
1313

14-
[Coverage 3.4 image]: https://codecov.io/gh/doctrine/persistence/branch/3.4.x/graph/badge.svg
15-
[CodeCov 3.4]: https://codecov.io/gh/doctrine/persistence/branch/3.4.x
16-
[GA 3.4 image]: https://github.com/doctrine/persistence/actions/workflows/continuous-integration.yml/badge.svg?branch=3.4.x
17-
[GA 3.4]: https://github.com/doctrine/persistence/actions/workflows/continuous-integration.yml?branch=3.4.x
14+
[Coverage 4.0 image]: https://codecov.io/gh/doctrine/persistence/branch/4.0.x/graph/badge.svg
15+
[CodeCov 4.0]: https://codecov.io/gh/doctrine/persistence/branch/4.0.x
16+
[GA 4.0 image]: https://github.com/doctrine/persistence/actions/workflows/continuous-integration.yml/badge.svg?branch=4.0.x
17+
[GA 4.0]: https://github.com/doctrine/persistence/actions/workflows/continuous-integration.yml?branch=4.0.x

composer.json

-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
"phpunit/phpunit": "^9.6",
3333
"symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
3434
},
35-
"conflict": {
36-
"doctrine/common": "<2.10"
37-
},
3835
"autoload": {
3936
"psr-4": {
4037
"Doctrine\\Persistence\\": "src/Persistence"

0 commit comments

Comments
 (0)