Skip to content

Commit 848a763

Browse files
chore: check API Platform 4.1 (#500)
Fixes #506
1 parent e880613 commit 848a763

12 files changed

+1298
-1375
lines changed

api/composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"php": ">=8.3",
66
"ext-ctype": "*",
77
"ext-iconv": "*",
8-
"api-platform/doctrine-orm": "^4.0.18",
9-
"api-platform/graphql": "^4.0.18",
10-
"api-platform/symfony": "^4.0.18",
8+
"api-platform/doctrine-orm": "^4.1",
9+
"api-platform/graphql": "^4.1",
10+
"api-platform/symfony": "^4.1",
1111
"doctrine/common": "^3.4",
1212
"doctrine/doctrine-bundle": "^2.11",
1313
"doctrine/doctrine-fixtures-bundle": "^4.0",
@@ -50,7 +50,7 @@
5050
"phpstan/phpstan-doctrine": "^2.0",
5151
"phpstan/phpstan-phpunit": "^2.0",
5252
"phpstan/phpstan-symfony": "^2.0",
53-
"phpunit/phpunit": "^11.3",
53+
"phpunit/phpunit": "^12.0",
5454
"symfony/browser-kit": "7.2.*",
5555
"symfony/css-selector": "7.2.*",
5656
"symfony/debug-bundle": "7.2.*",

api/composer.lock

+800-920
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/config/packages/api_platform.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
api_platform:
22
title: API Platform's demo
3-
version: 4.0.18
3+
version: 4.1.0
44
description: |
55
This is a demo application of the [API Platform](https://api-platform.com) framework.
66
[Its source code](https://github.com/api-platform/demo) includes various examples, check it out!
@@ -50,19 +50,19 @@ services:
5050
app.filter.review.admin.user:
5151
parent: 'api_platform.doctrine.orm.search_filter'
5252
arguments:
53-
$properties: { user: 'exact' } ]
53+
$properties: { user: 'exact' }
5454
tags: [ 'api_platform.filter' ]
5555

5656
app.filter.review.admin.book:
5757
parent: 'api_platform.doctrine.orm.search_filter'
5858
arguments:
59-
$properties: { book: 'exact' } ]
59+
$properties: { book: 'exact' }
6060
tags: [ 'api_platform.filter' ]
6161

6262
app.filter.review.admin.rating:
6363
parent: 'api_platform.doctrine.orm.numeric_filter'
6464
arguments:
65-
$properties: { rating: ~ } ]
65+
$properties: { rating: ~ }
6666
tags: [ 'api_platform.filter' ]
6767

6868
# "name" is not a property, it's only a method "getName"
@@ -73,5 +73,5 @@ services:
7373
$managerRegistry: '@doctrine'
7474
$logger: '@logger'
7575
$nameConverter: '@?api_platform.name_converter'
76-
$properties: { name: 'ipartial' } ]
76+
$properties: { name: 'ipartial' }
7777
tags: [ 'api_platform.filter' ]

api/phpunit.xml.dist

+1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,6 @@
4343

4444
<extensions>
4545
<bootstrap class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
46+
<bootstrap class="Zenstruck\Foundry\PHPUnit\FoundryExtension"/>
4647
</extensions>
4748
</phpunit>

api/tests/Api/Admin/BookTest.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public static function getInvalidDataOnCreate(): iterable
289289
[],
290290
Response::HTTP_UNPROCESSABLE_ENTITY,
291291
[
292-
'@type' => 'ConstraintViolationList',
292+
'@type' => 'ConstraintViolation',
293293
'title' => 'An error occurred',
294294
'violations' => [
295295
[
@@ -315,7 +315,7 @@ public static function getInvalidData(): iterable
315315
],
316316
Response::HTTP_UNPROCESSABLE_ENTITY,
317317
[
318-
'@type' => 'ConstraintViolationList',
318+
'@type' => 'ConstraintViolation',
319319
'title' => 'An error occurred',
320320
'description' => 'condition: This value should be of type ' . BookCondition::class . '.',
321321
'violations' => [
@@ -333,7 +333,7 @@ public static function getInvalidData(): iterable
333333
],
334334
Response::HTTP_UNPROCESSABLE_ENTITY,
335335
[
336-
'@type' => 'ConstraintViolationList',
336+
'@type' => 'ConstraintViolation',
337337
'title' => 'An error occurred',
338338
'description' => 'condition: This value should be of type ' . BookCondition::class . '.',
339339
'violations' => [
@@ -351,7 +351,7 @@ public static function getInvalidData(): iterable
351351
],
352352
Response::HTTP_UNPROCESSABLE_ENTITY,
353353
[
354-
'@type' => 'ConstraintViolationList',
354+
'@type' => 'ConstraintViolation',
355355
'title' => 'An error occurred',
356356
'violations' => [
357357
[

api/tests/Api/BookmarkTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function asAUserICannotCreateABookmarkWithInvalidData(): void
128128
self::assertResponseHeaderSame('content-type', 'application/problem+json; charset=utf-8');
129129
self::assertResponseHeaderSame('link', '<http://www.w3.org/ns/hydra/error>; rel="http://www.w3.org/ns/json-ld#error",<http://localhost/docs.jsonld>; rel="http://www.w3.org/ns/hydra/core#apiDocumentation"');
130130
self::assertJsonContains([
131-
'@type' => 'ConstraintViolationList',
131+
'@type' => 'ConstraintViolation',
132132
'title' => 'An error occurred',
133133
'description' => 'book: This value should be of type ' . Book::class . '.',
134134
'violations' => [
@@ -218,7 +218,7 @@ public function asAUserICannotCreateADuplicateBookmark(): void
218218
self::assertResponseHeaderSame('content-type', 'application/problem+json; charset=utf-8');
219219
self::assertResponseHeaderSame('link', '<http://www.w3.org/ns/hydra/error>; rel="http://www.w3.org/ns/json-ld#error",<http://localhost/docs.jsonld>; rel="http://www.w3.org/ns/hydra/core#apiDocumentation"');
220220
self::assertJsonContains([
221-
'@type' => 'ConstraintViolationList',
221+
'@type' => 'ConstraintViolation',
222222
'title' => 'An error occurred',
223223
'description' => 'You have already bookmarked this book.',
224224
]);

api/tests/Api/ReviewTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public static function getInvalidData(): iterable
188188
[],
189189
Response::HTTP_UNPROCESSABLE_ENTITY,
190190
[
191-
'@type' => 'ConstraintViolationList',
191+
'@type' => 'ConstraintViolation',
192192
'title' => 'An error occurred',
193193
'violations' => [
194194
[
@@ -325,7 +325,7 @@ public function asAUserICannotAddADuplicateReviewOnABook(): void
325325
self::assertResponseHeaderSame('content-type', 'application/problem+json; charset=utf-8');
326326
self::assertResponseHeaderSame('link', '<http://www.w3.org/ns/hydra/error>; rel="http://www.w3.org/ns/json-ld#error",<http://localhost/docs.jsonld>; rel="http://www.w3.org/ns/hydra/core#apiDocumentation"');
327327
self::assertJsonContains([
328-
'@type' => 'ConstraintViolationList',
328+
'@type' => 'ConstraintViolation',
329329
'title' => 'An error occurred',
330330
'description' => 'You have already reviewed this book.',
331331
]);

api/tests/bootstrap.php

+12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
declare(strict_types=1);
44

5+
use Faker\Factory as FakerFactory;
56
use Symfony\Component\Dotenv\Dotenv;
7+
use Symfony\Component\ErrorHandler\ErrorHandler;
8+
use Zenstruck\Foundry\Object\Instantiator;
9+
use Zenstruck\Foundry\Test\UnitTestConfig;
610

711
require dirname(__DIR__) . '/vendor/autoload.php';
812

@@ -15,3 +19,11 @@
1519
if ($_SERVER['APP_DEBUG']) {
1620
umask(0000);
1721
}
22+
23+
// https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#non-kernel-tests
24+
UnitTestConfig::configure(instantiator: (Instantiator::withoutConstructor())
25+
->allowExtra()
26+
->alwaysForce(), faker: FakerFactory::create('en_GB'));
27+
28+
// https://github.com/symfony/symfony/issues/53812#issuecomment-1962740145
29+
set_exception_handler([new ErrorHandler(), 'handleException']);

helm/api-platform/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ type: application
1717
# This is the chart version. This version number should be incremented each time you make changes
1818
# to the chart and its templates, including the app version.
1919
# Versions are expected to follow Semantic Versioning (https://semver.org/)
20-
version: 4.0.18
20+
version: 4.1.0
2121

2222
# This is the version number of the application being deployed. This version number should be
2323
# incremented each time you make changes to the application. Versions are not expected to
2424
# follow Semantic Versioning. They should reflect the version the application is using.
25-
appVersion: 4.0.18
25+
appVersion: 4.1.0
2626

2727
dependencies:
2828
- name: postgresql

pwa/package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@
1010
"test": "playwright test"
1111
},
1212
"dependencies": {
13-
"@api-platform/admin": "^4.0.3",
14-
"@api-platform/api-doc-parser": "^0.16.6",
13+
"@api-platform/admin": "^4.0.4",
14+
"@api-platform/api-doc-parser": "^0.16.7",
1515
"@auth/core": "^0.37.4",
1616
"@fontsource/poppins": "^5.1.1",
1717
"@mui/icons-material": "latest-v5",
1818
"@mui/material": "latest-v5",
1919
"@tailwindcss/forms": "^0.5.10",
20-
"@tanstack/react-query": "^5.64.2",
21-
"@tanstack/react-query-devtools": "^5.64.2",
22-
"@tanstack/react-query-next-experimental": "^5.64.2",
20+
"@tanstack/react-query": "^5.65.1",
21+
"@tanstack/react-query-devtools": "^5.65.1",
22+
"@tanstack/react-query-next-experimental": "^5.65.1",
2323
"autoprefixer": "^10.4.20",
2424
"formik": "^2.4.6",
25-
"next": "^15.1.5",
25+
"next": "^15.1.6",
2626
"next-auth": "5.0.0-beta.25",
2727
"picocolors": "^1.1.1",
2828
"postcss": "^8.5.1",
29-
"ra-i18n-polyglot": "^5.4.4",
30-
"ra-language-english": "^5.4.4",
31-
"ra-language-french": "^5.4.4",
32-
"ra-ui-materialui": "^5.4.4",
29+
"ra-i18n-polyglot": "^5.5.2",
30+
"ra-language-english": "^5.5.2",
31+
"ra-language-french": "^5.5.2",
32+
"ra-ui-materialui": "^5.5.2",
3333
"react": "^19.0.0",
34-
"react-admin": "^5.4.4",
34+
"react-admin": "^5.5.2",
3535
"react-dom": "^19.0.0",
3636
"react-hook-form": "^7.54.2",
3737
"react-spinners": "^0.15.0",
@@ -41,14 +41,14 @@
4141
"yup": "^1.6.1"
4242
},
4343
"devDependencies": {
44-
"@babel/core": "^7.26.0",
45-
"@playwright/test": "^1.49.1",
44+
"@babel/core": "^7.26.7",
45+
"@playwright/test": "^1.50.0",
4646
"@popperjs/core": "^2.11.8",
47-
"@types/node": "^22.10.7",
48-
"@types/react": "^19.0.7",
47+
"@types/node": "^22.12.0",
48+
"@types/react": "^19.0.8",
4949
"@types/react-dom": "^19.0.3",
50-
"eslint": "^9.18.0",
51-
"eslint-config-next": "^15.1.5",
50+
"eslint": "^9.19.0",
51+
"eslint-config-next": "^15.1.6",
5252
"typescript": "^5.7.3"
5353
},
5454
"packageManager": "[email protected]"

0 commit comments

Comments
 (0)