Skip to content

Commit 005e8b3

Browse files
committed
Update generated code in Nuwave\Lighthouse\Tracing\FederatedTracing\Proto
1 parent 54adabf commit 005e8b3

File tree

14 files changed

+95
-22
lines changed

14 files changed

+95
-22
lines changed

.github/workflows/proto.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
coverage: none
2121
extensions: mbstring
22-
php-version: 8.4
22+
php-version: 8.3
2323

2424
- run: composer install --no-interaction --no-progress --no-suggest
2525

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ You can find and compare releases at the [GitHub release page](https://github.co
99

1010
## Unreleased
1111

12+
## v6.51.1
13+
14+
### Fixed
15+
16+
- Update generated code in `Nuwave\Lighthouse\Tracing\FederatedTracing\Proto`
17+
1218
## v6.51.0
1319

1420
### Fixed

src/Schema/AST/DocumentAST.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ protected function hydrateSchemaExtension(array $node): SchemaExtensionNode
273273
continue;
274274
}
275275

276-
if (\is_array($value)) {
276+
if (is_array($value)) {
277277
$value = isset($value[0]) || $value === []
278278
? new NodeList($value)
279279
: AST::fromArray($value);

src/Tracing/FederatedTracing/Proto/ContextualizedStats.php

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

src/Tracing/FederatedTracing/Proto/FieldStat.php

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

src/Tracing/FederatedTracing/Proto/InputFieldStats.php

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

src/Tracing/FederatedTracing/Proto/LimitsStats.php

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

src/Tracing/FederatedTracing/Proto/QueryLatencyStats.php

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

src/Tracing/FederatedTracing/Proto/StatsContext.php

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

src/Tracing/FederatedTracing/Proto/Trace.php

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

src/Tracing/FederatedTracing/Proto/Trace/Limits.php

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

src/Tracing/FederatedTracing/Proto/Trace/QueryPlanNode/FetchNode.php

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

tests/Integration/Schema/Directives/BelongsToDirectiveTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ public function testShortcutsForeignKeySelectTypename(): void
388388
}
389389
';
390390

391-
$this->assertNoQueriesExecuted(function () use ($company): void {
391+
$this->assertNoQueriesExecuted(function (): void {
392392
$this->graphQL(/** @lang GraphQL */ '
393393
{
394394
user {

0 commit comments

Comments
 (0)