Skip to content

Commit 99c4e2b

Browse files
committed
chore(release): v17.0.0-rc.0
## v17.0.0-rc.0 (2026-06-02) #### New Feature 🚀 * [#4670](#4670) feat(v17): Implement tracing channels ([@logaretm](https://github.com/logaretm)) #### Bug Fix 🐞 * [#4761](#4761) fix: DeferStreamDirectiveOnRootField forbids fragments on abstract types ([@robrichard](https://github.com/robrichard)) * [#4762](#4762) fix: DeferStreamDirectiveOnValidOperations fragment tracking ([@robrichard](https://github.com/robrichard)) * [#4784](#4784) fix: do not copy over stack from error cause ([@Malien](https://github.com/Malien)) #### Docs 📝 * [#4781](#4781) docs: improve deprecation information regarding originalError and cause ([@yaacovCR](https://github.com/yaacovCR)) #### Committers: 4 * Abdelrahman Awad([@logaretm](https://github.com/logaretm)) * Rob Richard([@robrichard](https://github.com/robrichard)) * Yaacov Rydzinski ([@yaacovCR](https://github.com/yaacovCR)) * Yaroslav Petryk([@Malien](https://github.com/Malien))
1 parent 4c9d754 commit 99c4e2b

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql",
3-
"version": "17.0.0-beta.2",
3+
"version": "17.0.0-rc.0",
44
"description": "A Query Language and Runtime which can target any service.",
55
"license": "MIT",
66
"private": true,
@@ -73,6 +73,6 @@
7373
"typescript-eslint": "8.59.0"
7474
},
7575
"publishConfig": {
76-
"tag": "beta"
76+
"tag": "rc"
7777
}
7878
}

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-beta.2' as string;
7+
export const version = '17.0.0-rc.0' as string;
88

99
/** An object containing the components of the GraphQL.js version string */
1010
export const versionInfo: Readonly<{
@@ -16,5 +16,5 @@ export const versionInfo: Readonly<{
1616
major: 17,
1717
minor: 0,
1818
patch: 0,
19-
preReleaseTag: 'beta.2',
19+
preReleaseTag: 'rc.0',
2020
});

0 commit comments

Comments
 (0)