Skip to content

Commit

Permalink
Bump pinned firefox, edge, and chrome to latest stable releases
Browse files Browse the repository at this point in the history
Chrome is now 92.0.4515.131
Edge is now 92.0.902.67
Firefox is now 91.0
  • Loading branch information
shs96c committed Aug 10, 2021
1 parent 1e0058f commit 0ff878d
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions common/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ load("//common/private:dmg_archive.bzl", "dmg_archive")
load("//common/private:drivers.bzl", "local_drivers")
load("//common/private:pkg_archive.bzl", "pkg_archive")

_chromium_version = "871231" # 91.0.4472.114
_edge_version = "91.0.864.67"
_chromium_version = "884366" # 92.0.4515.131
_chromedriver_version = "92.0.4515.107"
_edge_version = "92.0.902.67"

_versions = {
# The chrome version number is found by visiting http://omahaproxy.appspot.com,
Expand All @@ -14,11 +15,11 @@ _versions = {
"chrome": {
"linux": {
"url": "https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/%s/chrome-linux.zip" % _chromium_version,
"sha256": "1fa063fa7dd8abf08e02dc02403ccffc64634a3d4b6223c4971eb7e7d1ac0615",
"sha256": "c9bce4472188e9ce60a67e4b136a19ba3c48251bb302e04f31ef1e13f8cd7dbc",
},
"mac": {
"url": "https://storage.googleapis.com/chromium-browser-snapshots/Mac/%s/chrome-mac.zip" % _chromium_version,
"sha256": "d85a251a32e9a69c9c9a4fd8368f27a78f3823e397ca0e563a40fb2787f2c240",
"sha256": "7abc8919470425225f81e95356db58dec6cff9b912f662e6f0bb8965124e2883",
},
"windows": {
"url": "https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/%s/chrome-win.zip" % _chromium_version,
Expand All @@ -28,15 +29,15 @@ _versions = {
# Versions found by visiting https://chromedriver.chromium.org/downloads
"chromedriver": {
"linux": {
"url": "https://chromedriver.storage.googleapis.com/91.0.4472.101/chromedriver_linux64.zip",
"sha256": "cf064f2a7c0ac3710e1bde24f59dd3c954dd4e9b65e75322f1a065f18b29fd37",
"url": "https://chromedriver.storage.googleapis.com/%s/chromedriver_linux64.zip" % _chromedriver_version,
"sha256": "c3cfba55df31a0a0d62d901049e91ee1ec4e38dd165e752409b7430ae59fcc8b",
},
"mac": {
"url": "https://chromedriver.storage.googleapis.com/91.0.4472.101/chromedriver_mac64.zip",
"sha256": "c84c506dc5d45d85c4e4729822ce2fa843741dccdfc3ed2823cad85cab0cce59",
"url": "https://chromedriver.storage.googleapis.com/%s/chromedriver_mac64.zip" % _chromedriver_version,
"sha256": "97f9a5733ef83a001922fd14ff2f5ac5b03c8a16aa02986ecca300cfbffaa03e",
},
"windows": {
"url": "https://chromedriver.storage.googleapis.com/91.0.4472.101/chromedriver_win32.zip",
"url": "https://chromedriver.storage.googleapis.com/%s/chromedriver_win32.zip" % _chromedriver_version,
"sha256": None,
},
},
Expand All @@ -48,7 +49,7 @@ _versions = {
},
"mac": {
"url": "https://officecdn-microsoft-com.akamaized.net/pr/C1297A47-86C4-4C1F-97FA-950631F94777/MacAutoupdate/MicrosoftEdge-%s.pkg?platform=Mac&Consent=0&channel=Stable" % _edge_version,
"sha256": "078bb879499625eb0952d62c0b1990ba858ebeb308653373ba76e5c9afd1a69f",
"sha256": "afb14750572b49c2ad5f25b637ffb3d637107e3db094b97b14a386a9f85a9af7",
},
"windows": {
"url": None,
Expand All @@ -63,7 +64,7 @@ _versions = {
},
"mac": {
"url": "https://msedgedriver.azureedge.net/%s/edgedriver_mac64.zip" % _edge_version,
"sha256": "3db26dafd45e2cb46f47f405d6fc5537f9eaac7401093fe8285f4c25ec92e97c",
"sha256": "a5afad438001fe92ee71e539fdb1dd20c72a9cec7d08c01ec6516215e4abf181",
},
"windows": {
"url": "https://msedgedriver.azureedge.net/%s/edgedriver_win64.zip" % _edge_version,
Expand All @@ -73,12 +74,12 @@ _versions = {
# Versions found by visiting https://ftp.mozilla.org/pub/firefox/releases/
"firefox": {
"linux": {
"url": "https://ftp.mozilla.org/pub/firefox/releases/90.0/linux-x86_64/en-US/firefox-90.0.tar.bz2",
"sha256": "29fd51b6316d1e589220c2f47e5ff7cdd996cddd450f64ce1dd28ed0e8e4e8fa",
"url": "https://ftp.mozilla.org/pub/firefox/releases/91.0/linux-x86_64/en-US/firefox-91.0.tar.bz2",
"sha256": "bced054543003caf29d0c93aa63359809bdf1f1fcbca92b82c57167fe94ca1c9",
},
"mac": {
"url": "https://ftp.mozilla.org/pub/firefox/releases/90.0/mac/en-US/Firefox%2090.0.dmg",
"sha256": "dbc08038e2a26017d360bbf366a935084ed0e0914dc50f3e7e419e5b765c8863",
"url": "https://ftp.mozilla.org/pub/firefox/releases/91.0/mac/en-US/Firefox%2091.0.dmg",
"sha256": "d26c43f490320b3f301578fa653a2235562dfed31ed12b9b1f7c4515da21a6fb",
},
"windows": {
"url": None,
Expand Down

0 comments on commit 0ff878d

Please sign in to comment.