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
*[f2c998158](https://github.com/api-platform/core/commit/f2c998158a70632a26efcdd29a17d7f3a2cb859c) fix(jsonld): anonymous context hydra_prefix value (#6873)
10
+
11
+
Also contains [v3.4.10 changes](#v3410).
12
+
13
+
### Features
14
+
15
+
## v4.0.12
16
+
17
+
### Bug fixes
18
+
19
+
*[4db72f55f](https://github.com/api-platform/core/commit/4db72f55fa9dcd48518dc62b5bf472895b6a966b) fix: filter may not use FilterInterface (#6858)
20
+
*[c899a3da1](https://github.com/api-platform/core/commit/c899a3da14eb2dff49095d28855ef8f2a1c4072a) fix(laravel): use tagged resolvers as graphql resolvers
*[abbc031ee](https://github.com/api-platform/core/commit/abbc031eece83b54781502cd6373b47a09e109f4) fix: test empty parameter against null (#6852)
265
+
266
+
### Notes
267
+
268
+
-`Parameter::getValue()` now takes a default value as argument `getValue(mixed $default = new ParameterNotFound()): mixed`
269
+
-`Parametes::get(string $key, string $parameterClass = QueryParameter::class)` (but also `has` and `remove`) now has a default value as second argument to `QueryParameter::class`
270
+
- Constraint violation had the wrong message when using `property`, fixed by using the `key` instead
if (isset($selection['paginationInfo']['currentPage'])) {
217
+
if (!($collectioninstanceof PartialPaginatorInterface)) {
218
+
thrownew \LogicException(\sprintf('Collection returned by the collection data provider must implement %s to return currentPage field.', PartialPaginatorInterface::class));
if (isset($selection['paginationInfo']['lastPage'])) {
217
223
if (!($collectioninstanceof PaginatorInterface)) {
218
224
thrownew \LogicException(\sprintf('Collection returned by the collection data provider must implement %s to return lastPage field.', PaginatorInterface::class));
description: 'Allows you to reduce the response to contain only the properties you need. If your desired property is nested, you can address it using nested arrays. Example: '.\sprintf(
0 commit comments