Skip to content

Commit 1baf038

Browse files
authored
Merge branch 'master' into ahmet/eng-9301-september-2025-spec-add-description-support-for
2 parents 26d4d0a + f3974f6 commit 1baf038

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

.coderabbit.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
language: "en-US"
33
reviews:
44
profile: "chill"
5-
high_level_summary: true
5+
# When high_level_summary is false, the summary is still generated and inserted
6+
# if the @coderabbitai summary placeholder is present in the description.
7+
# The setting only suppresses the automatic append behaviour.
8+
high_level_summary: false
9+
# by default, lets insert summary there, so you could copy it to the message.
10+
high_level_summary_in_walkthrough: true
611
poem: false
712
suggested_reviewers: false
813
in_progress_fortune: false

.github/workflows/execution.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- 'execution/**'
77
- '.github/workflows/execution.yml'
88
- '.golangci.yml'
9+
- '.coderabbit.yaml'
910
push:
1011
branches:
1112
- master
@@ -14,6 +15,7 @@ on:
1415
- 'execution/**'
1516
- '.github/workflows/execution.yml'
1617
- '.golangci.yml'
18+
- '.coderabbit.yaml'
1719
jobs:
1820
test:
1921
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }})

.github/workflows/v2.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- '.github/workflows/release.yml'
99
- 'commitlint.config.js'
1010
- '.golangci.yml'
11+
- '.coderabbit.yaml'
1112
push:
1213
branches:
1314
- master
@@ -18,6 +19,7 @@ on:
1819
- '.github/workflows/release.yml'
1920
- 'commitlint.config.js'
2021
- '.golangci.yml'
22+
- '.coderabbit.yaml'
2123
jobs:
2224
test:
2325
name: Build and test (go ${{ matrix.go }} / ${{ matrix.os }})

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ Cosmo Router wraps this library and provides a complete solution for Federated G
6060
This repository contains multiple packages joined via [workspace](https://github.com/wundergraph/graphql-go-tools/blob/master/go.work).
6161

6262
| Package | Description | Package dependencies | Maintenance state |
63-
|---------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------|
63+
|:--------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------|
6464
| [graphql-go-tools v2](https://github.com/wundergraph/graphql-go-tools/blob/master/v2/go.mod) | GraphQL engine implementation consisting of lexer, parser, ast, ast validation, ast normalization, datasources, query planner and resolver. Supports GraphQL Federation. Has built-in support for batching federation entity calls | - | actual version, active development |
65-
| [execution](https://github.com/wundergraph/graphql-go-tools/blob/master/execution/go.mod) | Execution helpers for the request handling and engine configuration builder | depends on [graphql-go-tools v2](https://github.com/wundergraph/graphql-go-tools/blob/master/v2/go.mod) and [composition](https://github.com/wundergraph/cosmo/blob/main/composition-go/go.mod) | actual version |
65+
| [execution](https://github.com/wundergraph/graphql-go-tools/blob/master/execution/go.mod) | Execution helpers for the request handling and engine configuration builder. It contains important integration tests. | depends on [graphql-go-tools v2](https://github.com/wundergraph/graphql-go-tools/blob/master/v2/go.mod) and [composition](https://github.com/wundergraph/cosmo/blob/main/composition-go/go.mod) | actual version |
6666
| [examples/federation](https://github.com/wundergraph/graphql-go-tools/blob/master/examples/federation/go.mod) | Example implementation of graphql federation gateway. This example is not production ready. For production ready solution please consider using [cosmo router](https://github.com/wundergraph/cosmo/tree/main) | depends on [execution](https://github.com/wundergraph/graphql-go-tools/blob/master/execution/go.mod) package | actual federation gateway example |
6767
| [graphql-go-tools v1](https://github.com/wundergraph/graphql-go-tools/blob/v1.67.4/go.mod) | Deprecated and retracted GraphQL engine implementation. Not supported nor maintained. It was removed from the repo in v1.67.5. | - | deprecated |
6868

0 commit comments

Comments
 (0)