-
Notifications
You must be signed in to change notification settings - Fork 2
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
Use built-in type definitions for uuid #1384
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1384 +/- ##
=======================================
Coverage 87.40% 87.40%
=======================================
Files 186 186
Lines 2413 2413
Branches 325 318 -7
=======================================
Hits 2109 2109
- Misses 278 304 +26
+ Partials 26 0 -26 ☔ View full report in Codecov by Sentry. |
7c0688c
to
d31d9ae
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is always nice to see unneeded code removed. I did not try it locally but the tests, IIRC, include some use of Uuid, so since all that passed I think this is going to be OK.
@@ -10320,6 +10313,7 @@ | |||
"https://github.com/sponsors/broofa", | |||
"https://github.com/sponsors/ctavan" | |||
], | |||
"license": "MIT", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strange that this line was added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that too; I think I updated npm
, but I'm not sure what version from, and I can't find anything obvious in the npm changelog. The upstream package.json
license hasn't changed in almost a decade.
Version 11 of the uuid library[1] included a migration to TypeScript, so the externally-provided `@types/uuid` is no longer needed. Uninstall it. [1] https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md#1100-2024-10-26
d31d9ae
to
25816ec
Compare
Version 11 of the uuid library included a migration to TypeScript, so the externally-provided
@types/uuid
is no longer needed. Uninstall it.We upgraded to version 11 in PR #1285.