Victor
Victor
The same TS incompatibility with import syntax ```js import * as axios from 'axios' const axiosInstance = axios.create({ timeout: 15000 }) ``` `Property 'create' does not exist on type 'typeof...
The last stable version force `latin1` encoding of all the headers including filename I created a PR that fixes the encoding by extending Multer API with unicode (or anything else)...
@LinusU I created a different PR that doesn't break backward compatibility - it extends the multer's API with a default `defParamCharset: 'latin1'` value Also, improved the translations https://github.com/expressjs/multer/pull/1210
@itsfuad It's an old bug in multer - https://github.com/expressjs/multer/issues/259 In the conversation you can find a number of workarounds - basically you can listen to req 'aborted' event But it...
I'd try to remove `errForward` middleware since the last middleware is synchronous - for ensuring the `req` context is not lost / overridden
We have an open PR that fixes all the unicode issues in the lts version - https://github.com/expressjs/multer/pull/1210 You can ping the maintainers for speeding things up as well
TypeScript definitions update - https://github.com/DefinitelyTyped/DefinitelyTyped/pull/65578
@starnayuta I understand that but the v1.4.5 was marked as lts, so I don't believe it will be changed as part of 1.4.5; only as a new version, until it...
@LinusU Are there any blockers for merging this PR? Can we merge it?
@UlisesGascon, maybe you could assist with this PR?