-
Notifications
You must be signed in to change notification settings - Fork 930
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
gomod: Switch UUID package #12471
gomod: Switch UUID package #12471
Conversation
This effectively removes github.com/pborman/uuid from the list of dependencies and moves github.com/google/uuid to be a direct dependency. It's already included as an indirect dependency from other packages. The package github.com/pborman/uuid leverages github.com/google/uuid itself. See the projects README for more details. Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
…uuid Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
…/uuid Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
MarshalBinary returns an error which needs to be handled downstream. Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
Signed-off-by: Julian Pelizäus <julian.pelizaeus@canonical.com>
What is the reason for doing this? |
We can get rid of a dependency and use a package that seems to be actively developed (based on recent commits). |
I didn't realise that the pborman package wasn't being developed! Yes this is much preferred. I'd like to make this change in LXD Cloud too. |
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
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.
Thanks for splitting into many commits will help with back porting.
This effectively removes
github.com/pborman/uuid
from the list of dependencies and movesgithub.com/google/uuid
to be a direct dependency. It's already included as an indirect dependency from other packages.The package
github.com/pborman/uuid
leveragesgithub.com/google/uuid
itself. See the projects README for more details.