Skip to content

Commit

Permalink
chore(release): update monorepo packages versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 28, 2025
1 parent e4c1485 commit 059c653
Show file tree
Hide file tree
Showing 31 changed files with 179 additions and 113 deletions.
7 changes: 0 additions & 7 deletions .changeset/@graphql-hive_gateway-526-dependencies.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/@graphql-hive_gateway-538-dependencies.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/@graphql-hive_gateway-539-dependencies.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/@graphql-hive_gateway-runtime-538-dependencies.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/@graphql-mesh_fusion-runtime-538-dependencies.md

This file was deleted.

This file was deleted.

44 changes: 0 additions & 44 deletions .changeset/cuddly-penguins-remain.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/kind-fans-pay.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/mean-guests-occur.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/batch-delegate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @graphql-tools/batch-delegate

## 9.0.29

### Patch Changes

- Updated dependencies [[`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0)]:
- @graphql-tools/delegate@10.2.11

## 9.0.28

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/batch-delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/batch-delegate",
"version": "9.0.28",
"version": "9.0.29",
"type": "module",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions packages/delegate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @graphql-tools/delegate

## 10.2.11

### Patch Changes

- [#506](https://github.com/graphql-hive/gateway/pull/506) [`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0) Thanks [@ardatan](https://github.com/ardatan)! - Add `isPrototypePollutingKey` to prevent accidential prototype pollution, whenever object manipulation happens with the keys based on the user input, it is validated to prevent prototype pollution.

For example, `WrapQuery` takes `path` which is used to manipulate the object returned to the client. If the user input is `__proto__`, it will throw an error from now on but previously it would have polluted the prototype.

## 10.2.10

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

## 3.1.0

### Minor Changes

- [#444](https://github.com/graphql-hive/gateway/pull/444) [`b52c9ba`](https://github.com/graphql-hive/gateway/commit/b52c9ba47f84d0905f1f63fdfe071c891dce5b7f) Thanks [@ardatan](https://github.com/ardatan)! - Now `SupergraphSchemaManager` can be used in `ApolloServer` as `gateway`;

```ts
import { ApolloServer } from '@apollo/server';
import { SupergraphSchemaManager } from '@graphql-tools/federation';

const gateway = new SupergraphSchemaManager();
const apolloServer = new ApolloServer({
gateway,
});
```

And with the new `onStitchedSchema` option, you can manipulate the executable schema created from the supergraph.
The following example demonstrates how to use `onStitchedSchema` with `applyMiddleware` from `graphql-middleware`:

```ts
import { SupergraphSchemaManager } from '@graphql-tools/federation';
import { applyMiddleware } from 'graphql-middleware';

const logInput = async (resolve, root, args, context, info) => {
console.log(`1. logInput: ${JSON.stringify(args)}`);
const result = await resolve(root, args, context, info);
console.log(`5. logInput`);
return result;
};

const logResult = async (resolve, root, args, context, info) => {
console.log(`2. logResult`);
const result = await resolve(root, args, context, info);
console.log(`4. logResult: ${JSON.stringify(result)}`);
return result;
};

const gateway = new SupergraphSchemaManager({
onStitchedSchema: async (schema) => {
// Manipulate the schema
return applyMiddleware(schema, logInput, logResult);
},
});
```

### Patch Changes

- Updated dependencies [[`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0)]:
- @graphql-tools/delegate@10.2.11
- @graphql-tools/stitch@9.4.16
- @graphql-tools/wrap@10.0.29

## 3.0.10

### Patch 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.10",
"version": "3.1.0",
"type": "module",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
Expand Down
15 changes: 15 additions & 0 deletions packages/fusion-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @graphql-mesh/fusion-runtime

## 0.10.31

### Patch Changes

- [#538](https://github.com/graphql-hive/gateway/pull/538) [`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`graphql-yoga@^5.10.11` ↗︎](https://www.npmjs.com/package/graphql-yoga/v/5.10.11) (from `^5.10.6`, in `dependencies`)

- Updated dependencies [[`b52c9ba`](https://github.com/graphql-hive/gateway/commit/b52c9ba47f84d0905f1f63fdfe071c891dce5b7f), [`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0)]:
- @graphql-tools/federation@3.1.0
- @graphql-tools/delegate@10.2.11
- @graphql-tools/stitch@9.4.16
- @graphql-tools/stitching-directives@3.1.26
- @graphql-tools/wrap@10.0.29

## 0.10.30

### 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.30",
"version": "0.10.31",
"type": "module",
"description": "Runtime for GraphQL Mesh Fusion Supergraph",
"repository": {
Expand Down
22 changes: 22 additions & 0 deletions packages/gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @graphql-hive/gateway

## 1.8.1

### Patch Changes

- [#526](https://github.com/graphql-hive/gateway/pull/526) [`188a763`](https://github.com/graphql-hive/gateway/commit/188a763901be6aeaf33447316bbdd101b0467a46) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`@graphql-mesh/plugin-http-cache@^0.104.0` ↗︎](https://www.npmjs.com/package/@graphql-mesh/plugin-http-cache/v/0.104.0) (from `^0.103.0`, in `dependencies`)

- [#538](https://github.com/graphql-hive/gateway/pull/538) [`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`graphql-yoga@^5.10.11` ↗︎](https://www.npmjs.com/package/graphql-yoga/v/5.10.11) (from `^5.10.6`, in `dependencies`)

- [#539](https://github.com/graphql-hive/gateway/pull/539) [`df20361`](https://github.com/graphql-hive/gateway/commit/df203610ff9ed50adb3c3c82631ecb5324648486) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`parse-duration@^2.0.0` ↗︎](https://www.npmjs.com/package/parse-duration/v/2.0.0) (from `^1.1.0`, in `dependencies`)

- Updated dependencies [[`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044), [`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044), [`61f387c`](https://github.com/graphql-hive/gateway/commit/61f387c8a1e18a5d7a37cd33afb428488ac13aed)]:
- @graphql-hive/gateway-runtime@1.4.10
- @graphql-mesh/plugin-prometheus@1.3.26
- @graphql-mesh/hmac-upstream-signature@1.2.19
- @graphql-mesh/plugin-opentelemetry@1.3.38

## 1.8.0

### Minor 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.8.0",
"version": "1.8.1",
"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.38

### Patch Changes

- Updated dependencies [[`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044), [`61f387c`](https://github.com/graphql-hive/gateway/commit/61f387c8a1e18a5d7a37cd33afb428488ac13aed)]:
- @graphql-hive/gateway-runtime@1.4.10

## 1.3.37

### 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.37",
"version": "1.3.38",
"type": "module",
"repository": {
"type": "git",
Expand Down
11 changes: 11 additions & 0 deletions packages/plugins/prometheus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @graphql-mesh/plugin-prometheus

## 1.3.26

### Patch Changes

- [#538](https://github.com/graphql-hive/gateway/pull/538) [`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`graphql-yoga@^5.10.11` ↗︎](https://www.npmjs.com/package/graphql-yoga/v/5.10.11) (from `^5.10.6`, in `peerDependencies`)

- Updated dependencies [[`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044), [`61f387c`](https://github.com/graphql-hive/gateway/commit/61f387c8a1e18a5d7a37cd33afb428488ac13aed)]:
- @graphql-hive/[email protected]

## 1.3.25

### 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.25",
"version": "1.3.26",
"type": "module",
"repository": {
"type": "git",
Expand Down
23 changes: 23 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @graphql-hive/gateway-runtime

## 1.4.10

### Patch Changes

- [#538](https://github.com/graphql-hive/gateway/pull/538) [`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`graphql-yoga@^5.10.11` ↗︎](https://www.npmjs.com/package/graphql-yoga/v/5.10.11) (from `^5.10.6`, in `dependencies`)

- [#447](https://github.com/graphql-hive/gateway/pull/447) [`61f387c`](https://github.com/graphql-hive/gateway/commit/61f387c8a1e18a5d7a37cd33afb428488ac13aed) Thanks [@ardatan](https://github.com/ardatan)! - Improve GraphOS supergraph fetching;

- Handle `minDelaySeconds` correctly, before retrying the supergraph request, wait for the `minDelaySeconds` to pass.
- Respect `maxRetries` (which is the maximum of the number of available uplink endpoints and 3) when fetching the supergraph.
- Try all possible uplinks before failing the supergraph request.

- Updated dependencies [[`aab5441`](https://github.com/graphql-hive/gateway/commit/aab544176983e241c62f15242a35ca1398efa044), [`b52c9ba`](https://github.com/graphql-hive/gateway/commit/b52c9ba47f84d0905f1f63fdfe071c891dce5b7f), [`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0)]:
- @graphql-mesh/fusion-runtime@0.10.31
- @graphql-tools/federation@3.1.0
- @graphql-tools/delegate@10.2.11
- @graphql-mesh/hmac-upstream-signature@1.2.19
- @graphql-tools/batch-delegate@9.0.29
- @graphql-tools/stitch@9.4.16
- @graphql-tools/wrap@10.0.29

## 1.4.9

### 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.4.9",
"version": "1.4.10",
"type": "module",
"repository": {
"type": "git",
Expand Down
9 changes: 9 additions & 0 deletions packages/stitch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphql-tools/stitch

## 9.4.16

### Patch Changes

- Updated dependencies [[`9144222`](https://github.com/graphql-hive/gateway/commit/91442220b2242a0fa082d4b544d03621572eecd0)]:
- @graphql-tools/delegate@10.2.11
- @graphql-tools/batch-delegate@9.0.29
- @graphql-tools/wrap@10.0.29

## 9.4.15

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/stitch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-tools/stitch",
"version": "9.4.15",
"version": "9.4.16",
"type": "module",
"description": "A set of utils for faster development of GraphQL tools",
"repository": {
Expand Down
Loading

0 comments on commit 059c653

Please sign in to comment.