Skip to content

Commit 8733c10

Browse files
chore(release): update monorepo packages versions (#2958)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ea2e18d commit 8733c10

3 files changed

Lines changed: 22 additions & 10 deletions

File tree

.changeset/node24-runtime.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/action/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @graphql-inspector/action
22

3+
## 5.0.21
4+
5+
### Patch Changes
6+
7+
- [#2957](https://github.com/graphql-hive/graphql-inspector/pull/2957)
8+
[`ea2e18d`](https://github.com/graphql-hive/graphql-inspector/commit/ea2e18d7a8e561c6f37b9f3c03af6dd0b48de004)
9+
Thanks [@wonda-tea-coffee](https://github.com/wonda-tea-coffee)! - Update GitHub Action runtime
10+
from `node20` to `node24`.
11+
12+
GitHub Actions deprecated Node 20
13+
(https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/) and
14+
now runs `using: node20` actions on Node 24 by default. On Node 24, `globalThis.navigator` is a
15+
built-in read-only getter, so the legacy `global.navigator = { userAgent: 'node.js' }` assignment
16+
in the action bundle threw
17+
`TypeError: Cannot set property navigator of #<Object> which has only a getter` at startup,
18+
breaking every workflow that consumed this action.
19+
20+
This release removes the obsolete `global.navigator` assignment (Node 24 provides
21+
`navigator.userAgent` natively), bumps `runs.using` to `node24` in `action.yml`, and regenerates
22+
the bundle. Workflows that pin this action will now execute on the Node 24 runtime.
23+
324
## 5.0.20
425

526
### Patch Changes

packages/action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphql-inspector/action",
3-
"version": "5.0.20",
3+
"version": "5.0.21",
44
"type": "module",
55
"description": "GraphQL Inspector functionality for GitHub Actions",
66
"repository": {

0 commit comments

Comments
 (0)