Releases: webpack/webpack-dev-middleware
Releases · webpack/webpack-dev-middleware
v3.5.0
3.5.0 (2019-01-04)
Bug Fixes
- middleware: do not add 'null' to Content-Type (#355) (cf4d7a9)
Features
- allow to redefine
mimeTypes
(possible to use force
option) (#349) (e56a181)
v3.4.0
Bug Fixes
- index: don't modify the default behavior for
unhandledRejection
(#340) (f0a8e3e)
- middleware: replace
url-join
with path.posix.join
(#334) (d75802b)
v3.3.0
Features
- middleware: expose the memory filesystem (
response.locals.fs
) (#337) (f9a138e)
v3.2.0
Bug Fixes
Features
- middleware: add
methods
option (options.methods
) (#319) (fe6bb86)
v3.1.3
Bugfixes
- Excluded outputPath from URI escaping to fix #297. (#303)
- fix: fixes #290 - MultiCompiler exception with writeToDisk (#301)
v3.1.2
Updates
- refactor: use chalk from webpack-log (#293)
v3.1.1
Bugfixes
- fix(package): add chalk to peerDeps (#292)
v3.1.0
Bugfixes
- On windows path spaces should resolve to %20 (#288)
- fixes #282. credit @cexoso. in certain edge situations res.locals is undefined (d26c67c)
Features
- Allow Writing Files to Disk (#287)
v3.0.0
Updates
- Webpack 4 (#267)
- remove watchOffset option in favor of time-fix-plugin
Breaking Changes
- Introduces full support for webpack v4 and removes support for lesser versions.
- The
watchOffset
option has been removed and the README has been updated with alternative means of accomplishing the same result for this module and webpack v4.
middleware.webpack
now returns a Promise
that should be handled with .then
when needing to perform other actions, like adding additional middleware.
v2.0.2
Updates
- Implemented
webpack-log
, removed dependencies related to the previous logging implementation.