2.0.0 release
See original GitHub issueIf I am granted npm/GitHub access, here are my plans for 2.0.0 release:
- expose
ctx.file
,ctx.files
,ctx.request.file
, andctx.request.files
versus binding to the Node request object (https://github.com/koa-modules/multer/pull/23) - add multer as a peer dependency so streams can be used (https://github.com/koa-modules/multer/pull/23
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (2 by maintainers)
Top Results From Across the Web
org.springframework.boot » spring-boot » 2.0.0.RELEASE
Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". It takes an opinionated view of...
Read more >Spring Boot 2.0 goes GA
On behalf of the team, it is my very great pleasure to announce that Spring Boot 2.0 is now generally available as 2.0.0.RELEASE...
Read more >Spring Boot 2.0 Release Notes - GitHub
Spring Boot 2.0 now includes support for Kotlin 1.2.x and offers a runApplication function which provides a way to run a Spring Boot...
Read more >Semantic Versioning 2.0.0 | Semantic Versioning
In systems with many dependencies, releasing new package versions can quickly become a nightmare. If the dependency specifications are too tight, you are...
Read more >Spring Boot application start failed with 2.0.0.RELEASE
Not able to start the Spring Boot application from STS if the spring-boot-starter-parent is 2.0.0.RELEASE or higher if i make it 1.5.0.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have released an official @koajs fork of this package at https://github.com/koajs/multer with latest version being
v2.0.0
. Note that the only breaking changes are thatctx.req.file
andctx.req.files
are no longer accessible. Please usectx.file
,ctx.files
, orctx.request.file
andctx.request.files
instead.Here is a list of the issues it resolves:
I suggest to @fundon that he archive this repository, publish a deprecation notice
npm deprecate koa-multer "Please use @koa/multer instead, see <https://github.com/koajs/multer>"
, and update theREADME.md
file with a notice as well with the same deprecation message.Thank you.
@fundon Fantastic. I truly appreciate this. Thank you so much, this will be very helpful for community and future of Koa!