Skip to content

Commit ff83277

Browse files
committed
Update minimum required NodeJS version to "^25.6.0"
1 parent f9f8206 commit ff83277

File tree

13 files changed

+140
-1144
lines changed

13 files changed

+140
-1144
lines changed

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v24.13.0
1+
v25.6.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Please note that this project is released with a [Contributor Code of Conduct](C
4646

4747
### Environment
4848

49-
- **Node.js** v24.13.0 or later ([nodejs.org](https://nodejs.org/))
49+
- **Node.js** v25.6.0 or later ([nodejs.org](https://nodejs.org/))
5050
- **Some calling LLM** Bring your own LLM, but some LLMs are (much) better than others.
5151

5252
### External Dependencies

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"author": "@github/ps-codeql",
2424
"license": "LicenseRef-CodeQL-Terms",
2525
"engines": {
26-
"node": ">=24.13.0",
26+
"node": ">=25.6.0",
2727
"npm": ">=11.6.2"
2828
},
2929
"dependencies": {

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This guide covers installation, configuration, and usage of the CodeQL Developme
44

55
## Prerequisites
66

7-
- **Node.js** v24.13.0 or later ([nodejs.org](https://nodejs.org/))
7+
- **Node.js** v25.6.0 or later ([nodejs.org](https://nodejs.org/))
88
- **CodeQL CLI** ([github.com/github/codeql-cli-binaries](https://github.com/github/codeql-cli-binaries/releases))
99
- **VS Code** with GitHub Copilot extension
1010

docs/public.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ Users install the server via `npm` and the tool query packs via `codeql pack dow
1212

1313
| Dependency | Minimum Version | Purpose |
1414
| ---------------------------------------------------------------------------------------------------- | --------------- | ------------------------------- |
15-
| [Node.js](https://nodejs.org/) | v24.13.0 | Runtime for the MCP server |
15+
| [Node.js](https://nodejs.org/) | v25.6.0 | Runtime for the MCP server |
1616
| [CodeQL CLI](https://github.com/github/codeql-cli-binaries/releases) | Latest | Query compilation and execution |
1717
| [VS Code](https://code.visualstudio.com/) with [GitHub Copilot](https://github.com/features/copilot) | Latest | IDE with MCP support |
1818

1919
Verify prerequisites:
2020

2121
```bash
22-
node --version # >= v24.13.0
22+
node --version # >= v25.6.0
2323
codeql --version # any recent release
2424
```
2525

extensions/vscode/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A VS Code extension that automatically installs, configures, and manages the [Co
55
## Prerequisites
66

77
- **VS Code** `^1.109.0`
8-
- **Node.js** `>=24.13.0`
8+
- **Node.js** `>=25.6.0`
99
- **[CodeQL for VS Code](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-codeql)** — declared as an `extensionDependency` and must be installed first.
1010

1111
## Installation

extensions/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"engines": {
1919
"vscode": "^1.115.0",
20-
"node": ">=24.13.0"
20+
"node": ">=25.6.0"
2121
},
2222
"categories": [
2323
"AI",

0 commit comments

Comments
 (0)