Skip to content

Conversation

@greenkeeper
Copy link

@greenkeeper greenkeeper bot commented Apr 22, 2017

Version 1.10.2 of webpack-dev-middleware just got published.

Dependency webpack-dev-middleware
Current Version 1.8.4
Type dependency

The version 1.10.2 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of webpack-dev-middleware.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Release Notes v1.10.2

Security fix:

This version contains a security fix, which is also breaking change if you have an insecure configuration.
We are releasing this breaking change as patch version to protect you from attacks.
Sorry if this breaks your setup, but the fix is easy.

We removed setting Access-Control-Allow-Origin to * be default. This allowed evil websites to access your assets.
Instead we ask you to set Access-Control-Allow-Origin manually to your host if required in your setup.
Use the headers option to do so.

middleware(compiler, {
    headers: {
        "Access-Control-Allow-Origin": "your-host"
    }
})

Read more about CORS here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS

Bugfixes:

  • Remove Access-Control-Allow-Origin = * default
Commits

The new version differs by 33 commits0.

  • 9b03d79 1.10.2
  • c59b3b3 Merge remote-tracking branch 'remotes/origin/add-node-7-travis'
  • 626a35a remove security risk
  • 798b2f1 Avoid setting http status code explicitly (#175)
  • 1e01626 adding node 7 to travis config (#185)
  • d986c2e Merge pull request #176 from piperchester/patch-1
  • 9b9ffee fixing some number typos in the tests
  • d3dfe67 adding node 7 to travis config
  • 0ce28c7 Fix link to Kees
  • bd6a593 use decodeURIComponent for getFilenameFromUrl final output (#173)
  • 8e870fd 1.10.1
  • 6c1b473 Fix files with non-ascii names not getting served
  • a34ae3e 1.10.0
  • e92de8c Fix tests after webpack update
  • ce1373f Upgrade webpack dependency

There are 33 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 22, 2017

Version 1.11.0 just got published.

Update to this version instead 🚀

Release Notes v1.11.0

Updates

  • Webpack@3 Support
  • Koa@2 Support

Features

  • add mimeTypes option

Bugfixes

  • Use options.log, warn and error for messages
  • serverSideRendering example corrected
  • added support for multi-compiler configuration
Commits

The new version differs by 13 commits.

  • e264335 1.11.0
  • a22f69b updating devDep, server tests for webpack@3s
  • a9e83b4 chore(package): update peerDependencies (webpack v3.0.0) (#200)
  • 9050342 fixes #178: update webpack peer dep
  • 8f41224 resolving review requests from #186
  • 42c2e5d Use options.log, warn and error for compilation messages (#186)
  • 3833a85 Add a option, mimeTypes, to support defining custom mime types (#150)
  • ebb1fe5 Make serverSideRendering example work consistently (#196)
  • 26f0b40 Fix webpackDevMiddleware to work with Koa2, a Promise must always be returned (#177)
  • a02a3cf silly typo in issue template
  • cf18395 updating the issue template with more emphasis
  • 23a7509 resolve merge conflict for PR #151 (#187)
  • ae920f1 fix tests for removed headers

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 31, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 31, 2017

Version 1.12.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 6 commits.

  • 762797e 1.12.0
  • 1954994 fix sinon desperation (#209)
  • 4203bdf add node 8 for travis test (#208)
  • 63ac805 Add report time feature (#195)
  • 712040d Stop serving index.html if options.index is falsy (#154)
  • e33087c Use querystring.unescape to fallback to safer equivalent that does not throw on malformed URIs (#201)

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 22, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 22, 2017

Version 1.12.1 just got published.

Update to this version instead 🚀

Release Notes v1.12.1

Updates

  • update mime package to avoid security vulnerability (#231)
Commits

The new version differs by 4 commits.

  • 9ab1d96 1.12.1
  • bc9e37c fix: update mime package to avoid security vulnerability (#231)
  • 4bb8bd7 Fix typo in README: confiugrations -> configurations (#220)
  • 441335c Grammatical fixes (#213)

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 27, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 27, 2017

Version 1.12.2 just got published.

Update to this version instead 🚀

Release Notes v1.12.2

Bugfixes

  • serve .wasm files as application/wasm (without charset) (#230)
Commits

The new version differs by 2 commits.

  • 8db8794 1.12.2
  • 91506f3 serve .wasm files as application/wasm (without charset) (#230)

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 14, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 14, 2017

Version 2.0.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

  • e879bd7 update readme for 2.0.0
  • e9407b7 refactoring for 2.0.0 (#233)

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 14, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 14, 2017

Version 2.0.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 18, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 18, 2017

Version 2.0.2 just got published.

Update to this version instead 🚀

Release Notes v2.0.2

Updates

  • Implemented webpack-log, removed dependencies related to the previous logging implementation.
Commits

The new version differs by 4 commits.

  • 97a3c0f 2.0.2
  • 314216b implementing webpack-log, cleaning up sinon sandboxes in tests
  • 0f9e063 fixed name of logging lib and added link (#238)
  • c25b883 (sp) Update Readme (#237)

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 22, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 22, 2017

Version 2.0.3 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 7, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 7, 2018

Version 2.0.4 just got published.

Update to this version instead 🚀

Commits

The new version differs by 5 commits.

  • bb57ce6 2.0.4
  • 368e185 adding colors to default stats options
  • 19deafa fixing format of watchOptions default value
  • 3825e42 Fixes typo in readme (#240)
  • 9915be7 Edit markdown grammar in README.md (#243)

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 9, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 9, 2018

Version 2.0.5 just got published.

Update to this version instead 🚀

Commits

The new version differs by 7 commits.

  • 0f9ccbe 2.0.5
  • 6489fa1 Fix getPaths for publicPaths that are URLs (#255) (#257)
  • fed8046 Update README.md (#256)
  • ba6248f prevent multiple identical compilations via watch startTime (#250)
  • f17765f Allow webpack v4 and v4-beta (#251)
  • 2e772c1 fixes #252: missing contributing.md
  • 236afb1 docs(README): Fix links to source and describe webpack-log (#248)

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 22, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 22, 2018

Version 2.0.6 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 0d57c32 2.0.6
  • 2589b7b Fix a repeated typo in README.md (#261)
  • c06df6f fixes #258: skip compilers with no publicPath (#259)

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 28, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 28, 2018

Version 3.0.0 just got published.

Update to this version instead 🚀

Release Notes 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.
Commits

The new version differs by 3 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 6, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 6, 2018

Version 3.0.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 5 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 26, 2018

Version 3.1.0 just got published.

Update to this version instead 🚀

Release Notes 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)
Commits

The new version differs by 5 commits.

  • 4d53d7c 3.1.0
  • 8a0bb32 Allow Writing Files to Disk (#287)
  • 08207cc On windows path spaces should resolve to %20 (#288)
  • d26c67c fixes #282. credit @cexoso. in certain edge situations res.locals is undefined
  • 781bdc1 update README with publicPath doc link

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 5, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 5, 2018

Version 3.1.1 just got published.

Update to this version instead 🚀

Release Notes v3.1.1

Bugfixes

  • fix(package): add chalk to peerDeps (#292)
Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 5, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 5, 2018

Version 3.1.2 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

  • 884664a chore(release): v3.1.2
  • 6255a43 refactor: use chalk from webpack-log (#293)

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 26, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 26, 2018

Version 3.1.3 just got published.

Update to this version instead 🚀

Release Notes v3.1.3

Bugfixes

  • Excluded outputPath from URI escaping to fix #297. (#303)
  • fix: fixes #290 - MultiCompiler exception with writeToDisk (#301)
Commits

The new version differs by 6 commits.

  • 27b6c1a 3.1.3
  • 30ba0d7 chore: update package-lock.json
  • e606cf1 Excluded outputPath from URI escaping to fix #297. (#303)
  • ac17265 fix: fixes #290 - MultiCompiler exception with writeToDisk
  • e0d4293 docs(readme): fix missing right parenthesis (#299)
  • 9afcd36 docs(readme): update requirements section to include webpack@4+

See the full diff

greenkeeper bot added a commit that referenced this pull request Aug 23, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Aug 23, 2018

Version 3.2.0 just got published.

Update to this version instead 🚀

Release Notes v3.2.0

2018-08-23

Bug Fixes

  • package: 18 security vulnerabilities (#329) (5951de9)

Features

  • middleware: add methods option (options.methods) (#319) (fe6bb86)
Commits

The new version differs by 13 commits.

  • 610e260 chore(release): 3.2.0
  • 38077ef test(sinon): fix deprecation warnings
  • b6cf7ab chore(package): update dependencies
  • 93700af test(server): update expected content-length
  • a49bf8b ci(travis): add build stages
  • a410ea2 chore(package): update webpack-log v1.2.0...2.0.0 (#331)
  • 5951de9 fix(package): 18 security vulnerabilities (#329)
  • a718da6 chore(.github/CODEOWNERS): add code owners (#323)
  • 1c85351 docs(breaking-changes): remove and replace with CHANGELOG.md (#322)
  • e7536ad chore(package): add release script (scripts) (#321)
  • fe6bb86 feat(middleware): add methods option (options.methods) (#319)
  • ad88fed chore(package): update webpack-log v1.0.1...1.2.0 (#318)
  • e0c5f11 docs: catches the case whereby assets are an object (#311)

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 10, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 10, 2018

Version 3.3.0 just got published.

Update to this version instead 🚀

Release Notes v3.3.0

2018-09-10

Features

  • middleware: expose the memory filesystem (response.locals.fs) (#337) (f9a138e)
Commits

The new version differs by 3 commits.

  • 0f9e2e7 chore(release): 3.3.0
  • f9a138e feat(middleware): expose the memory filesystem (response.locals.fs) (#337)
  • bf586c9 refactor(package): remove path-is-absolute dependency (dependencies) (#335)

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 24, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 24, 2018

Update to this version instead 🚀

Release Notes for v3.4.0

2018-09-24

Changes

  • Remove loud-rejection package which modified the global promise rejection and should not be used in a package like this (#340) (f0a8e3e)

Bug fixes

  • middleware: replace url-join with path.posix.join (#334) (d75802b)
Commits

The new version differs by 3 commits.

  • 8a5d661 3.4.0
  • f0a8e3e Remove loud-rejection (#340)
  • d75802b fix: replace url-join with path.posix.join (#334)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 6, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 6, 2019

Update to this version instead 🚀

Release Notes for 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)
Commits

The new version differs by 6 commits.

  • 0e8ac82 chore(release): 3.5.0
  • cf4d7a9 fix(middleware): do not add 'null' to Content-Type (#355)
  • e6cfe7c Update package-lock.json (#352)
  • e56a181 feat: allow to redefine mimeTypes (possible to use force option) (#349)
  • a59b9fd docs(readme): fix writeToDisk example (#342)
  • cc46398 docs(release): 3.4.0

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 17, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 17, 2019

Update to this version instead 🚀

Release Notes for v3.5.1

3.5.1 (2019-01-17)

Bug Fixes

  • remove querystring from filenames when writing to disk (#361) (90d0d94)
Commits

The new version differs by 5 commits.

  • 71c3e20 chore(release): 3.5.1
  • d86bd01 ci: test on all lts node version on linux (#364)
  • 464de8d ci: node@11 test on windows (#363)
  • 113f79b chore(deps): update (#362)
  • 90d0d94 fix: remove querystring from filenames when writing to disk (#361)

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 6, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 6, 2019

Update to this version instead 🚀

Release Notes for v3.5.2

3.5.2 (2019-02-06)

Bug Fixes

Commits

The new version differs by 3 commits.

  • 8e54af2 chore(release): 3.5.2
  • b135b3d fix: don't add charset to usdz file type (#357)
  • c64a2c1 test: add tests to assert if subdirectories with special characters are served correctly (#365)

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 19, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 19, 2019

Update to this version instead 🚀

Release Notes for v3.6.0

3.6.0 (2019-02-19)

Features

  • configurable file system via options.fs (#370) (1762cb3)
Commits

The new version differs by 5 commits.

  • e5bd8f8 chore(release): 3.6.0
  • a54dd45 chore(deps): update (#373)
  • 2a84dd4 ci: improve (#372)
  • 81c2c5d refactor: consistent write to fs (#371)
  • 1762cb3 feat: configurable file system via options.fs (#370)

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 6, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 6, 2019

Update to this version instead 🚀

Release Notes for v3.6.1

3.6.1 (2019-03-06)

Bug Fixes

  • do not overwrite Content-Type if header already exists (#377) (b2a6fed)
Commits

The new version differs by 2 commits.

  • 894ba2b chore(release): 3.6.1
  • b2a6fed fix: do not overwrite Content-Type if header already exists (#377)

See the full diff

greenkeeper bot added a commit that referenced this pull request Apr 3, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 3, 2019

Update to this version instead 🚀

Release Notes for v3.6.2

3.6.2 (2019-04-03)

Bug Fixes

  • check existence of res.getHeader and set the correct Content-Type (#385) (56dc705)
Commits

The new version differs by 5 commits.

  • 7942228 chore(release): 3.6.2
  • 56dc705 fix: check existence of res.getHeader and set the correct Content-Type (#385)
  • eb2e32b chore: import development (#387)
  • e6c2b3c refactor: migrate on jest (#386)
  • dba5e02 test: fix overwrite Content-Type (#378)

See the full diff

greenkeeper bot added a commit that referenced this pull request May 15, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented May 15, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Sep 3, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 3, 2019

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Sep 28, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 28, 2019

Update to this version instead 🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant