You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For file uploading to the cloud, I'm using Multer ("multer": "^2.0.0-rc.2"). With Node.js 15.3.0 everything is working great, after upgrading to 16.0.0 (starting end of March 2021) I'm getting the following error:
When I'm rolling back to 15.3.0 no error occurs.
After some investigation, I've found out that the source of the issue is await asyncUpload(req, res);.
The code snippet:
At Node.js thread I've got a response that the change nodejs/node#35187 has broken some compatibility and Multer has to be adjusted to be able to work with Node.js 16.0+
The text was updated successfully, but these errors were encountered:
pubmikeb
changed the title
Node.js 16.0 compatibility issue due to semver-major upgrade
Multer 2.0 doesn't work with Node.js 16.0 due to semver-major upgrade
Apr 3, 2021
For file uploading to the cloud, I'm using Multer (
"multer": "^2.0.0-rc.2"
). With Node.js 15.3.0 everything is working great, after upgrading to 16.0.0 (starting end of March 2021) I'm getting the following error:When I'm rolling back to 15.3.0 no error occurs.
After some investigation, I've found out that the source of the issue is
await asyncUpload(req, res);
.The code snippet:
At Node.js thread I've got a response that the change nodejs/node#35187 has broken some compatibility and Multer has to be adjusted to be able to work with Node.js 16.0+
The text was updated successfully, but these errors were encountered: