Skip to content
Open
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/image-preview-absolute-url.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lsp-server-debounce-promise-dependency.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lsp-server-logger-import.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/schema-kitchen-sink-optional-fields.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ws-security-update.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/graphiql-vite-react-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"start": "react-router-serve dist/server/index.js"
},
"dependencies": {
"@graphiql/react": "^0.37.5",
"@graphiql/react": "^0.37.6",
"@react-router/fs-routes": "^7",
"@react-router/node": "^7",
"@react-router/serve": "^7",
Expand Down
2 changes: 1 addition & 1 deletion examples/graphiql-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"@graphiql/plugin-code-exporter": "^5.1.2",
"@graphiql/plugin-explorer": "^5.1.2",
"@graphiql/react": "^0.37.5",
"@graphiql/react": "^0.37.6",
"@graphiql/toolkit": "^0.12.0",
"graphiql": "^5.2.3",
"graphql": "^16",
Expand Down
2 changes: 1 addition & 1 deletion examples/monaco-graphql-react-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dependencies": {
"@graphiql/toolkit": "^0.12.0",
"graphql": "^16",
"graphql-language-service": "^5.5.1",
"graphql-language-service": "^5.5.2",
"jsonc-parser": "^3",
"monaco-editor": "^0.52",
"monaco-graphql": "^1.8.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/monaco-graphql-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"graphql": "^16",
"graphql-language-service": "^5.5.1",
"graphql-language-service": "^5.5.2",
"json-schema": "^0.4",
"jsonc-parser": "^3",
"monaco-editor": "^0.52",
Expand Down
7 changes: 7 additions & 0 deletions packages/codemirror-graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 2.2.7

### Patch Changes

- Updated dependencies [[`a526a10`](https://github.com/graphql/graphiql/commit/a526a10ac186dd242fda152dddbef3072fc10ee8)]:
- graphql-language-service@5.5.2

## 2.2.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/codemirror-graphql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codemirror-graphql",
"version": "2.2.6",
"version": "2.2.7",
"description": "GraphQL mode and helpers for CodeMirror.",
"contributors": [
"Hyohyeon Jeong <asiandrummer@fb.com>",
Expand Down Expand Up @@ -46,7 +46,7 @@
"// TEMPORARILY PINNED until we fix graphql 15 support": "",
"dependencies": {
"@types/codemirror": "^0.0.90",
"graphql-language-service": "5.5.1"
"graphql-language-service": "5.5.2"
},
"devDependencies": {
"@codemirror/language": "^6.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/graphiql-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @graphiql/react

## 0.37.6

### Patch Changes

- [#4332](https://github.com/graphql/graphiql/pull/4332) [`61d138f`](https://github.com/graphql/graphiql/commit/61d138f8d13e79cb06d3fa44cd2f50ba8f223707) Thanks [@vishwakt](https://github.com/vishwakt)! - Fix image previews in the response viewer fetching from the wrong host. Monaco splits the hovered word on `:`, so a full URL like `https://example.com/img.png` reaches the preview as the protocol-relative `//example.com/img.png`. The preview stripped the leading character, turning that into the host-relative `/example.com/img.png` and fetching it from the current origin. The original host is now preserved.

- Updated dependencies [[`a526a10`](https://github.com/graphql/graphiql/commit/a526a10ac186dd242fda152dddbef3072fc10ee8)]:
- graphql-language-service@5.5.2

## 0.37.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphiql-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphiql/react",
"version": "0.37.5",
"version": "0.37.6",
"sideEffects": [
"dist/setup-workers/*",
"*.css"
Expand Down Expand Up @@ -58,7 +58,7 @@
"clsx": "^1.2.1",
"framer-motion": "^12.12",
"get-value": "^3.0.1",
"graphql-language-service": "^5.5.1",
"graphql-language-service": "^5.5.2",
"jsonc-parser": "^3.3.1",
"markdown-it": "^14.1.0",
"monaco-editor": "0.52.2",
Expand Down
11 changes: 11 additions & 0 deletions packages/graphql-language-service-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# graphql-language-service-server

## 2.14.10

### Patch Changes

- [#4328](https://github.com/graphql/graphiql/pull/4328) [`d6b71ce`](https://github.com/graphql/graphiql/commit/d6b71ce37514eb5820b8be261ddc5fb75fe9e2ce) Thanks [@vishwakt](https://github.com/vishwakt)! - Move `debounce-promise` from `devDependencies` to `dependencies`. It is imported at runtime in `MessageProcessor.ts`, so it must be a regular dependency. Previously the package only resolved it via hoisting, which fails under strict installs (e.g. `pnpm` v11), causing `graphql-lsp` to crash with `Cannot find module 'debounce-promise'`.

- [#4331](https://github.com/graphql/graphiql/pull/4331) [`e1077b9`](https://github.com/graphql/graphiql/commit/e1077b950293b461dc096e2dc7d46ab7dbe13f5d) Thanks [@vishwakt](https://github.com/vishwakt)! - Import `Logger` from `vscode-jsonrpc` instead of `vscode-languageserver`. `Logger` is defined in `vscode-jsonrpc` (a direct dependency) and only reached `vscode-languageserver` through a transitive re-export, which `tsgo` failed to resolve on CI (`Module '"vscode-languageserver"' has no exported member 'Logger'`). Importing from the package that owns the type avoids relying on that fragile re-export chain.

- Updated dependencies [[`a526a10`](https://github.com/graphql/graphiql/commit/a526a10ac186dd242fda152dddbef3072fc10ee8)]:
- graphql-language-service@5.5.2

## 2.14.9

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graphql-language-service-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-language-service-server",
"version": "2.14.9",
"version": "2.14.10",
"description": "Server process backing the GraphQL Language Service",
"contributors": [
"Greg Hurrell <greg@hurrell.net> (https://greg.hurrell.net)",
Expand Down Expand Up @@ -52,7 +52,7 @@
"fast-glob": "^3.2.7",
"glob": "^7.2.0",
"graphql-config": "^5.1.6",
"graphql-language-service": "^5.5.1",
"graphql-language-service": "^5.5.2",
"lru-cache": "^10.2.0",
"mkdirp": "^1.0.4",
"node-abort-controller": "^3.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/graphql-language-service/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# graphql-language-service

## 5.5.2

### Patch Changes

- [#4329](https://github.com/graphql/graphiql/pull/4329) [`a526a10`](https://github.com/graphql/graphiql/commit/a526a10ac186dd242fda152dddbef3072fc10ee8) Thanks [@vishwakt](https://github.com/vishwakt)! - Make the fields block optional when parsing object, interface, input, and enum type definitions (and their extensions) in the online parser. Per the GraphQL spec these blocks are optional, so spec-valid SDL such as `extend type Foo @onType` or `type Foo @onType` (directives only, no body) no longer reports `invalidchar` during syntax highlighting.

## 5.5.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-language-service/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-language-service",
"version": "5.5.1",
"version": "5.5.2",
"description": "The official, runtime independent Language Service for GraphQL",
"contributors": [
"GraphQL Contributors"
Expand Down
6 changes: 6 additions & 0 deletions packages/vscode-graphql-execution/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# vscode-graphql-execution

## 0.3.6

### Patch Changes

- [#4306](https://github.com/graphql/graphiql/pull/4306) [`7aefde8`](https://github.com/graphql/graphiql/commit/7aefde86dbd23948939853ca9f9d2f066bc35b8f) Thanks [@dependabot](https://github.com/apps/dependabot)! - Bump `ws` to 8.20.1 to address [GHSA-58qx-3vcg-4xpx](https://github.com/advisories/GHSA-58qx-3vcg-4xpx) (uninitialized memory disclosure in `websocket.close()`).

## 0.3.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-graphql-execution/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-graphql-execution",
"version": "0.3.5",
"version": "0.3.6",
"displayName": "GraphQL: Inline Operation Execution",
"description": "Execute graphql operations from your code (revived!)",
"publisher": "GraphQL",
Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3099,7 +3099,7 @@ __metadata:
languageName: unknown
linkType: soft

"@graphiql/react@npm:^0.37.4, @graphiql/react@npm:^0.37.5, @graphiql/react@workspace:packages/graphiql-react":
"@graphiql/react@npm:^0.37.4, @graphiql/react@npm:^0.37.6, @graphiql/react@workspace:packages/graphiql-react":
version: 0.0.0-use.local
resolution: "@graphiql/react@workspace:packages/graphiql-react"
dependencies:
Expand All @@ -3119,7 +3119,7 @@ __metadata:
framer-motion: "npm:^12.12"
get-value: "npm:^3.0.1"
graphql: "npm:^16.9.0"
graphql-language-service: "npm:^5.5.1"
graphql-language-service: "npm:^5.5.2"
jsonc-parser: "npm:^3.3.1"
markdown-it: "npm:^14.1.0"
monaco-editor: "npm:0.52.2"
Expand Down Expand Up @@ -9289,7 +9289,7 @@ __metadata:
codemirror: "npm:^5.65.3"
cross-env: "npm:^7.0.2"
graphql: "npm:^16.9.0"
graphql-language-service: "npm:5.5.1"
graphql-language-service: "npm:5.5.2"
rimraf: "npm:^3.0.2"
sane: "npm:2.0.0"
peerDependencies:
Expand Down Expand Up @@ -11363,7 +11363,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "example-graphiql-vite-react-router@workspace:examples/graphiql-vite-react-router"
dependencies:
"@graphiql/react": "npm:^0.37.5"
"@graphiql/react": "npm:^0.37.6"
"@react-router/dev": "npm:^7"
"@react-router/fs-routes": "npm:^7"
"@react-router/node": "npm:^7"
Expand Down Expand Up @@ -11404,7 +11404,7 @@ __metadata:
"@babel/preset-react": "npm:^7"
"@graphiql/plugin-code-exporter": "npm:^5.1.2"
"@graphiql/plugin-explorer": "npm:^5.1.2"
"@graphiql/react": "npm:^0.37.5"
"@graphiql/react": "npm:^0.37.6"
"@graphiql/toolkit": "npm:^0.12.0"
ajv-formats: "npm:^3"
babel-loader: "npm:^9"
Expand Down Expand Up @@ -11455,7 +11455,7 @@ __metadata:
"@graphiql/toolkit": "npm:^0.12.0"
"@vitejs/plugin-react": "npm:^4"
graphql: "npm:^16"
graphql-language-service: "npm:^5.5.1"
graphql-language-service: "npm:^5.5.2"
jsonc-parser: "npm:^3"
monaco-editor: "npm:^0.52"
monaco-graphql: "npm:^1.8.0"
Expand Down Expand Up @@ -11483,7 +11483,7 @@ __metadata:
file-loader: "npm:^6"
fork-ts-checker-webpack-plugin: "npm:^7"
graphql: "npm:^16"
graphql-language-service: "npm:^5.5.1"
graphql-language-service: "npm:^5.5.2"
html-webpack-plugin: "npm:^5"
json-schema: "npm:^0.4"
jsonc-parser: "npm:^3"
Expand Down Expand Up @@ -13104,7 +13104,7 @@ __metadata:
glob: "npm:^7.2.0"
graphql: "npm:^16.9.0"
graphql-config: "npm:^5.1.6"
graphql-language-service: "npm:^5.5.1"
graphql-language-service: "npm:^5.5.2"
lru-cache: "npm:^10.2.0"
mkdirp: "npm:^1.0.4"
msw: "npm:^2.13.4"
Expand All @@ -13124,7 +13124,7 @@ __metadata:
languageName: unknown
linkType: soft

"graphql-language-service@npm:5.5.1, graphql-language-service@npm:^5.3.0, graphql-language-service@npm:^5.5.1, graphql-language-service@workspace:packages/graphql-language-service":
"graphql-language-service@npm:5.5.2, graphql-language-service@npm:^5.3.0, graphql-language-service@npm:^5.5.1, graphql-language-service@npm:^5.5.2, graphql-language-service@workspace:packages/graphql-language-service":
version: 0.0.0-use.local
resolution: "graphql-language-service@workspace:packages/graphql-language-service"
dependencies:
Expand Down