Skip to content

Releases: shellscape/koa-webpack

v6.0.0

19 Aug 13:26
Compare
Choose a tag to compare

Updates

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

v5.2.3

04 May 19:26
Compare
Choose a tag to compare

Updates

  • Dependency updates and npm audit fixes

v5.2.2

08 Mar 15:02
Compare
Choose a tag to compare

Bugfixes

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

v5.2.1

08 Jan 13:29
Compare
Choose a tag to compare

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

08 Jan 13:23
Compare
Choose a tag to compare

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

04 Nov 18:38
Compare
Choose a tag to compare

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

v5.1.0

09 Jul 12:09
Compare
Choose a tag to compare

Updates

v5.0.2

09 Jul 12:08
Compare
Choose a tag to compare

Maintenance release. fix: pass compiler to middleware.

v5.0.1

09 Jul 12:08
Compare
Choose a tag to compare

Maintenance release. fix: add schemas to package files

v5.0.0

02 Jun 18:02
Compare
Choose a tag to compare

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);
  });