Skip to content

Commit eb3b86e

Browse files
committed
v15.30.0
1 parent 4843748 commit eb3b86e

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ You can find and compare releases at the [GitHub release page](https://github.co
99

1010
## Unreleased
1111

12+
## v15.30.0
13+
14+
### Added
15+
1216
- Add support for adding description to schema https://github.com/webonyx/graphql-php/pull/1834
1317

1418
## v15.29.4

tests/Validator/QueryComplexityTest.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,11 @@ public function testFragmentQueriesOnRoot(string $query): void
6666
$this->assertDocumentValidators($query, 12, 13);
6767
}
6868

69-
/** @return array<int, array<string>> */
70-
public function fragmentQueriesOnRootProvider(): array
69+
/** @return iterable<array<string>> */
70+
public function fragmentQueriesOnRootProvider(): iterable
7171
{
72-
return [
73-
['fragment humanFragment on QueryRoot { human { dogs { name } } } query { ...humanFragment }'],
74-
['query { ...humanFragment } fragment humanFragment on QueryRoot { human { dogs { name } } }'],
75-
];
72+
yield ['fragment humanFragment on QueryRoot { human { dogs { name } } } query { ...humanFragment }'];
73+
yield ['query { ...humanFragment } fragment humanFragment on QueryRoot { human { dogs { name } } }'];
7674
}
7775

7876
public function testAliasesQueries(): void

0 commit comments

Comments
 (0)