We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 ?
The text was updated successfully, but these errors were encountered:
chore: update uuid to version 11 as version 3 is deprecated
1cb912a
Implements: QuorumDMS#359, QuorumDMS#342
No branches or pull requests
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
can i make a pull request ?
The text was updated successfully, but these errors were encountered: