This patch: - adds `browserVersion` field to the `browsers.json`. This is updated every time we roll browser. - starts using `browserVersion` to display browser version that's been downloaded. The downloading output now looks like this: ```bash Downloading Chromium 101.0.4951.41 (playwright build v1003) - 118.9 Mb [====================] 100% 0.0s Chromium 101.0.4951.41 (playwright build v1003) downloaded to /Users/andreylushnikov/Library/Caches/ms-playwright/chromium-1003 Downloading FFMPEG playwright build v1007 - 1 Mb [====================] 100% 0.0s FFMPEG playwright build v1007 downloaded to /Users/andreylushnikov/Library/Caches/ms-playwright/ffmpeg-1007 Downloading Firefox 99.0.1 (playwright build v1323) - 67.5 Mb [====================] 100% 0.0s Firefox 99.0.1 (playwright build v1323) downloaded to /Users/andreylushnikov/Library/Caches/ms-playwright/firefox-1323 Downloading Webkit 15.4 (playwright build v1632) - 52.7 Mb [====================] 100% 0.0s Webkit 15.4 (playwright build v1632) downloaded to /Users/andreylushnikov/Library/Caches/ms-playwright/webkit-1632 ``` Fixes #13198
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"comment": "Do not edit this file, use utils/roll_browser.js",
|
|
"browsers": [
|
|
{
|
|
"name": "chromium",
|
|
"revision": "1003",
|
|
"installByDefault": true,
|
|
"browserVersion": "101.0.4951.41"
|
|
},
|
|
{
|
|
"name": "chromium-with-symbols",
|
|
"revision": "1003",
|
|
"installByDefault": false,
|
|
"browserVersion": "101.0.4951.41"
|
|
},
|
|
{
|
|
"name": "chromium-tip-of-tree",
|
|
"revision": "1000",
|
|
"installByDefault": false,
|
|
"browserVersion": "103.0.5015.0"
|
|
},
|
|
{
|
|
"name": "firefox",
|
|
"revision": "1323",
|
|
"installByDefault": true,
|
|
"browserVersion": "99.0.1"
|
|
},
|
|
{
|
|
"name": "firefox-beta",
|
|
"revision": "1323",
|
|
"installByDefault": false,
|
|
"browserVersion": "100.0b8"
|
|
},
|
|
{
|
|
"name": "webkit",
|
|
"revision": "1637",
|
|
"installByDefault": true,
|
|
"revisionOverrides": {
|
|
"mac10.14": "1446",
|
|
"mac10.15": "1616"
|
|
},
|
|
"browserVersion": "15.4"
|
|
},
|
|
{
|
|
"name": "ffmpeg",
|
|
"revision": "1007",
|
|
"installByDefault": true
|
|
}
|
|
]
|
|
}
|