From a21e6c27476f007a422cf73f61b2d5c033b3b20a Mon Sep 17 00:00:00 2001 From: Ebru Yucesar Date: Wed, 16 Oct 2024 09:55:38 -0400 Subject: [PATCH] update playwright and yt-dlp --- package-lock.json | 29 +++++++++++++---------------- package.json | 4 ++-- postinstall.sh | 4 ++-- 3 files changed, 17 insertions(+), 20 deletions(-) diff --git a/package-lock.json b/package-lock.json index 46ae498..ebc044c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@harvard-lil/js-wacz": "^0.1.3", "@harvard-lil/portal": "^0.0.2", "@laverdet/beaugunderson-ip-address": "^8.1.0", - "@playwright/browser-chromium": "^1.47.2", + "@playwright/browser-chromium": "^1.48.1", "browsertrix-behaviors": "0.6.0", "chalk": "^5.2.0", "commander": "^12.0.0", @@ -22,7 +22,7 @@ "loglevel-plugin-prefix": "^0.8.4", "node-stream-zip": "^1.15.0", "nunjucks": "^3.2.3", - "playwright": "^1.47.2", + "playwright": "^1.48.1", "uuid": "^9.0.0", "warcio": "^2.1.0" }, @@ -391,13 +391,12 @@ } }, "node_modules/@playwright/browser-chromium": { - "version": "1.47.2", - "resolved": "https://registry.npmjs.org/@playwright/browser-chromium/-/browser-chromium-1.47.2.tgz", - "integrity": "sha512-tsk9bLcGzIu4k4xI2ixlwDrdJhMqCalUCsSj7TRI8VuvK7cLiJIa5SR0dprKbX+wkku/JMR4EN6g9DMHvfna+Q==", + "version": "1.48.1", + "resolved": "https://registry.npmjs.org/@playwright/browser-chromium/-/browser-chromium-1.48.1.tgz", + "integrity": "sha512-WNpIE+CpO4XNhdNTC/mVE8m/1gYR/hPswL8dnIZzElqxsOPm7qxIBdAChWm/7q1kkMiQ+gEGAaXXQfqL0vR28w==", "hasInstallScript": true, - "license": "Apache-2.0", "dependencies": { - "playwright-core": "1.47.2" + "playwright-core": "1.48.1" }, "engines": { "node": ">=18" @@ -4321,12 +4320,11 @@ } }, "node_modules/playwright": { - "version": "1.47.2", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.47.2.tgz", - "integrity": "sha512-nx1cLMmQWqmA3UsnjaaokyoUpdVaaDhJhMoxX2qj3McpjnsqFHs516QAKYhqHAgOP+oCFTEOCOAaD1RgD/RQfA==", - "license": "Apache-2.0", + "version": "1.48.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.48.1.tgz", + "integrity": "sha512-j8CiHW/V6HxmbntOfyB4+T/uk08tBy6ph0MpBXwuoofkSnLmlfdYNNkFTYD6ofzzlSqLA1fwH4vwvVFvJgLN0w==", "dependencies": { - "playwright-core": "1.47.2" + "playwright-core": "1.48.1" }, "bin": { "playwright": "cli.js" @@ -4339,10 +4337,9 @@ } }, "node_modules/playwright-core": { - "version": "1.47.2", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.47.2.tgz", - "integrity": "sha512-3JvMfF+9LJfe16l7AbSmU555PaTl2tPyQsVInqm3id16pdDfvZ8TTZ/pyzmkbDrZTQefyzU7AIHlZqQnxpqHVQ==", - "license": "Apache-2.0", + "version": "1.48.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.48.1.tgz", + "integrity": "sha512-Yw/t4VAFX/bBr1OzwCuOMZkY1Cnb4z/doAFSwf4huqAGWmf9eMNjmK7NiOljCdLmxeRYcGPPmcDgU0zOlzP0YA==", "bin": { "playwright-core": "cli.js" }, diff --git a/package.json b/package.json index 303aa10..c560d65 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "@harvard-lil/js-wacz": "^0.1.3", "@harvard-lil/portal": "^0.0.2", "@laverdet/beaugunderson-ip-address": "^8.1.0", - "@playwright/browser-chromium": "^1.47.2", + "@playwright/browser-chromium": "^1.48.1", "browsertrix-behaviors": "0.6.0", "chalk": "^5.2.0", "commander": "^12.0.0", @@ -57,7 +57,7 @@ "loglevel-plugin-prefix": "^0.8.4", "node-stream-zip": "^1.15.0", "nunjucks": "^3.2.3", - "playwright": "^1.47.2", + "playwright": "^1.48.1", "uuid": "^9.0.0", "warcio": "^2.1.0" }, diff --git a/postinstall.sh b/postinstall.sh index ad35af6..3117d4b 100755 --- a/postinstall.sh +++ b/postinstall.sh @@ -3,8 +3,8 @@ #------------------------------------------------------------------------------- mkdir ./executables/; -# Pull yt-dlp (v2024.09.27) -curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2024.09.27/yt-dlp > ./executables/yt-dlp; +# Pull yt-dlp (v2024.10.07) +curl -L https://github.com/yt-dlp/yt-dlp/releases/download/2024.10.07/yt-dlp > ./executables/yt-dlp; chmod a+x ./executables/yt-dlp; # Pull crip (v2.1.0)