Skip to content

Commit 1383fba

Browse files
committed
chore(release): v16.13.2
## v16.13.2 (2026-03-24) #### Docs 📝 * [#4611](#4611) add dev mode docs ([@yaacovCR](https://github.com/yaacovCR)) #### Polish 💅 * [#4631](#4631) Use `Object.create(null)` over `{}` to avoid prototype issues - v16 ([@benjie](https://github.com/benjie)) #### Internal 🏠 * [#4626](#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))
1 parent 13f130d commit 1383fba

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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.1",
3+
"version": "16.13.2",
44
"description": "A Query Language and Runtime which can target any service.",
55
"license": "MIT",
66
"private": true,

src/version.ts

Lines changed: 2 additions & 2 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.1' as string;
7+
export const version = '16.13.2' 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,
1414
minor: 13 as number,
15-
patch: 1 as number,
15+
patch: 2 as number,
1616
preReleaseTag: null as string | null,
1717
});

0 commit comments

Comments
 (0)