Skip to content

Commit f1f1605

Browse files
Merge branch 'trunk' into test-revamp
2 parents ee41e9a + 64ec4e8 commit f1f1605

File tree

159 files changed

+4624
-1745
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+4624
-1745
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ body:
5050
id: selenium-version
5151
attributes:
5252
label: What version of Selenium are you currently using?
53-
description: Important! The latest released version of Selenium is 4.32 and we can't fix old versions.
53+
description: Important! The latest released version of Selenium is 4.33 and we can't fix old versions.
5454
placeholder: e.g., 4.17.0
5555
validations:
5656
required: true

.github/workflows/bazel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
node-version: ${{ inputs.node-version }}
123123
- name: Setup Bazel with caching
124124
if: inputs.caching
125-
uses: bazel-contrib/setup-bazel@0.13.0
125+
uses: bazel-contrib/setup-bazel@0.15.0
126126
with:
127127
bazelisk-cache: true
128128
bazelrc: common --color=yes
@@ -136,7 +136,7 @@ jobs:
136136
repository-cache: true
137137
- name: Setup Bazel without caching
138138
if: inputs.caching == false
139-
uses: bazel-contrib/setup-bazel@0.13.0
139+
uses: bazel-contrib/setup-bazel@0.15.0
140140
with:
141141
bazelrc: common --color=yes
142142
- name: Setup curl for Ubuntu

.github/workflows/ci-grid-ui.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI - Grid UI
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'javascript/grid-ui/**'
7+
push:
8+
branches:
9+
- trunk
10+
paths:
11+
- 'javascript/grid-ui/**'
12+
workflow_dispatch:
13+
workflow_call:
14+
15+
jobs:
16+
grid-ui-tests:
17+
runs-on: ubuntu-latest
18+
name: Grid UI Component Tests
19+
steps:
20+
- name: Checkout source tree
21+
uses: actions/checkout@v4
22+
with:
23+
fetch-depth: 50
24+
25+
- name: Setup Node.js
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: '18'
29+
cache: 'npm'
30+
cache-dependency-path: 'javascript/grid-ui/package.json'
31+
32+
- name: Install dependencies
33+
working-directory: javascript/grid-ui
34+
run: npm install
35+
36+
- name: Run component tests
37+
working-directory: javascript/grid-ui
38+
run: npm test

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
fetch-depth: 50
2727
- name: Setup Bazel
28-
uses: bazel-contrib/setup-bazel@0.13.0
28+
uses: bazel-contrib/setup-bazel@0.15.0
2929
with:
3030
bazelisk-cache: true
3131
cache-version: 2

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ Ben Congleton <[email protected]>
104104
Ben Kucera <[email protected]>
105105
106106
Ben Sedat <[email protected]>
107+
107108
Benjamin Forehand Jr <[email protected]>
108109
Benoit Pierre <[email protected]>
109110
@@ -221,6 +222,7 @@ David Wang
221222
David Zhu <[email protected]>
222223
Debanjan Choudhury <[email protected]>
223224
225+
DeflateAwning <[email protected]>
224226
Denis Demchenko <[email protected]>
225227
Dennis Oelkers <[email protected]>
226228
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@@ -863,6 +865,7 @@ Tobias Lidskog <[email protected]>
863865
Tobias Smolka <[email protected]>
864866
Toda Hiroshi <[email protected]>
865867
868+
Tom Hughes <[email protected]>
866869
Tom Longhurst <[email protected]>
867870
Tom Trumper <[email protected]>
868871

MODULE.bazel

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ bazel_dep(name = "apple_rules_lint", version = "0.4.0")
44
bazel_dep(name = "aspect_rules_lint", version = "1.4.2")
55
bazel_dep(name = "aspect_bazel_lib", version = "2.13.0")
66
bazel_dep(name = "aspect_rules_esbuild", version = "0.21.0")
7-
bazel_dep(name = "aspect_rules_js", version = "2.1.3")
8-
bazel_dep(name = "aspect_rules_ts", version = "3.4.0")
7+
bazel_dep(name = "aspect_rules_js", version = "2.3.7")
8+
bazel_dep(name = "aspect_rules_ts", version = "3.6.0")
99
bazel_dep(name = "bazel_features", version = "1.23.0")
1010
bazel_dep(name = "bazel_skylib", version = "1.7.1")
1111
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0")
@@ -180,7 +180,7 @@ maven.install(
180180
"com.google.auto:auto-common:1.2.2",
181181
"com.google.auto.service:auto-service:1.1.1",
182182
"com.google.auto.service:auto-service-annotations:1.1.1",
183-
"com.google.googlejavaformat:google-java-format:1.26.0",
183+
"com.google.googlejavaformat:google-java-format:1.27.0",
184184
"com.graphql-java:graphql-java:22.3",
185185
"dev.failsafe:failsafe:3.3.2",
186186
"io.grpc:grpc-context:1.72.0",
@@ -203,7 +203,7 @@ maven.install(
203203
"io.opentelemetry:opentelemetry-sdk-trace",
204204
"it.ozimov:embedded-redis:0.7.3",
205205
"net.bytebuddy:byte-buddy:1.17.5",
206-
"org.htmlunit:htmlunit-core-js:4.11.0",
206+
"org.htmlunit:htmlunit-core-js:4.12.0",
207207
"org.apache.commons:commons-exec:1.4.0",
208208
"org.apache.logging.log4j:log4j-core:2.24.3",
209209
"org.assertj:assertj-core:3.27.3",
@@ -218,15 +218,15 @@ maven.install(
218218
"org.junit.platform:junit-platform-reporting",
219219
"org.junit.platform:junit-platform-commons",
220220
"org.junit.platform:junit-platform-engine",
221-
"org.mockito:mockito-core:5.17.0",
222-
"org.redisson:redisson:3.46.0",
221+
"org.mockito:mockito-core:5.18.0",
222+
"org.redisson:redisson:3.47.0",
223223
"org.slf4j:slf4j-api:2.0.17",
224224
"org.slf4j:slf4j-jdk14:2.0.17",
225225
"org.tomlj:tomlj:1.1.1",
226226
"org.zeromq:jeromq:0.6.0",
227227
],
228228
boms = [
229-
"io.opentelemetry:opentelemetry-bom:1.49.0",
229+
"io.opentelemetry:opentelemetry-bom:1.50.0",
230230
"io.netty:netty-bom:4.1.121.Final",
231231
"org.junit:junit-bom:5.12.2",
232232
],

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ task '//java/test/org/openqa/selenium/environment/webserver:webserver:uber' => [
9696
JAVA_RELEASE_TARGETS = %w[
9797
//java/src/org/openqa/selenium/chrome:chrome.publish
9898
//java/src/org/openqa/selenium/chromium:chromium.publish
99-
//java/src/org/openqa/selenium/devtools/v134:v134.publish
99+
//java/src/org/openqa/selenium/devtools/v137:v137.publish
100100
//java/src/org/openqa/selenium/devtools/v135:v135.publish
101101
//java/src/org/openqa/selenium/devtools/v136:v136.publish
102102
//java/src/org/openqa/selenium/edge:edge.publish

0 commit comments

Comments
 (0)