Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/@graphql-mesh_apollo-link-8680-dependencies.md

This file was deleted.

25 changes: 0 additions & 25 deletions .changeset/sparkly-lions-make.md

This file was deleted.

2 changes: 1 addition & 1 deletion e2e/cache-control/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions examples/v1-next/apollo-federation-compatibility/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# example-apollo-federation-compatibility

## 1.8.0

## 1.7.18

## 1.7.17
Expand Down
4 changes: 2 additions & 2 deletions examples/v1-next/apollo-federation-compatibility/package.json
Original file line number Diff line number Diff line change
@@ -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 <ardatanrikulu@gmail.com>",
"private": true,
Expand All @@ -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"
Expand Down
28 changes: 28 additions & 0 deletions packages/compose-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/compose-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/compose-cli",
"version": "1.4.18",
"version": "1.5.0",
"type": "module",
"repository": {
"type": "git",
Expand Down
11 changes: 11 additions & 0 deletions packages/legacy/apollo-link/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/legacy/apollo-link/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/apollo-link",
"version": "0.106.13",
"version": "0.106.14",
"type": "module",
"repository": {
"type": "git",
Expand Down
8 changes: 8 additions & 0 deletions packages/legacy/migrate-config-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/legacy/migrate-config-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphql-mesh/migrate-config-cli",
"version": "1.6.19",
"version": "1.7.0",
"type": "module",
"repository": {
"type": "git",
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down