Skip to content

Commit

Permalink
fix: update playwright to 1.29.2 and make peer dep. less strict (#1735)
Browse files Browse the repository at this point in the history
Closes #1723
  • Loading branch information
B4nan committed Jan 10, 2023
1 parent 0ed9ee8 commit c654fcd
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -92,7 +92,7 @@
"lerna": "^6.0.3",
"lint-staged": "^13.0.3",
"node-gyp": "^9.1.0",
"playwright": "1.27.1",
"playwright": "1.29.2",
"portastic": "^1.0.1",
"proxy": "^1.0.2",
"puppeteer": "19.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/browser-pool/package.json
Expand Up @@ -51,7 +51,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"playwright": ">= 1.21.x <= 1.27.x",
"playwright": "<= 2.x",
"puppeteer": "<= 19.x"
},
"peerDependenciesMeta": {
Expand Down
2 changes: 1 addition & 1 deletion packages/crawlee/package.json
Expand Up @@ -69,7 +69,7 @@
"import-local": "^3.1.0"
},
"peerDependencies": {
"playwright": ">= 1.21.x <= 1.27.x",
"playwright": "<= 2.x",
"puppeteer": "<= 19.x"
},
"peerDependenciesMeta": {
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright-crawler/package.json
Expand Up @@ -64,7 +64,7 @@
"ow": "^0.28.1"
},
"peerDependencies": {
"playwright": ">= 1.21.x <= 1.27.x"
"playwright": "<= 2.x"
},
"peerDependenciesMeta": {
"playwright": {
Expand Down
@@ -1,7 +1,10 @@
import { Actor } from 'apify';
import { Dataset, PlaywrightCrawler } from '@crawlee/playwright';
import { skipTest } from '../../tools.mjs';
import { ApifyStorageLocal } from '@apify/storage-local';

skipTest('fails after update to playwright 1.29.0, looks like issue the chromium extension, maybe the manifest_version 2 vs 3?');

const mainOptions = {
exit: Actor.isAtHome(),
storage: process.env.STORAGE_IMPLEMENTATION === 'LOCAL' ? new ApifyStorageLocal() : undefined,
Expand Down

0 comments on commit c654fcd

Please sign in to comment.