From af939812a2c2561ba88c7e8cf8ff4432e6b9a56f Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Wed, 4 Mar 2026 10:47:39 +0200 Subject: [PATCH] chore(release): v16.13.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v16.13.1 (2026-03-04) #### Docs 📝 * [#4433](https://github.com/graphql/graphql-js/pull/4433) docs: move migrate from express graphql guide to graphqlJS docs ([@sarahxsanders](https://github.com/sarahxsanders)) #### Internal 🏠 * [#4608](https://github.com/graphql/graphql-js/pull/4608) internal: backport new release flow from 17.x.x ([@yaacovCR](https://github.com/yaacovCR)) #### Committers: 2 * Sarah Sanders([@sarahxsanders](https://github.com/sarahxsanders)) * 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 faae9fa750..4c9fc3a7dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.13.0", + "version": "16.13.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.13.0", + "version": "16.13.1", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index f117839cbb..44598aad66 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.13.0", + "version": "16.13.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 b97b604a90..4011687f40 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 = '16.13.0' as string; +export const version = '16.13.1' as string; /** * An object containing the components of the GraphQL.js version string @@ -12,6 +12,6 @@ export const version = '16.13.0' as string; export const versionInfo = Object.freeze({ major: 16 as number, minor: 13 as number, - patch: 0 as number, + patch: 1 as number, preReleaseTag: null as string | null, });