Skip to content

Commit 0484ee2

Browse files
authored
Merge branch 'trunk' into add_response_handler
2 parents a98eafd + d224cf3 commit 0484ee2

File tree

7 files changed

+79
-75
lines changed

7 files changed

+79
-75
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
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

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ maven.install(
216216
"org.junit.platform:junit-platform-reporting",
217217
"org.junit.platform:junit-platform-commons",
218218
"org.junit.platform:junit-platform-engine",
219-
"org.mockito:mockito-core:5.14.2",
219+
"org.mockito:mockito-core:5.15.2",
220220
"org.redisson:redisson:3.41.0",
221221
"org.slf4j:slf4j-api:2.0.16",
222222
"org.slf4j:slf4j-jdk14:2.0.16",

java/maven_install.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
3-
"__INPUT_ARTIFACTS_HASH": 1132645732,
4-
"__RESOLVED_ARTIFACTS_HASH": 1947623231,
3+
"__INPUT_ARTIFACTS_HASH": 1220324005,
4+
"__RESOLVED_ARTIFACTS_HASH": 1655871984,
55
"artifacts": {
66
"com.beust:jcommander": {
77
"shasums": {
@@ -459,10 +459,10 @@
459459
},
460460
"net.bytebuddy:byte-buddy-agent": {
461461
"shasums": {
462-
"jar": "1d76defd159a564b9cb7a968d0dea27367b8b70ebde75a968e7ef1921bc75ee4",
463-
"sources": "8a7e537a5c2a932a6d73dcec9aa8d5388d33ab3aa91ea410aeea5228dcfe9745"
462+
"jar": "316d2c0795c2a4d4c4756f2e6f9349837c7430ac34e0477ead874d05f5cc19e5",
463+
"sources": "a73d2869afd79b63396a0a07ac037bbfa184eb7306916343c030feb5335ac940"
464464
},
465-
"version": "1.15.4"
465+
"version": "1.15.11"
466466
},
467467
"net.sf.saxon:Saxon-HE": {
468468
"shasums": {
@@ -676,10 +676,10 @@
676676
},
677677
"org.mockito:mockito-core": {
678678
"shasums": {
679-
"jar": "2296141c1e1f2e1ae35c08d36a9ab4563ecd66e03533fe82630a764e7aa49182",
680-
"sources": "32f318184ab3795885743f23d8be0da7fe856e3e360b518083f8b366a44d2b33"
679+
"jar": "bf48b7372d9491d5ec8aebb4cdd187d15663931599c0fbe7410166ce0e1e58ff",
680+
"sources": "bc0ee4bc1d8d43a9bd5e5b49dc479566c28db0740284524140aa264e57e8e27e"
681681
},
682-
"version": "5.14.2"
682+
"version": "5.15.2"
683683
},
684684
"org.objenesis:objenesis": {
685685
"shasums": {

javascript/node/selenium-webdriver/README.md

Lines changed: 16 additions & 16 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/src/firefox.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,11 @@ impl SeleniumManager for FirefoxManager {
572572
} else {
573573
// Linux
574574
artifact_name = "firefox-";
575-
artifact_extension = "tar.bz2";
575+
if major_browser_version < 135 {
576+
artifact_extension = "tar.bz2";
577+
} else {
578+
artifact_extension = "tar.xz";
579+
}
576580
if X32.is(arch) {
577581
platform_label = "linux-i686";
578582
} else if self.is_nightly(browser_version) {

0 commit comments

Comments
 (0)