Skip to content

Commit 98edaed

Browse files
committed
Merge tag 'v3.4.10' into don-working-3.4.10
v3.4.10
2 parents 376ebdb + f8dae8e commit 98edaed

File tree

1,328 files changed

+75082
-36402
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,328 files changed

+75082
-36402
lines changed

.commitlintrc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@
1616
"jsonapi",
1717
"graphql",
1818
"openapi",
19+
"parametervalidator",
1920
"serializer",
2021
"jsonschema",
2122
"validation",
22-
"state"
23+
"state",
24+
"test"
2325
]
2426
],
2527
"scope-empty": [
@@ -54,8 +56,7 @@
5456
[
5557
"sentence-case",
5658
"start-case",
57-
"pascal-case",
58-
"upper-case"
59+
"pascal-case"
5960
]
6061
],
6162
"subject-empty": [
@@ -83,7 +84,7 @@
8384
"build",
8485
"chore",
8586
"ci",
86-
"docs",
87+
"doc",
8788
"feat",
8889
"fix",
8990
"perf",

.gitattributes

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1-
/.editorconfig export-ignore
2-
/.gitattributes export-ignore
3-
/.github export-ignore
4-
/.gitignore export-ignore
5-
/.php_cs.dist export-ignore
1+
*.sh export-ignore
2+
.editorconfig export-ignore
3+
.gitattributes export-ignore
4+
.github export-ignore
5+
.gitignore export-ignore
6+
.php-cs-fixer.dist.php export-ignore
7+
phpstan.neon.dist export-ignore
8+
phpunit.xml.dist export-ignore
9+
phpunit10.xml.dist export-ignore
10+
/.commitlintrc export-ignore
611
/appveyor.yml export-ignore
712
/behat.yml.dist export-ignore
13+
/codecov.yml
814
/docs export-ignore
915
/features export-ignore
10-
/phpstan.neon.dist export-ignore
11-
/phpunit.xml.dist export-ignore
16+
/package-lock.json export-ignore
17+
/pmu.baseline
1218
/tests export-ignore
13-
/update-js.sh export-ignore
1419
/yarn.lock export-ignore

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/api_platform.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
run-api-platform-workflow:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Update distribution
17+
run: gh workflow run -R api-platform/api-platfom release.yml -f tag=${{ github.ref_name }}
18+
19+

0 commit comments

Comments
 (0)