Koa Webpack Versions Save

Development and Hot Reload Middleware for Koa2

v6.0.0

3 years ago

Updates

  • chore!: upgrade deps; drop node 8 (#125)

v5.2.3

5 years ago

Updates

  • Dependency updates and npm audit fixes

v5.2.2

5 years ago

Bugfixes

  • fix: add getHeader function for webpack-dev-middleware (#110)

v5.2.1

5 years ago

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

5 years ago

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 ajv in favor of joi
  • removed @webpack-contrib/shema-utils
  • updated ws
  • updated documentation

v5.1.1

5 years ago

This release was generated as part of a fix for a security alert. There have been no functional changes.

v5.1.0

5 years ago

Updates

v5.0.2

5 years ago

Maintenance release. fix: pass compiler to middleware.

v5.0.1

5 years ago

Maintenance release. fix: add schemas to package files

v5.0.0

5 years ago

This version updates webpack-hot-client to the latest version.

Breaking Changes

[email protected] contains many breaking changes. The breaking changes here follow those changes.

  • dev option now named devMiddleware
  • hot option now named hotClient
  • The result from calling the default koa-webpack export now returns a Promise e.g.
  koaWebpack({ ... opts ... })
   .then((middleware) => {
    app.use(middleware);
  });