Skip to content

Commit

Permalink
Upcoming Release Changes (#320)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
theguild-bot and github-actions[bot] authored Dec 12, 2024
1 parent 367b359 commit 2f2f157
Show file tree
Hide file tree
Showing 17 changed files with 118 additions and 35 deletions.
27 changes: 0 additions & 27 deletions .changeset/wise-seahorses-rhyme.md

This file was deleted.

29 changes: 29 additions & 0 deletions packages/executors/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @graphql-tools/executor-http

## 1.2.0

### Minor Changes

- [#313](https://github.com/graphql-hive/gateway/pull/313) [`367b359`](https://github.com/graphql-hive/gateway/commit/367b3593cb7fd51c42ef4a13ab4adac202845734) Thanks [@ardatan](https://github.com/ardatan)! - Automatic Persisted Queries support for upstream requests

For HTTP Executor;

```ts
buildHTTPExecutor({
// ...
apq: true,
});
```

For Gateway Configuration;

```ts
export const gatewayConfig = defineConfig({
transportEntries: {
'*': {
options: {
apq: true,
},
},
},
});
```

## 1.1.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/executors/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/executor-http",
"version": "1.1.14",
"version": "1.2.0",
"type": "module",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/federation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/federation

## 3.0.1

### Patch Changes

- Updated dependencies [[`367b359`](https://github.com/graphql-hive/gateway/commit/367b3593cb7fd51c42ef4a13ab4adac202845734)]:
- @graphql-tools/executor-http@1.2.0

## 3.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/federation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/federation",
"version": "3.0.0",
"version": "3.0.1",
"type": "module",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
Expand Down
7 changes: 7 additions & 0 deletions packages/fusion-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-mesh/fusion-runtime

## 0.10.20

### Patch Changes

- Updated dependencies []:
- @graphql-tools/federation@3.0.1

## 0.10.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fusion-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/fusion-runtime",
"version": "0.10.19",
"version": "0.10.20",
"type": "module",
"description": "Runtime for GraphQL Mesh Fusion Supergraph",
"repository": {
Expand Down
11 changes: 11 additions & 0 deletions packages/gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @graphql-hive/gateway

## 1.6.8

### Patch Changes

- Updated dependencies [[`367b359`](https://github.com/graphql-hive/gateway/commit/367b3593cb7fd51c42ef4a13ab4adac202845734)]:
- @graphql-mesh/transport-http@0.6.26
- @graphql-hive/gateway-runtime@1.3.15
- @graphql-mesh/plugin-opentelemetry@1.3.27
- @graphql-mesh/plugin-prometheus@1.3.15
- @graphql-mesh/hmac-upstream-signature@1.2.16

## 1.6.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/gateway",
"version": "1.6.7",
"version": "1.6.8",
"type": "module",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/plugins/opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-mesh/plugin-opentelemetry

## 1.3.27

### Patch Changes

- Updated dependencies []:
- @graphql-hive/gateway-runtime@1.3.15

## 1.3.26

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/opentelemetry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-opentelemetry",
"version": "1.3.26",
"version": "1.3.27",
"type": "module",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/plugins/prometheus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-mesh/plugin-prometheus

## 1.3.15

### Patch Changes

- Updated dependencies []:
- @graphql-hive/[email protected]

## 1.3.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/plugins/prometheus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/plugin-prometheus",
"version": "1.3.14",
"version": "1.3.15",
"type": "module",
"repository": {
"type": "git",
Expand Down
10 changes: 10 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @graphql-hive/gateway-runtime

## 1.3.15

### Patch Changes

- Updated dependencies [[`367b359`](https://github.com/graphql-hive/gateway/commit/367b3593cb7fd51c42ef4a13ab4adac202845734)]:
- @graphql-tools/executor-http@1.2.0
- @graphql-tools/federation@3.0.1
- @graphql-mesh/fusion-runtime@0.10.20
- @graphql-mesh/hmac-upstream-signature@1.2.16

## 1.3.14

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-hive/gateway-runtime",
"version": "1.3.14",
"version": "1.3.15",
"type": "module",
"repository": {
"type": "git",
Expand Down
32 changes: 32 additions & 0 deletions packages/transports/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @graphql-mesh/transport-http

## 0.6.26

### Patch Changes

- [#313](https://github.com/graphql-hive/gateway/pull/313) [`367b359`](https://github.com/graphql-hive/gateway/commit/367b3593cb7fd51c42ef4a13ab4adac202845734) Thanks [@ardatan](https://github.com/ardatan)! - Automatic Persisted Queries support for upstream requests

For HTTP Executor;

```ts
buildHTTPExecutor({
// ...
apq: true,
});
```

For Gateway Configuration;

```ts
export const gatewayConfig = defineConfig({
transportEntries: {
'*': {
options: {
apq: true,
},
},
},
});
```

- Updated dependencies [[`367b359`](https://github.com/graphql-hive/gateway/commit/367b3593cb7fd51c42ef4a13ab4adac202845734)]:
- @graphql-tools/executor-http@1.2.0

## 0.6.25

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/transports/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/transport-http",
"version": "0.6.25",
"version": "0.6.26",
"type": "module",
"repository": {
"type": "git",
Expand Down

0 comments on commit 2f2f157

Please sign in to comment.