Skip to content

Commit e8c93de

Browse files
Pin @types/node to the Node 24 runtime; stop Dependabot chasing newer majors
@types/node tracks the Node major version. We were on @types/node 20 (behind our Node 24 runtime), and Dependabot kept proposing 25 (the current/odd Node line) — which would expose Node 25 type defs for APIs our Node 24 runtime doesn't have. Bump to ^24 to match the runtime, and ignore @types/node major bumps in dependabot.yml so it stays in step with the Node we actually run. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 32af861 commit e8c93de

3 files changed

Lines changed: 28 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ updates:
55
schedule:
66
interval: "weekly"
77
open-pull-requests-limit: 10
8+
ignore:
9+
# @types/node tracks the Node major; keep it pinned to our runtime (24)
10+
# rather than chasing the current/odd Node line.
11+
- dependency-name: "@types/node"
12+
update-types: ["version-update:semver-major"]
813
groups:
914
duckdb:
1015
patterns:

package-lock.json

Lines changed: 22 additions & 5 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
@@ -90,7 +90,7 @@
9090
"@malloydata/malloy-connections": "0.0.405",
9191
"@malloydata/malloy-sql": "0.0.405",
9292
"@types/jest": "^29.2.5",
93-
"@types/node": "^20.14.8",
93+
"@types/node": "^24.13.1",
9494
"@yao-pkg/pkg": "^6.20.0",
9595
"ajv": "^8.12.0",
9696
"axios": "^1.4.0",

0 commit comments

Comments
 (0)