From 398f104f9b8efe7de1d957142caa63af8468583a Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Tue, 10 Mar 2026 17:07:24 +0200 Subject: [PATCH] chore(release): v17.0.0-alpha.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v17.0.0-alpha.13 (2026-03-10) #### Bug Fix 🐞 * [#4619](https://github.com/graphql/graphql-js/pull/4619) polish: enable useUnknownInCatchVariables ([@yaacovCR](https://github.com/yaacovCR)) #### Polish 💅 * [#4621](https://github.com/graphql/graphql-js/pull/4621) polish: fix deno TS errors ([@yaacovCR](https://github.com/yaacovCR)) #### Internal 🏠
2 PRs were merged * [#4618](https://github.com/graphql/graphql-js/pull/4618) fix package.json per build instructions ([@yaacovCR](https://github.com/yaacovCR)) * [#4620](https://github.com/graphql/graphql-js/pull/4620) internal: add type checking for deno dist ([@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 e8828e4767..bd152a6dbf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "17.0.0-alpha.12", + "version": "17.0.0-alpha.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graphql", - "version": "17.0.0-alpha.12", + "version": "17.0.0-alpha.13", "license": "MIT", "devDependencies": { "@swc/core": "1.15.11", diff --git a/package.json b/package.json index 9291ed79a8..b554ad6a63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "17.0.0-alpha.12", + "version": "17.0.0-alpha.13", "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 886bb74874..8757ea4f97 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-alpha.12' as string; +export const version = '17.0.0-alpha.13' as string; /** * An object containing the components of the GraphQL.js version string @@ -13,5 +13,5 @@ export const versionInfo = Object.freeze({ major: 17 as number, minor: 0 as number, patch: 0 as number, - preReleaseTag: 'alpha.12' as string | null, + preReleaseTag: 'alpha.13' as string | null, });