Skip to content
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

Drop webpack-cli 4 support, only webpack-cli ^5.1.4 is supported #1307

Merged
merged 2 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## UNRELEASED

This is a new major version that contains several backwards-compatibility breaks.

### BC Breaks

* #1307 Drop `webpack-cli` 4 support, only `webpack-cli` ^5.1.4 is supported (@Kocal)

## 4.7.0

### Features

* #1284 Improve ESLint and Babel help messages, when enabling ESLint integration (@Kocal)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.5",
"webpack": "^5.72",
"webpack-cli": "^4.9.1 || ^5.0.1",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0",
"zombie": "^6.1.4"
},
Expand Down Expand Up @@ -133,7 +133,7 @@
"vue-loader": "^15.0.11 || ^17.0.0",
"vue-template-compiler": "^2.5",
"webpack": "^5.72",
"webpack-cli": "^4.9.1 || ^5.0.1",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0"
},
"peerDependenciesMeta": {
Expand Down
133 changes: 85 additions & 48 deletions test_apps/npm-with-babel/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 test_apps/npm-with-babel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"@babel/plugin-proposal-partial-application": "^7.18.9",
"@babel/preset-env": "^7.16.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
"webpack-cli": "^5.1.4"
}
}
Loading