Releases: shellscape/koa-webpack
Release list
v6.0.0
v5.2.3
Updates
- Dependency updates and
npm auditfixes
v5.2.2
Bugfixes
- fix: add getHeader function for webpack-dev-middleware (#110)
v5.2.1
OK so there was one more patch on 5.x. Had to update some metadata in the README. Nothing functional changed in this release.
v5.2.0
This version is more or less just a maintenance update. Since some of the user-facing console output has changed, and some dependencies were updated to new major versions, it was bumped as a minor version. This will be the last release in the 5.x version line. A new major version will be released that removes the need for both webpack-dev-middleware and webpack-hot-client.
Updates
- dropped
ajvin favor ofjoi - removed
@webpack-contrib/shema-utils - updated
ws - updated documentation
v5.1.1
This release was generated as part of a fix for a security alert. There have been no functional changes.
v5.1.0
Updates
- Update dependencies to use
webpack-hot-client@4.1.0
v5.0.2
Maintenance release. fix: pass compiler to middleware.
v5.0.1
Maintenance release. fix: add schemas to package files
v5.0.0
This version updates webpack-hot-client to the latest version.
Breaking Changes
webpack-hot-client@4.0.0 contains many breaking changes. The breaking changes here follow those changes.
devoption now nameddevMiddlewarehotoption now namedhotClient- The result from calling the default
koa-webpackexport now returns aPromise
e.g.
koaWebpack({ ... opts ... })
.then((middleware) => {
app.use(middleware);
});