From e196d3d392ab359cee08e4631ded037e13d48100 Mon Sep 17 00:00:00 2001 From: Wil Wilsman Date: Tue, 2 Jun 2020 11:16:14 -0500 Subject: [PATCH] =?UTF-8?q?fix(=F0=9F=93=A6):=20Unpin=20puppeteer=20(#522)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When 3.2 shipped breaking changes, 3.1 was pinned. 3.3 now rolls back those breaking changes so we can safely continue to use 3.x. It is likely that 4.x will re-introduce those breaking changes, but we can figure out a way forward from there (also when their API docs are updated with deprecations and alternatives to event emitter methods). --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c18f6429..35c82117 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "image-size": "^0.8.2", "js-yaml": "^3.13.1", "percy-client": "^3.2.0", - "puppeteer": "~3.1.0", + "puppeteer": "^3.3.0", "retry-axios": "^1.0.1", "which": "^2.0.1", "winston": "^3.0.0" diff --git a/yarn.lock b/yarn.lock index 8682dd74..883fd0f7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8843,10 +8843,10 @@ punycode@^2.1.0, punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -puppeteer@~3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-3.1.0.tgz#d44efdc5410809025f38bca2de106c3ae5c85a52" - integrity sha512-jLa9sqdVx0tPnr2FcwAq+8DSjGhSM4YpkwOf3JE22Ycyqm71SW7B5uGfTyMGFoLCmbCozbLZclCjasPb0flTRw== +puppeteer@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-3.3.0.tgz#95839af9fdc0aa4de7e5ee073a4c0adeb9e2d3d7" + integrity sha512-23zNqRltZ1PPoK28uRefWJ/zKb5Jhnzbbwbpcna2o5+QMn17F0khq5s1bdH3vPlyj+J36pubccR8wiNA/VE0Vw== dependencies: debug "^4.1.0" extract-zip "^2.0.0"