You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 2.5:
Bump versions of Swagger UI, GraphiQL and GraphQL Playground and improve contrib instructions
Update changelog
Fix a bug preventing to serialize validator's payload (#3375)
Ignore FOSUser deprecations only
Fix tests (#3506)
Stop suggestion FOSUser, it harms more than it helps
Changelog for 2.5.5
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,34 @@
10
10
* OpenAPI: Add PHP default values to the documentation (#2386)
11
11
* Deprecate using a validation groups generator service not implementing `ApiPlatform\Core\Bridge\Symfony\Validator\ValidationGroupsGeneratorInterface` (#3346)
12
12
13
-
## 2.5.x-dev
14
-
15
-
* GraphQL: Do not allow empty cursor values on `before` or `after`
16
-
* Filter: Improve the RangeFilter query in case the values are equals using the between operator
13
+
## 2.5.5
14
+
15
+
* Filter: Improve the RangeFilter query in case the values are equals using the between operator #3488
16
+
* Pagination: Fix bug with large values #3451
17
+
* Doctrine: use the correct type within `setParameter` of the SearchFilter #3331
Copy file name to clipboardExpand all lines: src/Bridge/Symfony/Bundle/DependencyInjection/Configuration.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ public function getConfigTreeBuilder()
96
96
->arrayNode('validator')
97
97
->addDefaultsIfNotSet()
98
98
->children()
99
-
->variableNode('serialize_payload_fields')->defaultValue([])->info('Enable the serialization of payload fields when a validation error is thrown.')->end()
99
+
->variableNode('serialize_payload_fields')->defaultValue([])->info('Set to null to serialize all payload fields when a validation error is thrown, or set the fields you want to include explicitly.')->end()
0 commit comments