From 1383fbaf20ea3fafc0fa29caccdbd093139f6b42 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Tue, 24 Mar 2026 11:20:09 +0000 Subject: [PATCH] chore(release): v16.13.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v16.13.2 (2026-03-24) #### Docs 📝 * [#4611](https://github.com/graphql/graphql-js/pull/4611) add dev mode docs ([@yaacovCR](https://github.com/yaacovCR)) #### Polish 💅 * [#4631](https://github.com/graphql/graphql-js/pull/4631) Use `Object.create(null)` over `{}` to avoid prototype issues - v16 ([@benjie](https://github.com/benjie)) #### Internal 🏠 * [#4626](https://github.com/graphql/graphql-js/pull/4626) backport: internal: streamline release process (#4615) ([@yaacovCR](https://github.com/yaacovCR)) #### Committers: 2 * Benjie([@benjie](https://github.com/benjie)) * 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 4c9fc3a7dd..dbb21f4715 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.13.1", + "version": "16.13.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.13.1", + "version": "16.13.2", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index 44598aad66..cf84a45e85 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.13.1", + "version": "16.13.2", "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 4011687f40..6b6c73aade 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.1' as string; +export const version = '16.13.2' as string; /** * An object containing the components of the GraphQL.js version string @@ -12,6 +12,6 @@ export const version = '16.13.1' as string; export const versionInfo = Object.freeze({ major: 16 as number, minor: 13 as number, - patch: 1 as number, + patch: 2 as number, preReleaseTag: null as string | null, });