-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Remove dependency on gofrs/uuid #5559
Conversation
internal/hook/item_hook_handler.go
Outdated
@@ -22,7 +22,7 @@ import ( | |||
"strings" | |||
"time" | |||
|
|||
uuid "github.com/gofrs/uuid" | |||
uuid "github.com/google/uuid" |
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.
not quite sure why we need to rename this.
why not just make it
"github.com/google/uuid"
in the import chunk?
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.
Not sure the history, but IMO, we can rename it
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.
Done, removed it.
Signed-off-by: Lyndon-Li <[email protected]>
f943130
to
b06cb9e
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.
lgtm thanks
Remove the unnecessary dependency on gofrs/uuid to reduce security risks