From 04ebcf8dac715d05ef4d26b8ab548513287907f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 14 Oct 2025 12:07:25 +0000 Subject: [PATCH] chore(release): update monorepo packages versions --- ...phql-mesh_apollo-link-8680-dependencies.md | 5 ---- .changeset/sparkly-lions-make.md | 25 ----------------- e2e/cache-control/package.json | 2 +- .../CHANGELOG.md | 2 ++ .../package.json | 4 +-- packages/compose-cli/CHANGELOG.md | 28 +++++++++++++++++++ packages/compose-cli/package.json | 2 +- packages/legacy/apollo-link/CHANGELOG.md | 11 ++++++++ packages/legacy/apollo-link/package.json | 2 +- .../legacy/migrate-config-cli/CHANGELOG.md | 8 ++++++ .../legacy/migrate-config-cli/package.json | 4 +-- yarn.lock | 8 +++--- 12 files changed, 60 insertions(+), 41 deletions(-) delete mode 100644 .changeset/@graphql-mesh_apollo-link-8680-dependencies.md delete mode 100644 .changeset/sparkly-lions-make.md diff --git a/.changeset/@graphql-mesh_apollo-link-8680-dependencies.md b/.changeset/@graphql-mesh_apollo-link-8680-dependencies.md deleted file mode 100644 index 53e287cef1b3a..0000000000000 --- a/.changeset/@graphql-mesh_apollo-link-8680-dependencies.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphql-mesh/apollo-link": patch ---- -dependencies updates: - - Updated dependency [`@apollo/client@^3.5.9 || ^4.0.0` ↗︎](https://www.npmjs.com/package/@apollo/client/v/3.5.9) (from `^3.5.9`, in `peerDependencies`) diff --git a/.changeset/sparkly-lions-make.md b/.changeset/sparkly-lions-make.md deleted file mode 100644 index 2e4b1d07539fd..0000000000000 --- a/.changeset/sparkly-lions-make.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -'@graphql-mesh/compose-cli': minor ---- - -Add `introspectionOptions` to `loadGraphQLHTTPSubgraph` with some defaults. -Previously, it was not possible to configure the introspection query options. -By default it was ignoring deprecated input fields and not including descriptions. -Now it includes descriptions and deprecated input fields by default. -And you can still override the defaults by providing your own options. - -```ts -import { loadGraphQLHTTPSubgraph } from '@graphql-mesh/compose-cli'; - -loadGraphQLHTTPSubgraph('my-subgraph', { - source: 'http://my-subgraph/graphql', - introspectionOptions: { - descriptions: true, - specifiedByUrl: false, - directiveIsRepeatable: false, - schemaDescription: false, - inputValueDeprecation: true, - oneOf: false, // New in GraphQL 16 - }, -}); -``` diff --git a/e2e/cache-control/package.json b/e2e/cache-control/package.json index fcc33dcc47795..78fc1f0e812d1 100644 --- a/e2e/cache-control/package.json +++ b/e2e/cache-control/package.json @@ -6,7 +6,7 @@ "@apollo/subgraph": "^2.9.3", "@graphql-hive/gateway": "^2.0.0", "@graphql-mesh/cache-upstash-redis": "^0.1.13", - "@graphql-mesh/compose-cli": "^1.4.18", + "@graphql-mesh/compose-cli": "^1.5.0", "@graphql-yoga/plugin-response-cache": "^3.13.1", "graphql": "^16.9.0", "graphql-yoga": "^5.13.4", diff --git a/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md b/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md index 5cddac1c912cc..da0d5558ce392 100644 --- a/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md +++ b/examples/v1-next/apollo-federation-compatibility/CHANGELOG.md @@ -1,5 +1,7 @@ # example-apollo-federation-compatibility +## 1.8.0 + ## 1.7.18 ## 1.7.17 diff --git a/examples/v1-next/apollo-federation-compatibility/package.json b/examples/v1-next/apollo-federation-compatibility/package.json index 8aa8e7f42d238..72127cd400d2e 100644 --- a/examples/v1-next/apollo-federation-compatibility/package.json +++ b/examples/v1-next/apollo-federation-compatibility/package.json @@ -1,6 +1,6 @@ { "name": "example-apollo-federation-compatibility", - "version": "1.7.18", + "version": "1.8.0", "description": "Apollo Federation implemented with GraphQL Mesh", "author": "Arda TANRIKULU ", "private": true, @@ -27,7 +27,7 @@ "@graphql-codegen/cli": "6.0.0", "@graphql-codegen/typescript": "5.0.2", "@graphql-codegen/typescript-resolvers": "5.1.0", - "@graphql-mesh/compose-cli": "1.4.18", + "@graphql-mesh/compose-cli": "1.5.0", "@types/node": "^24.4.0", "esbuild": "^0.25.0", "lru-cache": "patch:lru-cache@npm%3A11.2.1#~/.yarn/patches/lru-cache-npm-11.2.1-60cdd96af2.patch" diff --git a/packages/compose-cli/CHANGELOG.md b/packages/compose-cli/CHANGELOG.md index 352324ac24516..88cac46eb35e6 100644 --- a/packages/compose-cli/CHANGELOG.md +++ b/packages/compose-cli/CHANGELOG.md @@ -1,5 +1,33 @@ # @graphql-mesh/compose-cli +## 1.5.0 + +### Minor Changes + +- [#8851](https://github.com/ardatan/graphql-mesh/pull/8851) + [`9ed6940`](https://github.com/ardatan/graphql-mesh/commit/9ed6940b904acff47d7fc8e0fbe52d7da9e304f2) + Thanks [@ardatan](https://github.com/ardatan)! - Add `introspectionOptions` to + `loadGraphQLHTTPSubgraph` with some defaults. Previously, it was not possible to configure the + introspection query options. By default it was ignoring deprecated input fields and not including + descriptions. Now it includes descriptions and deprecated input fields by default. And you can + still override the defaults by providing your own options. + + ```ts + import { loadGraphQLHTTPSubgraph } from '@graphql-mesh/compose-cli' + + loadGraphQLHTTPSubgraph('my-subgraph', { + source: 'http://my-subgraph/graphql', + introspectionOptions: { + descriptions: true, + specifiedByUrl: false, + directiveIsRepeatable: false, + schemaDescription: false, + inputValueDeprecation: true, + oneOf: false // New in GraphQL 16 + } + }) + ``` + ## 1.4.18 ### Patch Changes diff --git a/packages/compose-cli/package.json b/packages/compose-cli/package.json index a2009493ddc5e..4a484d7276915 100644 --- a/packages/compose-cli/package.json +++ b/packages/compose-cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/compose-cli", - "version": "1.4.18", + "version": "1.5.0", "type": "module", "repository": { "type": "git", diff --git a/packages/legacy/apollo-link/CHANGELOG.md b/packages/legacy/apollo-link/CHANGELOG.md index 5e8d97a6d5a1b..0e46780606dee 100644 --- a/packages/legacy/apollo-link/CHANGELOG.md +++ b/packages/legacy/apollo-link/CHANGELOG.md @@ -1,5 +1,16 @@ # @graphql-mesh/apollo-link +## 0.106.14 + +### Patch Changes + +- [#8680](https://github.com/ardatan/graphql-mesh/pull/8680) + [`8de7691`](https://github.com/ardatan/graphql-mesh/commit/8de76913b840870f2d62bde3d46fbc64786e33b8) + Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates: + - Updated dependency + [`@apollo/client@^3.5.9 || ^4.0.0` ↗︎](https://www.npmjs.com/package/@apollo/client/v/3.5.9) + (from `^3.5.9`, in `peerDependencies`) + ## 0.106.13 ### Patch Changes diff --git a/packages/legacy/apollo-link/package.json b/packages/legacy/apollo-link/package.json index 0ff05cab17a40..a01ce3e3bb4a3 100644 --- a/packages/legacy/apollo-link/package.json +++ b/packages/legacy/apollo-link/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/apollo-link", - "version": "0.106.13", + "version": "0.106.14", "type": "module", "repository": { "type": "git", diff --git a/packages/legacy/migrate-config-cli/CHANGELOG.md b/packages/legacy/migrate-config-cli/CHANGELOG.md index e525e5c6ef576..3ffaa2da17193 100644 --- a/packages/legacy/migrate-config-cli/CHANGELOG.md +++ b/packages/legacy/migrate-config-cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @graphql-mesh/migrate-config-cli +## 1.7.0 + +### Patch Changes + +- Updated dependencies + [[`9ed6940`](https://github.com/ardatan/graphql-mesh/commit/9ed6940b904acff47d7fc8e0fbe52d7da9e304f2)]: + - @graphql-mesh/compose-cli@1.5.0 + ## 1.6.19 ### Patch Changes diff --git a/packages/legacy/migrate-config-cli/package.json b/packages/legacy/migrate-config-cli/package.json index 6bd8c2de32d34..1dc288093154d 100644 --- a/packages/legacy/migrate-config-cli/package.json +++ b/packages/legacy/migrate-config-cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-mesh/migrate-config-cli", - "version": "1.6.19", + "version": "1.7.0", "type": "module", "repository": { "type": "git", @@ -39,7 +39,7 @@ }, "dependencies": { "@graphql-mesh/cli": "^0.100.14", - "@graphql-mesh/compose-cli": "^1.4.18", + "@graphql-mesh/compose-cli": "^1.5.0", "@graphql-mesh/config": "^0.108.14", "@graphql-mesh/types": "^0.104.13", "@graphql-mesh/utils": "^0.104.13", diff --git a/yarn.lock b/yarn.lock index f74f94f3008d6..0e7ac634ee7c1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3914,7 +3914,7 @@ __metadata: "@apollo/subgraph": "npm:^2.9.3" "@graphql-hive/gateway": "npm:^2.0.0" "@graphql-mesh/cache-upstash-redis": "npm:^0.1.13" - "@graphql-mesh/compose-cli": "npm:^1.4.18" + "@graphql-mesh/compose-cli": "npm:^1.5.0" "@graphql-yoga/plugin-response-cache": "npm:^3.13.1" graphql: "npm:^16.9.0" graphql-yoga: "npm:^5.13.4" @@ -6844,7 +6844,7 @@ __metadata: languageName: unknown linkType: soft -"@graphql-mesh/compose-cli@npm:*, @graphql-mesh/compose-cli@npm:1.4.18, @graphql-mesh/compose-cli@npm:^1.4.18, @graphql-mesh/compose-cli@workspace:*, @graphql-mesh/compose-cli@workspace:^, @graphql-mesh/compose-cli@workspace:packages/compose-cli": +"@graphql-mesh/compose-cli@npm:*, @graphql-mesh/compose-cli@npm:1.5.0, @graphql-mesh/compose-cli@npm:^1.5.0, @graphql-mesh/compose-cli@workspace:*, @graphql-mesh/compose-cli@workspace:^, @graphql-mesh/compose-cli@workspace:packages/compose-cli": version: 0.0.0-use.local resolution: "@graphql-mesh/compose-cli@workspace:packages/compose-cli" dependencies: @@ -7124,7 +7124,7 @@ __metadata: resolution: "@graphql-mesh/migrate-config-cli@workspace:packages/legacy/migrate-config-cli" dependencies: "@graphql-mesh/cli": "npm:^0.100.14" - "@graphql-mesh/compose-cli": "npm:^1.4.18" + "@graphql-mesh/compose-cli": "npm:^1.5.0" "@graphql-mesh/config": "npm:^0.108.14" "@graphql-mesh/types": "npm:^0.104.13" "@graphql-mesh/utils": "npm:^0.104.13" @@ -23299,7 +23299,7 @@ __metadata: "@graphql-codegen/typescript": "npm:5.0.2" "@graphql-codegen/typescript-resolvers": "npm:5.1.0" "@graphql-hive/gateway": "npm:^2.0.0" - "@graphql-mesh/compose-cli": "npm:1.4.18" + "@graphql-mesh/compose-cli": "npm:1.5.0" "@graphql-yoga/plugin-apollo-inline-trace": "npm:3.16.0" "@types/node": "npm:^24.4.0" concurrently: "npm:9.2.1"