go-openapi / strfmt

openapi toolkit common string formats
Apache License 2.0
102 stars 62 forks source link

Use google/uuid not pborman/uuid #50

Closed justincormack closed 5 years ago

justincormack commented 5 years ago

fix #38

pborman maintains google's uuid package, and they have a complicated shared history, but the release notes for pborman/uuid now read

The choice of this package vs the google/uuid package is largely dependent on your use case. If you want to use UUIDs as keys, used the google/uuid version (a UUID is an array). Use this package for compatibility, needing to distinguish between non-set UUID and the zero UUID, prefer byte slices over arrays.

google/uuid is now a dependency of pborman/uuid which is now just a compat wrapper, so switch to just using google/uuid. Changes are just minor API differences.

Signed-off-by: Justin Cormack justin.cormack@docker.com

codecov[bot] commented 5 years ago

Codecov Report

Merging #50 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #50   +/-   ##
=======================================
  Coverage   89.26%   89.26%           
=======================================
  Files          10       10           
  Lines        1668     1668           
=======================================
  Hits         1489     1489           
  Misses        149      149           
  Partials       30       30

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4d736b2...c004288. Read the comment docs.