Skip to content
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

uuid@3 is deprecate #342

Open
rafipiccolo opened this issue Oct 8, 2022 · 0 comments
Open

uuid@3 is deprecate #342

rafipiccolo opened this issue Oct 8, 2022 · 0 comments

Comments

@rafipiccolo
Copy link

rafipiccolo commented Oct 8, 2022

Looking here i see that the whole version 3 is deprecated
https://www.npmjs.com/package/uuid
and npm says the same when i install ftp-srv.

i see that it only takes 5 line changes in the codebase to update the version :
https://github.com/QuorumDMS/ftp-srv/search?q=uuid

const uuid = require('uuid');
uuid.v4() // ⇨ '0b5f7cc5-9731-40b8-a34f-37c462b8ed53'
=>
const { v4: uuidv4 } = require('uuid');
uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'

can i make a pull request ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant