Skip to content

Commit 50064cb

Browse files
authored
Merge pull request #1829 from simPod/fetch_mode_subselect_batch_size
2 parents ca59d84 + 61c432a commit 50064cb

23 files changed

+92
-13
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.13",
8-
"branchName": "2.13.x",
7+
"name": "2.14",
8+
"branchName": "2.14.x",
99
"slug": "latest",
1010
"upcoming": true
1111
},
12+
{
13+
"name": "2.13",
14+
"branchName": "2.13.x",
15+
"slug": "2.13",
16+
"current": true
17+
},
1218
{
1319
"name": "2.12",
1420
"branchName": "2.12.x",
1521
"slug": "2.12",
16-
"current": true
22+
"maintained": false
1723
},
1824
{
1925
"name": "2.11",

.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@5.0.1"
15+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@5.1.0"
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@5.0.1"
18+
uses: "doctrine/.github/.github/workflows/composer-lint.yml@5.1.0"

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
phpunit:
1414
name: "PHPUnit"
15-
runs-on: "ubuntu-22.04"
15+
runs-on: "ubuntu-latest"
1616
env:
1717
SYMFONY_REQUIRE: ${{matrix.symfony-require}}
1818
SYMFONY_DEPRECATIONS_HELPER: weak
@@ -110,7 +110,7 @@ jobs:
110110

111111
upload_coverage:
112112
name: "Upload coverage to Codecov"
113-
runs-on: "ubuntu-22.04"
113+
runs-on: "ubuntu-latest"
114114
needs:
115115
- "phpunit"
116116

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Documentation"
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "*.x"
7+
paths:
8+
- ".github/workflows/documentation.yml"
9+
- "docs/**"
10+
push:
11+
branches:
12+
- "*.x"
13+
paths:
14+
- ".github/workflows/documentation.yml"
15+
- "docs/**"
16+
17+
jobs:
18+
documentation:
19+
name: "Documentation"
20+
uses: "doctrine/.github/.github/workflows/[email protected]"

.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.0.1"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@5.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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
static-analysis-psalm:
1414
name: "Static Analysis with Psalm"
15-
runs-on: "ubuntu-22.04"
15+
runs-on: "ubuntu-latest"
1616

1717
steps:
1818
- name: "Checkout code"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
phpunit:
1010
name: "PHPUnit"
11-
runs-on: "ubuntu-22.04"
11+
runs-on: "ubuntu-latest"
1212
env:
1313
SYMFONY_REQUIRE: ${{matrix.symfony-require}}
1414

.symfony.bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ branches:
1111
maintained_branches:
1212
- "2.12.x"
1313
- "2.13.x"
14-
doc_dir: "docs/"
14+
doc_dir: { "2.12.x": "docs/", "2.13.x": "docs/en/" }
1515
current_branch: "2.12.x"
1616
dev_branch: "2.13.x"

config/schema/doctrine-1.0.xsd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@
227227
<xsd:attribute name="connection" type="xsd:string" />
228228
<xsd:attribute name="default-repository-class" type="xsd:string" />
229229
<xsd:attribute name="class-metadata-factory-name" type="xsd:string" />
230+
<xsd:attribute name="fetch-mode-subselect-batch-size" type="xsd:int" />
230231
<xsd:attribute name="naming-strategy" type="xsd:string" />
231232
<xsd:attribute name="quote-strategy" type="xsd:string" />
232233
<xsd:attribute name="typed-field-mapper" type="xsd:string" />

0 commit comments

Comments
 (0)