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
8 changes: 0 additions & 8 deletions .changeset/graphql-config-1752-dependencies.md

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change log

## 5.1.6

### Patch Changes

- [#1752](https://github.com/graphql-hive/graphql-config/pull/1752) [`362edd2`](https://github.com/graphql-hive/graphql-config/commit/362edd2bba0d26c89f3daf27e9cce8335508541c) Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:

- Updated dependency [`@graphql-tools/url-loader@^9.0.0` ↗︎](https://www.npmjs.com/package/@graphql-tools/url-loader/v/9.0.0) (from `^8.0.0`, in `dependencies`)
- Updated dependency [`@graphql-tools/utils@^11.0.0` ↗︎](https://www.npmjs.com/package/@graphql-tools/utils/v/11.0.0) (from `^10.0.0`, in `dependencies`)

## 5.1.5

### Patch Changes
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-config",
"version": "5.1.5",
"version": "5.1.6",
"description": "The easiest way to configure your development environment with your GraphQL schema (supported by most tools, editors & IDEs)",
"sideEffects": false,
"main": "dist/cjs/index.js",
Expand Down Expand Up @@ -80,12 +80,13 @@
"del": "8.0.1",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"graphql": "16.12.0",
"graphql": "16.13.1",
"husky": "9.1.7",
"lint-staged": "15.5.2",
"make-dir": "5.0.0",
"parent-module": "3.1.0",
"make-dir": "5.1.0",
"parent-module": "3.2.0",
"prettier": "3.5.3",
"rollup": "4.59.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsx": "4.19.3",
Expand Down Expand Up @@ -138,6 +139,9 @@
],
"overrides": {
"glob": "11.1.0"
},
"patchedDependencies": {
"vite": "patches/vite.patch"
}
}
}
13 changes: 13 additions & 0 deletions patches/vite.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/dist/node/index.d.ts b/dist/node/index.d.ts
index f725d4ac42a2dcf9146818ba0a196d005d570fb0..1add103d537c46147a99531a0e50ac0354462af3 100644
--- a/dist/node/index.d.ts
+++ b/dist/node/index.d.ts
@@ -2,7 +2,7 @@
import { PluginHooks, RollupError, SourceMap, ModuleInfo, PartialResolvedId, RollupOptions, InputOption, ModuleFormat, WatcherOptions, RollupOutput, RollupWatcher, PluginContext, InputOptions, CustomPluginOptions, LoadResult, SourceDescription, PluginContextMeta, RollupLog, OutputBundle, OutputChunk, ObjectHook, ResolveIdResult, TransformPluginContext, ExistingRawSourceMap, SourceMapInput, GetManualChunk } from 'rollup';
import * as rollup from 'rollup';
export { rollup as Rollup };
-export { parseAst, parseAstAsync } from 'rollup/parseAst';
+export { parseAst, parseAstAsync } from 'rollup/dist/parseAst.js';
import * as http from 'node:http';
import { OutgoingHttpHeaders, ClientRequestArgs, IncomingMessage, ClientRequest, Agent, Server, ServerResponse } from 'node:http';
import { Http2SecureServer } from 'node:http2';
Loading
Loading