-
Notifications
You must be signed in to change notification settings - Fork 0
chore: Bump the npm_and_yarn group across 12 directories with 30 updates #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,6 +42,6 @@ | |
| "@pollyjs/utils": "^6.0.1" | ||
| }, | ||
| "devDependencies": { | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^4.59.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rollup v4 incompatible with existing v1-era pluginsHigh Severity The PR description says rollup bumps from Additional Locations (2) |
||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,15 +40,15 @@ | |
| }, | ||
| "dependencies": { | ||
| "@pollyjs/utils": "^6.0.1", | ||
| "body-parser": "^1.19.0", | ||
| "body-parser": "^2.2.2", | ||
| "cors": "^2.8.5", | ||
| "express": "^4.17.1", | ||
| "express": "^5.2.1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. express and body-parser bumped to incompatible major versionsHigh Severity The PR description says |
||
| "fs-extra": "^10.0.0", | ||
| "http-graceful-shutdown": "^3.1.5", | ||
| "morgan": "^1.10.0", | ||
| "nocache": "^3.0.1" | ||
| }, | ||
| "devDependencies": { | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^4.59.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,6 +47,6 @@ | |
| "devDependencies": { | ||
| "fixturify": "^2.1.1", | ||
| "rimraf": "^3.0.2", | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^2.80.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,6 +45,6 @@ | |
| "@pollyjs/persister": "^6.0.5" | ||
| }, | ||
| "devDependencies": { | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^4.59.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,6 +45,6 @@ | |
| "@pollyjs/persister": "^6.0.5" | ||
| }, | ||
| "devDependencies": { | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^4.59.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,6 +46,6 @@ | |
| "@pollyjs/utils": "^6.0.1" | ||
| }, | ||
| "devDependencies": { | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^4.59.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,6 +49,6 @@ | |
| }, | ||
| "devDependencies": { | ||
| "har-validator": "^5.1.5", | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^4.59.0" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,6 +43,6 @@ | |
| "url-parse": "^1.5.3" | ||
| }, | ||
| "devDependencies": { | ||
| "rollup": "^1.14.6" | ||
| "rollup": "^2.80.0" | ||
| } | ||
| } | ||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
node-fetch bumped to v3 ESM-only breaking change
High Severity
The PR description states
node-fetchgoes from2.6.6to2.6.7, but these packages actually bump to^3.3.2.node-fetchv3 is ESM-only, which is incompatible with the CommonJS build pipeline used here (viarollup-plugin-commonjs). Code importing{ Response }fromnode-fetchin test helpers andnative-request.jswill break because v3 has a different module format and API surface.Additional Locations (1)
packages/@pollyjs/adapter-puppeteer/package.json#L49-L50