-
Notifications
You must be signed in to change notification settings - Fork 33
chore: update deps to latest versions #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
I've tried to make the minimum amount of changes necessary for this, since the underlying crypto libraries only support node Buffers or BufferLists there doesn't seem a lot of point in doing lots of conversions between Uint8Arrays and Buffers. BREAKING CHANGES: - All deps use Uint8Arrays in place of node Buffers
@achingbrain Tnx for update 🙂 Did you intentionally leave Buffers in noise constructor? |
Yes - the underlying I did originally try to remove |
@mpetrunic could this be released please? |
A note regarding releasing this. Please do not release it with While we do not have everything bubbled up to |
@mpetrunic from the commit log it looks like you're gearing up to release this as |
Oh, was not aware of that, tnx. i dont think release pipepline supports beta tags so I will have to release it manually anyways |
https://www.npmjs.com/package/libp2p-noise/v/2.0.0-beta released with beta tag |
I think @vasco-santos meant to release it with a beta npm dist tag, rather than putting it in the version number, that way we don’t need to do follow-up PRs to dependant modules to remove the extra specifier, we can just switch the dist tag from beta to latest. |
Ah, no, I meant 2.0.0 as beta, not 2.0.0-beta as beta, otherwise we have to re-PR to remove the -beta part of the version number. See how libp2p-tcp has done it, for example. |
Yeah, I meant as @achingbrain said. Sorry for not being specific enough. |
we have 2.0.0 now tagged with beta 🙂 |
Perfect, thank you! |
I've tried to make the minimum amount of changes necessary for this, since the underlying crypto libraries only support node Buffers or BufferLists there doesn't seem a lot of point in doing lots of conversions between Uint8Arrays and Buffers.
BREAKING CHANGES: