Skip to content

Commit

Permalink
feat: upgrade puppeteer to v13.6.0
Browse files Browse the repository at this point in the history
Upgrade the Chrome version to `v101.0.4950.0`.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Ref: https://github.com/puppeteer/puppeteer/releases/tag/v13.6.0
  • Loading branch information
sf-v committed Apr 20, 2022
1 parent 6be5329 commit 8029da5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/@best/runner-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"dependencies": {
"@best/runner-abstract": "6.1.4",
"@best/types": "6.1.4",
"puppeteer": "13.5.2"
"puppeteer": "13.6.0"
},
"description": "Best Runner (Headless)",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/@best/runner-headless/src/headless.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ export default class HeadlessBrowser {
static async getSpecs(): Promise<BrowserSpec[]> {
// TODO: Create pupeteer test so we fail when upgrading
return [
{ name: 'chrome.headless', version: '100' },
{ name: 'chrome', version: '100' }
{ name: 'chrome.headless', version: '101' },
{ name: 'chrome', version: '101' }
];
}
}
2 changes: 1 addition & 1 deletion packages/best-benchmarks/best.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
module.exports = {
projectName: 'best-benchmark',
metrics: ['script', 'aggregate', 'paint', 'layout'],
specs: { name: 'chrome.headless', version: 100 },
specs: { name: 'chrome.headless', version: 101 },
runners: [
{
runner: "@best/runner-headless",
Expand Down
2 changes: 1 addition & 1 deletion packages/lwc-example/best.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
}],
['rollup-plugin-replace', { 'process.env.NODE_ENV': JSON.stringify('production') }]
],
specs: { name: 'chrome.headless', version: 100 },
specs: { name: 'chrome.headless', version: 101 },
runners: [
{
runner: "@best/runner-headless",
Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7408,10 +7408,10 @@ detect-port-alt@1.1.6:
address "^1.0.1"
debug "^2.6.0"

devtools-protocol@0.0.969999:
version "0.0.969999"
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.969999.tgz#3d6be0a126b3607bb399ae2719b471dda71f3478"
integrity sha512-6GfzuDWU0OFAuOvBokXpXPLxjOJ5DZ157Ue3sGQQM3LgAamb8m0R0ruSfN0DDu+XG5XJgT50i6zZ/0o8RglreQ==
devtools-protocol@0.0.981744:
version "0.0.981744"
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.981744.tgz#9960da0370284577d46c28979a0b32651022bacf"
integrity sha512-0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg==

dezalgo@^1.0.0:
version "1.0.3"
Expand Down Expand Up @@ -15474,14 +15474,14 @@ punycode@^1.2.4, punycode@^1.4.1:
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=

puppeteer@13.5.2:
version "13.5.2"
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.5.2.tgz#73ae84969cbf514aeee871a05ec4549d67f6abee"
integrity sha512-DJAyXODBikZ3xPs8C35CtExEw78LZR9RyelGDAs0tX1dERv3OfW7qpQ9VPBgsfz+hG2HiMTO/Tyf7BuMVWsrxg==
puppeteer@13.6.0:
version "13.6.0"
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.6.0.tgz#3583fc60c1af59af838d65a09680f2d07f3608f9"
integrity sha512-EJXhTyY5bXNPLFXPGcY9JaF6EKJIX8ll8cGG3WUK+553Jx96oDf1cB+lkFOro9p0X16tY+9xx7zYWl+vnWgW2g==
dependencies:
cross-fetch "3.1.5"
debug "4.3.4"
devtools-protocol "0.0.969999"
devtools-protocol "0.0.981744"
extract-zip "2.0.1"
https-proxy-agent "5.0.0"
pkg-dir "4.2.0"
Expand Down

0 comments on commit 8029da5

Please sign in to comment.