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
Hello and thank you for this minimal and smart repo!
Anyway, I am given warnings about using Buffer instead of Buffer.from with my Node 18 Lambda application.
Full error: ERROR (node:8) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Im guessing it could have to do with busboy or something since your lib doesnt even include "Buffer" at all (from what I can see).
A fix to this would be appreciated 👍
The text was updated successfully, but these errors were encountered:
I encountered the same issue... have published a revised version here using the PR opened by jrose-stac. Take no credit for the changes, simply published a new package as I needed it for a project. Solved the issue for me, hope it helps.
ERROR (node:8) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
(Use `node --trace-deprecation ...` to show where the warning was created)
Hello and thank you for this minimal and smart repo!
Anyway, I am given warnings about using Buffer instead of Buffer.from with my Node 18 Lambda application.
Full error:
ERROR (node:8) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
Im guessing it could have to do with busboy or something since your lib doesnt even include "Buffer" at all (from what I can see).
A fix to this would be appreciated 👍
The text was updated successfully, but these errors were encountered: