From 08acc26d8f81274a63605dde694cecedf0c6dcd1 Mon Sep 17 00:00:00 2001 From: wolfi-bot <121097084+wolfi-bot@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:52:38 +0000 Subject: [PATCH 1/2] selenium/4.28.0 package update Signed-off-by: wolfi-bot <121097084+wolfi-bot@users.noreply.github.com> --- selenium.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selenium.yaml b/selenium.yaml index c1cf1602539..76f00e9b2ce 100644 --- a/selenium.yaml +++ b/selenium.yaml @@ -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: @@ -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: From 71126cee9ea4d05bafbc9974fa3572aa133d1a4f Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Mon, 20 Jan 2025 13:04:07 -0500 Subject: [PATCH 2/2] selenium: refresh patch for new set of Python versions --- selenium/ignore-root-user-error.patch | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/selenium/ignore-root-user-error.patch b/selenium/ignore-root-user-error.patch index 04e81bb5d6f..dd4b851ed05 100644 --- a/selenium/ignore-root-user-error.patch +++ b/selenium/ignore-root-user-error.patch @@ -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( @@ -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")