Skip to content

Commit 57b385b

Browse files
authored
chore(release): v16.14.0 (#4720)
## v16.14.0 (2026-05-03) #### New Feature 🚀 * [#4317](#4317) Allow configuration of the `ofType` introspection depth ([@Nols1000](https://github.com/Nols1000)) * [#4521](#4521) Add experimental support for directives on directive definitions ([@BoD](https://github.com/BoD)) #### Bug Fix 🐞 * [#4652](#4652) Fix valueFromAST variable own-property checks ([@abishekgiri](https://github.com/abishekgiri)) #### Docs 📝 * [#4706](#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))
1 parent 85700ed commit 57b385b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql",
3-
"version": "16.13.2",
3+
"version": "16.14.0",
44
"description": "A Query Language and Runtime which can target any service.",
55
"license": "MIT",
66
"private": true,

src/version.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
/**
55
* A string containing the version of the GraphQL.js library
66
*/
7-
export const version = '16.13.2' as string;
7+
export const version = '16.14.0' as string;
88

99
/**
1010
* An object containing the components of the GraphQL.js version string
1111
*/
1212
export const versionInfo = Object.freeze({
1313
major: 16 as number,
14-
minor: 13 as number,
15-
patch: 2 as number,
14+
minor: 14 as number,
15+
patch: 0 as number,
1616
preReleaseTag: null as string | null,
1717
});

0 commit comments

Comments
 (0)