From 20d59a271a039acf2ab4d6754aa5b9838ee2d62e Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Wed, 6 May 2026 15:24:13 +0300 Subject: [PATCH] chore(release): v16.14.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v16.14.0 (2026-05-03) #### New Feature ๐Ÿš€ * [#4317](https://github.com/graphql/graphql-js/pull/4317) Allow configuration of the `ofType` introspection depth ([@Nols1000](https://github.com/Nols1000)) * [#4521](https://github.com/graphql/graphql-js/pull/4521) Add support for directives on directive definitions ([@BoD](https://github.com/BoD)) #### Bug Fix ๐Ÿž * [#4652](https://github.com/graphql/graphql-js/pull/4652) Fix valueFromAST variable own-property checks ([@abishekgiri](https://github.com/abishekgiri)) #### Docs ๐Ÿ“ * [#4706](https://github.com/graphql/graphql-js/pull/4706) Fix mistake in GraphQLError guidance ([@benjie](https://github.com/benjie)) #### Committers: 4 * Abishek Kumar Giri([@abishekgiri](https://github.com/abishekgiri)) * Benjie([@benjie](https://github.com/benjie)) * Benoit 'BoD' Lubek([@BoD](https://github.com/BoD)) * Nils-Bรถrge Margotti([@Nols1000](https://github.com/Nols1000)) --- package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index dbb21f4715..1481176b31 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.13.2", + "version": "16.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.13.2", + "version": "16.14.0", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index cf84a45e85..2591db7aa1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.13.2", + "version": "16.14.0", "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 6b6c73aade..09e9977b16 100644 --- a/src/version.ts +++ b/src/version.ts @@ -4,14 +4,14 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '16.13.2' as string; +export const version = '16.14.0' as string; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 16 as number, - minor: 13 as number, - patch: 2 as number, + minor: 14 as number, + patch: 0 as number, preReleaseTag: null as string | null, });