Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ body:
id: selenium-version
attributes:
label: What version of Selenium are you currently using?
description: Important! The latest released version of Selenium is 4.31 and we can't fix old versions.
description: Important! The latest released version of Selenium is 4.32 and we can't fix old versions.
placeholder: e.g., 4.17.0
validations:
required: true
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ Evan Sangaline <[email protected]>
Evgeniy Roldukhin <[email protected]>
EwaMarek <[email protected]>
Fan <[email protected]>
Federico Franco <[email protected]>
Felipe Knorr Kuhn <[email protected]>
Fenil Mehta <[email protected]>
FloKNetcare <[email protected]>
Expand Down
12 changes: 6 additions & 6 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -174,16 +174,16 @@ maven.install(
"com.github.spotbugs:spotbugs:4.9.3",
"com.github.stephenc.jcip:jcip-annotations:1.0-1",
"com.google.code.findbugs:jsr305:3.0.2",
"com.google.code.gson:gson:2.12.1",
"com.google.guava:guava:33.4.6-jre",
"com.google.code.gson:gson:2.13.1",
"com.google.guava:guava:33.4.8-jre",
"com.google.auto:auto-common:1.2.2",
"com.google.auto.service:auto-service:1.1.1",
"com.google.auto.service:auto-service-annotations:1.1.1",
"com.google.googlejavaformat:google-java-format:1.26.0",
"com.graphql-java:graphql-java:22.3",
"dev.failsafe:failsafe:3.3.2",
"io.grpc:grpc-context:1.71.0",
"io.lettuce:lettuce-core:6.5.5.RELEASE",
"io.grpc:grpc-context:1.72.0",
"io.lettuce:lettuce-core:6.6.0.RELEASE",
"io.netty:netty-buffer",
"io.netty:netty-codec-http",
"io.netty:netty-codec-http2",
Expand Down Expand Up @@ -217,8 +217,8 @@ maven.install(
"org.junit.platform:junit-platform-reporting",
"org.junit.platform:junit-platform-commons",
"org.junit.platform:junit-platform-engine",
"org.mockito:mockito-core:5.16.1",
"org.redisson:redisson:3.45.1",
"org.mockito:mockito-core:5.17.0",
"org.redisson:redisson:3.46.0",
"org.slf4j:slf4j-api:2.0.17",
"org.slf4j:slf4j-jdk14:2.0.17",
"org.tomlj:tomlj:1.1.1",
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,13 @@ for Maven to use locally by deploying to your local maven repository (`~/.m2/rep
#### Updating Dependencies

Dependencies are defined in the file [MODULE.bazel](https://github.com/SeleniumHQ/selenium/blob/trunk/MODULE.bazel).

To update a dependency, modify the version in the `MODULE.bazel` file and run:

```shell
RULES_JVM_EXTERNAL_REPIN=1 bazel run @maven//:pin
```

To automatically update and pin new dependencies, run:

```shell
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ JAVA_RELEASE_TARGETS = %w[
//java/src/org/openqa/selenium/chromium:chromium.publish
//java/src/org/openqa/selenium/devtools/v134:v134.publish
//java/src/org/openqa/selenium/devtools/v135:v135.publish
//java/src/org/openqa/selenium/devtools/v133:v133.publish
//java/src/org/openqa/selenium/devtools/v136:v136.publish
//java/src/org/openqa/selenium/edge:edge.publish
//java/src/org/openqa/selenium/firefox:firefox.publish
//java/src/org/openqa/selenium/grid/sessionmap/jdbc:jdbc.publish
Expand Down
Loading
Loading