From 70e0062a9acbb8402aa704b1f41d93d44ade03c2 Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Sun, 10 May 2026 22:52:32 +0300 Subject: [PATCH] chore(release): v17.0.0-beta.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v17.0.0-beta.1 (2026-05-10) #### Breaking Change 💥 * [#4729](https://github.com/graphql/graphql-js/pull/4729) subscribe: replace perEventExecutor with mapSourceToResponseEvent ([@yaacovCR](https://github.com/yaacovCR)) * [#4730](https://github.com/graphql/graphql-js/pull/4730) chore(engines): drop Node 20 support ([@yaacovCR](https://github.com/yaacovCR)) * [#4731](https://github.com/graphql/graphql-js/pull/4731) refactor(execution): extract buildResolveInfo helper ([@yaacovCR](https://github.com/yaacovCR)) #### New Feature 🚀 * [#4733](https://github.com/graphql/graphql-js/pull/4733) feat: support node v26 ([@yaacovCR](https://github.com/yaacovCR)) #### Bug Fix 🐞 * [#4725](https://github.com/graphql/graphql-js/pull/4725) chore: forward-port directives on directive definitions (#4521) ([@yaacovCR](https://github.com/yaacovCR)) * [#4727](https://github.com/graphql/graphql-js/pull/4727) chore: forward-port configuration of the `ofType` introspection depth (#4317) ([@yaacovCR](https://github.com/yaacovCR)) #### Polish 💅 * [#4728](https://github.com/graphql/graphql-js/pull/4728) polish: group FRAGMENT_VARIABLE_DEFINITION with executable defs ([@yaacovCR](https://github.com/yaacovCR)) #### Internal 🏠
3 PRs were merged * [#4460](https://github.com/graphql/graphql-js/pull/4460) internal: use node experimental-strip-types instead of ts-node ([@yaacovCR](https://github.com/yaacovCR)) * [#4732](https://github.com/graphql/graphql-js/pull/4732) internal: use node test instead of mocha + c8 ([@yaacovCR](https://github.com/yaacovCR)) * [#4734](https://github.com/graphql/graphql-js/pull/4734) internal: add comment re: rewriteRelativeImportExtensions ([@yaacovCR](https://github.com/yaacovCR))
#### Committers: 1 * Yaacov Rydzinski ([@yaacovCR](https://github.com/yaacovCR)) --- package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0006e31a96..ff1468f120 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "17.0.0-beta.0", + "version": "17.0.0-beta.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graphql", - "version": "17.0.0-beta.0", + "version": "17.0.0-beta.1", "license": "MIT", "devDependencies": { "@types/chai": "5.2.3", diff --git a/package.json b/package.json index 801e45a601..7eb475aedb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "17.0.0-beta.0", + "version": "17.0.0-beta.1", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, diff --git a/src/version.ts b/src/version.ts index 9fcf6efd61..34e0fe6749 100644 --- a/src/version.ts +++ b/src/version.ts @@ -4,7 +4,7 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '17.0.0-beta.0' as string; +export const version = '17.0.0-beta.1' as string; /** * An object containing the components of the GraphQL.js version string @@ -18,5 +18,5 @@ export const versionInfo: Readonly<{ major: 17, minor: 0, patch: 0, - preReleaseTag: 'beta.0', + preReleaseTag: 'beta.1', });