From a254c33b9626114f71e4b968d70157847be001ec Mon Sep 17 00:00:00 2001 From: titusfortner Date: Wed, 22 Sep 2021 17:23:27 -0500 Subject: [PATCH] update pinned browsers and drivers; chromium v94, Geckodriver v0.30 --- common/repositories.bzl | 46 ++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/common/repositories.bzl b/common/repositories.bzl index e0184b4bcc0ae..9e18c71344bbb 100644 --- a/common/repositories.bzl +++ b/common/repositories.bzl @@ -15,71 +15,71 @@ def pin_browsers(): sha256 = "29050d18670a61585b101f8fa4e196fcfc22d0447178143202301836f3c048eb", build_file_content = "exports_files([\"firefox\"])", ) - + dmg_archive( name = "mac_firefox", url = "https://ftp.mozilla.org/pub/firefox/releases/92.0/mac/en-US/Firefox%2092.0.dmg", sha256 = "68978c990d06ab94364a36c49d220aeb4e07a8c5d9eaa677bb154a300612964e", build_file_content = "exports_files([\"Firefox.app\"])", ) - + http_archive( name = "linux_geckodriver", - url = "https://github.com/mozilla/geckodriver/releases/download/v0.29.1/geckodriver-v0.29.1-linux64.tar.gz", - sha256 = "ec164910a3de7eec71e596bd2a1814ae27ba4c9d112b611680a6470dbe2ce27b", + url = "https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-linux64.tar.gz", + sha256 = "12c37f41d11ed982b7be43d02411ff2c75fb7a484e46966d000b47d1665baa88", build_file_content = "exports_files([\"geckodriver\"])", ) - + http_archive( name = "mac_geckodriver", - url = "https://github.com/mozilla/geckodriver/releases/download/v0.29.1/geckodriver-v0.29.1-macos.tar.gz", - sha256 = "9929c804ad0157ca13fdafca808866c88815b658e7059280a9f08f7e70364963", + url = "https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-macos.tar.gz", + sha256 = "560ba192666c1fe8796404153cfdf2d12551515601c4b3937aabcba6ee300f8c", build_file_content = "exports_files([\"geckodriver\"])", ) - + pkg_archive( name = "mac_edge", - url = "https://officecdn-microsoft-com.akamaized.net/pr/C1297A47-86C4-4C1F-97FA-950631F94777/MacAutoupdate/MicrosoftEdge-93.0.961.47.pkg?platform=Mac&Consent=0&channel=Stable", - sha256 = "f3b9964b160917667123d3c14384dde9f1ba79abb8199c8ec22e5a8bb674ed50", + url = "https://officecdn-microsoft-com.akamaized.net/pr/C1297A47-86C4-4C1F-97FA-950631F94777/MacAutoupdate/MicrosoftEdge-93.0.961.52.pkg?platform=Mac&Consent=0&channel=Stable", + sha256 = "c67bb3162624035df17bac44ba19569728b8759d1807414d348a59b059dd6557", move = { - "MicrosoftEdge-93.0.961.47.pkg/Payload/Microsoft Edge.app": "Edge.app", + "MicrosoftEdge-93.0.961.52.pkg/Payload/Microsoft Edge.app": "Edge.app", }, build_file_content = "exports_files([\"Edge.app\"])", ) - + http_archive( name = "mac_edgedriver", - url = "https://msedgedriver.azureedge.net/93.0.961.47/edgedriver_mac64.zip", - sha256 = "40be9709f434b9b341ce4927665496f8164858d9e2a053a7509877e7307f7f73", + url = "https://msedgedriver.azureedge.net/93.0.961.52/edgedriver_mac64.zip", + sha256 = "3f3e3c9ff37ecd44179035efa30c522a9c9be9f40656bfeb67a06fdca83bcca3", build_file_content = "exports_files([\"msedgedriver\"])", ) - + http_archive( name = "linux_chrome", - url = "https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/902192/chrome-linux.zip", - sha256 = "2fd5218274f01d2ae5db666903189a379ebe683826b579aba0e582d11e7a2722", + url = "https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/911494/chrome-linux.zip", + sha256 = "25264b328b50589ecae6ed7d87575a34cd9b92ac71b9bc843bacab9562736a02", build_file_content = "exports_files([\"chrome-linux\"])", ) - + http_archive( name = "mac_chrome", - url = "https://storage.googleapis.com/chromium-browser-snapshots/Mac/902192/chrome-mac.zip", - sha256 = "b944959f7e75bd4457f55662541d921b3b8d0be4e488450006ae615079bc0814", + url = "https://storage.googleapis.com/chromium-browser-snapshots/Mac/911494/chrome-mac.zip", + sha256 = "bec65d1366588f27ce7df1929960e2c93eb88d333ec1da14b9dc96f9f0d07c09", strip_prefix = "chrome-mac", build_file_content = "exports_files([\"Chromium.app\"])", ) - + http_archive( name = "linux_chromedriver", url = "https://chromedriver.storage.googleapis.com/93.0.4577.63/chromedriver_linux64.zip", sha256 = "eb1065a67ac2db7233cd402c197e8372c1dd52e4e2e930b7e5e1250fa4f45470", build_file_content = "exports_files([\"chromedriver\"])", ) - + http_archive( name = "mac_chromedriver", url = "https://chromedriver.storage.googleapis.com/93.0.4577.63/chromedriver_mac64.zip", sha256 = "ff4469d533dd09998fc99767468995b81b2ccd180811d961496e3b4f9d058284", build_file_content = "exports_files([\"chromedriver\"])", ) - +