Skip to content

Commit ca3a809

Browse files
chore(release): update monorepo packages versions
1 parent 8c4138d commit ca3a809

File tree

11 files changed

+58
-26
lines changed

11 files changed

+58
-26
lines changed

.changeset/funny-phones-grab.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

packages/gateway/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @graphql-hive/gateway
22

3+
## 2.1.10
4+
### Patch Changes
5+
6+
- Updated dependencies [[`8c4138d`](https://github.com/graphql-hive/gateway/commit/8c4138df152d195daa1d78ea22ddb7cea2387e20)]:
7+
- @graphql-hive/gateway-runtime@2.1.9
8+
- @graphql-hive/plugin-aws-sigv4@2.0.9
9+
- @graphql-mesh/hmac-upstream-signature@2.0.3
10+
- @graphql-hive/plugin-opentelemetry@1.0.12
11+
- @graphql-mesh/plugin-prometheus@2.0.13
12+
313
## 2.1.9
414
### Patch Changes
515

packages/gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/gateway",
3-
"version": "2.1.9",
3+
"version": "2.1.10",
44
"type": "module",
55
"repository": {
66
"type": "git",

packages/nestjs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphql-hive/nestjs
22

3+
## 2.0.15
4+
### Patch Changes
5+
6+
- Updated dependencies []:
7+
- @graphql-hive/gateway@2.1.10
8+
39
## 2.0.14
410
### Patch Changes
511

packages/nestjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/nestjs",
3-
"version": "2.0.14",
3+
"version": "2.0.15",
44
"type": "module",
55
"repository": {
66
"type": "git",

packages/plugins/opentelemetry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphql-hive/plugin-opentelemetry
22

3+
## 1.0.12
4+
### Patch Changes
5+
6+
- Updated dependencies [[`8c4138d`](https://github.com/graphql-hive/gateway/commit/8c4138df152d195daa1d78ea22ddb7cea2387e20)]:
7+
- @graphql-hive/gateway-runtime@2.1.9
8+
39
## 1.0.11
410
### Patch Changes
511

packages/plugins/opentelemetry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-hive/plugin-opentelemetry",
3-
"version": "1.0.11",
3+
"version": "1.0.12",
44
"type": "module",
55
"repository": {
66
"type": "git",

packages/plugins/prometheus/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphql-mesh/plugin-prometheus
22

3+
## 2.0.13
4+
### Patch Changes
5+
6+
- Updated dependencies [[`8c4138d`](https://github.com/graphql-hive/gateway/commit/8c4138df152d195daa1d78ea22ddb7cea2387e20)]:
7+
- @graphql-hive/[email protected]
8+
39
## 2.0.12
410
### Patch Changes
511

packages/plugins/prometheus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-mesh/plugin-prometheus",
3-
"version": "2.0.12",
3+
"version": "2.0.13",
44
"type": "module",
55
"repository": {
66
"type": "git",

packages/runtime/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @graphql-hive/gateway-runtime
22

3+
## 2.1.9
4+
### Patch Changes
5+
6+
7+
8+
- [#1563](https://github.com/graphql-hive/gateway/pull/1563) [`8c4138d`](https://github.com/graphql-hive/gateway/commit/8c4138df152d195daa1d78ea22ddb7cea2387e20) Thanks [@zoontek](https://github.com/zoontek)! - Introduce `deduplicateHeaders` option for `propagateHeaders` configuration to control header handling behavior when multiple subgraphs return the same header
9+
10+
When `deduplicateHeaders` is enabled (set to `true`), only the last value from subgraphs will be set for each header. When disabled (default `false`), all values are appended.
11+
12+
The `set-cookie` header is always appended regardless of this setting, as per HTTP standards.
13+
14+
```ts
15+
import { defineConfig } from '@graphql-hive/gateway'
16+
export const gatewayConfig = defineConfig({
17+
propagateHeaders: {
18+
deduplicateHeaders: true, // default: false
19+
fromSubgraphsToClient({ response }) {
20+
// ...
21+
}
22+
}
23+
})
24+
```
25+
- Updated dependencies []:
26+
- @graphql-mesh/hmac-upstream-signature@2.0.3
27+
328
## 2.1.8
429
### Patch Changes
530

0 commit comments

Comments
 (0)