Skip to content

Commit 9617473

Browse files
committed
chore(release): v17.0.1
## v17.0.1 (2026-06-16) #### Bug Fix 🐞 * [#4824](#4824) fix(diagnostics): emit asyncStart after promise settlement to match native `tracePromise` ([@logaretm](https://github.com/logaretm)) #### Internal 🏠 <details> <summary> 2 PRs were merged </summary> * [#4823](#4823) chore(npm): remove obsolete ESM-only package build ([@yaacovCR](https://github.com/yaacovCR)) * [#4825](#4825) chore(release): protect latest release channels ([@yaacovCR](https://github.com/yaacovCR)) </details> #### Committers: 2 * Abdelrahman Awad([@logaretm](https://github.com/logaretm)) * Yaacov Rydzinski ([@yaacovCR](https://github.com/yaacovCR))
1 parent 851bd6a commit 9617473

3 files changed

Lines changed: 5 additions & 5 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": "17.0.0",
3+
"version": "17.0.1",
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,7 +4,7 @@
44
// automatically updated by "npm version" command.
55

66
/** A string containing the version of the GraphQL.js library */
7-
export const version = '17.0.0' as string;
7+
export const version = '17.0.1' as string;
88

99
/** An object containing the components of the GraphQL.js version string */
1010
export const versionInfo: Readonly<{
@@ -15,6 +15,6 @@ export const versionInfo: Readonly<{
1515
}> = Object.freeze({
1616
major: 17,
1717
minor: 0,
18-
patch: 0,
18+
patch: 1,
1919
preReleaseTag: null,
2020
});

0 commit comments

Comments
 (0)