Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

selenium/4.28.0 package update #40017

Merged
merged 2 commits into from
Jan 20, 2025
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
4 changes: 2 additions & 2 deletions selenium.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: selenium
version: 4.27.0
version: "4.28.0"
epoch: 0
description: A browser automation framework and ecosystem.
copyright:
Expand Down Expand Up @@ -39,7 +39,7 @@ pipeline:
with:
repository: https://github.com/SeleniumHQ/selenium
tag: selenium-${{package.version}}
expected-commit: d6e718d134987d62cd8ffff476821fb3ca1797c2
expected-commit: ac342546e9e34d4ca94eceeb27cce22a4fe3b79f

- uses: patch
with:
Expand Down
22 changes: 11 additions & 11 deletions selenium/ignore-root-user-error.patch
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
diff --git a/MODULE.bazel b/MODULE.bazel
index 43611ccd9e..cdc848c409 100644
index c83f8ab..58fc669 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -98,10 +98,20 @@
@@ -112,10 +112,20 @@ python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
is_default = True,
python_version = "3.8",
+ ignore_root_user_error = True,
)
-python.toolchain(python_version = "3.9")
-python.toolchain(python_version = "3.10")
-python.toolchain(python_version = "3.11")
+python.toolchain(
+ python_version = "3.9",
python_version = "3.9",
+ ignore_root_user_error = True,
+)
+python.toolchain(
Expand All @@ -23,6 +16,13 @@ index 43611ccd9e..cdc848c409 100644
+ python_version = "3.11",
+ ignore_root_user_error = True,
+)
+python.toolchain(
+ python_version = "3.12",
+ ignore_root_user_error = True,
)
-python.toolchain(python_version = "3.10")
-python.toolchain(python_version = "3.11")
-python.toolchain(python_version = "3.12")
use_repo(python, "pythons_hub")

pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
Loading