Skip to content

Commit 27072c0

Browse files
authored
[JS] Specify Node.js engine version as 22.x LTS in package.json (#15058)
* [js] set min node verstion to 22.x lts * [JS] fix format
1 parent f064eca commit 27072c0

File tree

4 files changed

+65
-65
lines changed

4 files changed

+65
-65
lines changed

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172
with:
173173
name: Nightly JavaScript Release
174174
cache-key: javascript-nightly
175-
node-version: '18.x'
175+
node-version: '22.x'
176176
run: |
177177
sed -i 's|https://registry.npmjs.org/|https://npm.pkg.github.com|g' javascript/node/selenium-webdriver/package.json
178178
sed -i 's|"name": "selenium-webdriver"|"name": "@seleniumhq/selenium-webdriver"|g' javascript/node/selenium-webdriver/package.json

javascript/node/selenium-webdriver/README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To use the Selenium Server, you will need to install the
9191
download the latest server from [Selenium][release]. Once downloaded, run the
9292
server with
9393

94-
java -jar selenium-server-4.4.0.jar standalone
94+
java -jar selenium-server-4.27.0.jar standalone
9595

9696
You may configure your tests to run against a remote server through the Builder
9797
API:
@@ -135,18 +135,17 @@ will also have "best effort" support. Releases older than the latest LTS,
135135
_semver-major_ releases, and all unstable release branches (e.g. "v.Next")
136136
are considered strictly unsupported.
137137

138-
For example, suppose the current LTS and stable releases are v14.20.0 and
139-
v18.8.0,
138+
For example, suppose the current LTS and stable releases are v22.13.0 and
139+
v23.6.0,
140140
respectively. Then a Selenium release would have the following support levels:
141141

142-
| Version | Support |
143-
| :-------: | :-----------: |
144-
| <= 14.19 | _unsupported_ |
145-
| 14.20.0 | supported |
146-
| 18.0-7 | best effort |
147-
| 18.8.0 | supported |
148-
| >= 18.8.0 | best effort |
149-
| v.Next | _unsupported_ |
142+
| Version | Support |
143+
| :--------: | :-----------: |
144+
| <= 16.20.2 | _unsupported_ |
145+
| 16.20.2 | supported |
146+
| 18.8.0 | supported |
147+
| >= 22.13.0 | best effort |
148+
| v.Next | _unsupported_ |
150149

151150
### Support Level Definitions
152151

@@ -168,11 +167,12 @@ months, the support window for selenium-webdriver will be roughly:
168167

169168
| Release | Status | END-OF-LIFE |
170169
| :-----: | :-------------: | :---------: |
171-
| v14.x | Maintenance LTS | 2023-04-30 |
172-
| v16.x | Active LTS | 2023-09-11 |
173-
| v18.x | Current | 2025-04-30 |
174-
| v19.x | Pending | 2023-06-01 |
175-
| v20 | Pending | 2026-04-30 |
170+
| v18.x | Maintenance LTS | 2025-04-30 |
171+
| v19.x | End-of-Life | 2023-06-01 |
172+
| v20.x | Maintenance LTS | 2026-04-30 |
173+
| v21.x | End-of-Life | 2024-06-01 |
174+
| V22.x | Active LTS | 2027-04-30 |
175+
| V23.x | Current | 2025-06-01 |
176176

177177
## Issues
178178

javascript/node/selenium-webdriver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"url": "https://github.com/SeleniumHQ/selenium.git"
2121
},
2222
"engines": {
23-
"node": ">= 14.21.0"
23+
"node": ">= 22.13.0"
2424
},
2525
"dependencies": {
2626
"@bazel/runfiles": "^6.3.1",

pnpm-lock.yaml

+47-47
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)