Skip to content

Commit 1441838

Browse files
authored
Merge branch 'trunk' into py-skip-mypy-devtools
2 parents 0e2cb7c + 3542999 commit 1441838

File tree

68 files changed

+1058
-349
lines changed

Some content is hidden

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

68 files changed

+1058
-349
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.31 and we can't fix old versions.
53+
description: Important! The latest released version of Selenium is 4.32 and we can't fix old versions.
5454
placeholder: e.g., 4.17.0
5555
validations:
5656
required: true

.github/workflows/ci-rbe.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ on:
66
branches:
77
- trunk
88
workflow_dispatch:
9+
inputs:
10+
disable_test_cache:
11+
description: 'Force re-run of tests (disable test cache)'
12+
required: false
13+
default: false
14+
type: boolean
915

1016
jobs:
1117
format:
@@ -26,4 +32,4 @@ jobs:
2632
name: All RBE tests
2733
caching: false
2834
ruby-version: jruby-9.4.12.0
29-
run: ./scripts/github-actions/ci-build.sh
35+
run: ./scripts/github-actions/ci-build.sh ${{ github.event.inputs.disable_test_cache }}

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ Evan Sangaline <[email protected]>
281281
Evgeniy Roldukhin <[email protected]>
282282
283283
284+
Federico Franco <[email protected]>
284285
Felipe Knorr Kuhn <[email protected]>
285286
Fenil Mehta <[email protected]>
286287
FloKNetcare <[email protected]>

MODULE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,16 +174,16 @@ maven.install(
174174
"com.github.spotbugs:spotbugs:4.9.3",
175175
"com.github.stephenc.jcip:jcip-annotations:1.0-1",
176176
"com.google.code.findbugs:jsr305:3.0.2",
177-
"com.google.code.gson:gson:2.12.1",
178-
"com.google.guava:guava:33.4.6-jre",
177+
"com.google.code.gson:gson:2.13.1",
178+
"com.google.guava:guava:33.4.8-jre",
179179
"com.google.auto:auto-common:1.2.2",
180180
"com.google.auto.service:auto-service:1.1.1",
181181
"com.google.auto.service:auto-service-annotations:1.1.1",
182182
"com.google.googlejavaformat:google-java-format:1.26.0",
183183
"com.graphql-java:graphql-java:22.3",
184184
"dev.failsafe:failsafe:3.3.2",
185-
"io.grpc:grpc-context:1.71.0",
186-
"io.lettuce:lettuce-core:6.5.5.RELEASE",
185+
"io.grpc:grpc-context:1.72.0",
186+
"io.lettuce:lettuce-core:6.6.0.RELEASE",
187187
"io.netty:netty-buffer",
188188
"io.netty:netty-codec-http",
189189
"io.netty:netty-codec-http2",
@@ -217,8 +217,8 @@ maven.install(
217217
"org.junit.platform:junit-platform-reporting",
218218
"org.junit.platform:junit-platform-commons",
219219
"org.junit.platform:junit-platform-engine",
220-
"org.mockito:mockito-core:5.16.1",
221-
"org.redisson:redisson:3.45.1",
220+
"org.mockito:mockito-core:5.17.0",
221+
"org.redisson:redisson:3.46.0",
222222
"org.slf4j:slf4j-api:2.0.17",
223223
"org.slf4j:slf4j-jdk14:2.0.17",
224224
"org.tomlj:tomlj:1.1.1",

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,13 @@ for Maven to use locally by deploying to your local maven repository (`~/.m2/rep
202202
#### Updating Dependencies
203203

204204
Dependencies are defined in the file [MODULE.bazel](https://github.com/SeleniumHQ/selenium/blob/trunk/MODULE.bazel).
205+
206+
To update a dependency, modify the version in the `MODULE.bazel` file and run:
207+
208+
```shell
209+
RULES_JVM_EXTERNAL_REPIN=1 bazel run @maven//:pin
210+
```
211+
205212
To automatically update and pin new dependencies, run:
206213

207214
```shell

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ JAVA_RELEASE_TARGETS = %w[
9898
//java/src/org/openqa/selenium/chromium:chromium.publish
9999
//java/src/org/openqa/selenium/devtools/v134:v134.publish
100100
//java/src/org/openqa/selenium/devtools/v135:v135.publish
101-
//java/src/org/openqa/selenium/devtools/v133:v133.publish
101+
//java/src/org/openqa/selenium/devtools/v136:v136.publish
102102
//java/src/org/openqa/selenium/edge:edge.publish
103103
//java/src/org/openqa/selenium/firefox:firefox.publish
104104
//java/src/org/openqa/selenium/grid/sessionmap/jdbc:jdbc.publish

0 commit comments

Comments
 (0)