From fc6e2dfdbd518524f806e30dc5d5ac8aa8eff1d9 Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Tue, 2 Jun 2026 02:22:51 +0300 Subject: [PATCH 1/2] fix: generated version documentation (#4778) --- resources/gen-version.js | 10 ++++------ src/version.ts | 12 ++++-------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/resources/gen-version.js b/resources/gen-version.js index b73621bce7..93539f035d 100644 --- a/resources/gen-version.js +++ b/resources/gen-version.js @@ -12,17 +12,15 @@ if (!versionMatch) { const [, major, minor, patch, preReleaseTag] = versionMatch; const body = ` +/** @category Version */ + // Note: This file is autogenerated using "resources/gen-version.js" script and // automatically updated by "npm version" command. -/** - * A string containing the version of the GraphQL.js library - */ +/** A string containing the version of the GraphQL.js library */ export const version = '${version}' as string; -/** - * An object containing the components of the GraphQL.js version string - */ +/** An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: ${major} as number, minor: ${minor} as number, diff --git a/src/version.ts b/src/version.ts index b12d3b0679..14a85d9147 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,16 +1,12 @@ +/** @category Version */ + // Note: This file is autogenerated using "resources/gen-version.js" script and // automatically updated by "npm version" command. -/** - * A string containing the version of the GraphQL.js library - * @category Version - */ +/** A string containing the version of the GraphQL.js library */ export const version = '16.14.0' as string; -/** - * An object containing the components of the GraphQL.js version string - * @category Version - */ +/** An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 16 as number, minor: 14 as number, From 9c78a07f3399431187871867f4c734449ce56b97 Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Tue, 2 Jun 2026 02:36:39 +0300 Subject: [PATCH 2/2] chore(release): v16.14.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## v16.14.1 (2026-06-02) #### Docs 📝
9 PRs were merged * [#4737](https://github.com/graphql/graphql-js/pull/4737) docs: refresh upgrade guide and v17 topics ([@yaacovCR](https://github.com/yaacovCR)) * [#4741](https://github.com/graphql/graphql-js/pull/4741) docs: add v16 API docs lint coverage ([@yaacovCR](https://github.com/yaacovCR)) * [#4748](https://github.com/graphql/graphql-js/pull/4748) docs: update banner ([@yaacovCR](https://github.com/yaacovCR)) * [#4750](https://github.com/graphql/graphql-js/pull/4750) docs: use api docs generated from inline jsdoc comments ([@yaacovCR](https://github.com/yaacovCR)) * [#4754](https://github.com/graphql/graphql-js/pull/4754) docs: update website caniuse-lite data ([@yaacovCR](https://github.com/yaacovCR)) * [#4755](https://github.com/graphql/graphql-js/pull/4755) docs: hide internal type member __validationErrors ([@yaacovCR](https://github.com/yaacovCR)) * [#4757](https://github.com/graphql/graphql-js/pull/4757) docs: fix inline examples, deprecation descriptions, type category ([@yaacovCR](https://github.com/yaacovCR)) * [#4759](https://github.com/graphql/graphql-js/pull/4759) docs: fix static export redirect config ([@yaacovCR](https://github.com/yaacovCR)) * [#4767](https://github.com/graphql/graphql-js/pull/4767) docs: fix Post_body example variable ([@fallintoplace](https://github.com/fallintoplace))
#### Polish 💅 * [#4738](https://github.com/graphql/graphql-js/pull/4738) chore(tests): add test for directive extensions without flag enabled ([@yaacovCR](https://github.com/yaacovCR)) #### Internal 🏠 * [#4778](https://github.com/graphql/graphql-js/pull/4778) fix: generated version documentation ([@yaacovCR](https://github.com/yaacovCR)) #### Committers: 2 * Minh Vu([@fallintoplace](https://github.com/fallintoplace)) * 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 e93dd3511a..070e2cce7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.14.0", + "version": "16.14.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.14.0", + "version": "16.14.1", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index 9195d3ac1d..0a8fcc95c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.14.0", + "version": "16.14.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 14a85d9147..94092bc133 100644 --- a/src/version.ts +++ b/src/version.ts @@ -4,12 +4,12 @@ // automatically updated by "npm version" command. /** A string containing the version of the GraphQL.js library */ -export const version = '16.14.0' as string; +export const version = '16.14.1' as string; /** An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 16 as number, minor: 14 as number, - patch: 0 as number, + patch: 1 as number, preReleaseTag: null as string | null, });