Skip to content

Commit 00f182b

Browse files
authored
Expose compare package (#2001)
I've needed this outside of ggcr for a while but have been just making due without. Signed-off-by: Jon Johnson <[email protected]>
1 parent b8e87ed commit 00f182b

15 files changed

+8
-8
lines changed

pkg/crane/crane_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ import (
2828
"strings"
2929
"testing"
3030

31-
"github.com/google/go-containerregistry/internal/compare"
3231
"github.com/google/go-containerregistry/pkg/authn"
3332
"github.com/google/go-containerregistry/pkg/crane"
3433
"github.com/google/go-containerregistry/pkg/name"
3534
"github.com/google/go-containerregistry/pkg/registry"
3635
v1 "github.com/google/go-containerregistry/pkg/v1"
36+
"github.com/google/go-containerregistry/pkg/v1/compare"
3737
"github.com/google/go-containerregistry/pkg/v1/empty"
3838
"github.com/google/go-containerregistry/pkg/v1/mutate"
3939
"github.com/google/go-containerregistry/pkg/v1/random"

pkg/legacy/tarball/write_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ import (
2424
"strings"
2525
"testing"
2626

27-
"github.com/google/go-containerregistry/internal/compare"
2827
"github.com/google/go-containerregistry/pkg/name"
2928
v1 "github.com/google/go-containerregistry/pkg/v1"
29+
"github.com/google/go-containerregistry/pkg/v1/compare"
3030
"github.com/google/go-containerregistry/pkg/v1/mutate"
3131
"github.com/google/go-containerregistry/pkg/v1/partial"
3232
"github.com/google/go-containerregistry/pkg/v1/random"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pkg/v1/daemon/image_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import (
2727
api "github.com/docker/docker/api/types/image"
2828

2929
"github.com/docker/docker/api/types"
30-
"github.com/google/go-containerregistry/internal/compare"
3130
"github.com/google/go-containerregistry/pkg/name"
31+
"github.com/google/go-containerregistry/pkg/v1/compare"
3232
"github.com/google/go-containerregistry/pkg/v1/tarball"
3333
"github.com/google/go-containerregistry/pkg/v1/validate"
3434
)

pkg/v1/partial/compressed_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ import (
2222
"testing"
2323

2424
"github.com/google/go-cmp/cmp"
25-
"github.com/google/go-containerregistry/internal/compare"
2625
"github.com/google/go-containerregistry/pkg/name"
2726
"github.com/google/go-containerregistry/pkg/registry"
2827
v1 "github.com/google/go-containerregistry/pkg/v1"
28+
"github.com/google/go-containerregistry/pkg/v1/compare"
2929
"github.com/google/go-containerregistry/pkg/v1/partial"
3030
"github.com/google/go-containerregistry/pkg/v1/random"
3131
"github.com/google/go-containerregistry/pkg/v1/remote"

pkg/v1/partial/uncompressed_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import (
1919
"os"
2020
"testing"
2121

22-
"github.com/google/go-containerregistry/internal/compare"
2322
legacy "github.com/google/go-containerregistry/pkg/legacy/tarball"
2423
"github.com/google/go-containerregistry/pkg/name"
2524
v1 "github.com/google/go-containerregistry/pkg/v1"
25+
"github.com/google/go-containerregistry/pkg/v1/compare"
2626
"github.com/google/go-containerregistry/pkg/v1/mutate"
2727
"github.com/google/go-containerregistry/pkg/v1/partial"
2828
"github.com/google/go-containerregistry/pkg/v1/random"

pkg/v1/remote/layer_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ import (
2020
"net/url"
2121
"testing"
2222

23-
"github.com/google/go-containerregistry/internal/compare"
2423
"github.com/google/go-containerregistry/pkg/name"
2524
"github.com/google/go-containerregistry/pkg/registry"
25+
"github.com/google/go-containerregistry/pkg/v1/compare"
2626
"github.com/google/go-containerregistry/pkg/v1/empty"
2727
"github.com/google/go-containerregistry/pkg/v1/mutate"
2828
"github.com/google/go-containerregistry/pkg/v1/partial"

pkg/v1/tarball/layer_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222
"testing"
2323

2424
"github.com/containerd/stargz-snapshotter/estargz"
25-
"github.com/google/go-containerregistry/internal/compare"
2625
"github.com/google/go-containerregistry/pkg/compression"
2726
v1 "github.com/google/go-containerregistry/pkg/v1"
27+
"github.com/google/go-containerregistry/pkg/v1/compare"
2828
"github.com/google/go-containerregistry/pkg/v1/types"
2929
"github.com/google/go-containerregistry/pkg/v1/validate"
3030
)

pkg/v1/tarball/write_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ import (
2525
"strings"
2626
"testing"
2727

28-
"github.com/google/go-containerregistry/internal/compare"
2928
"github.com/google/go-containerregistry/pkg/name"
3029
v1 "github.com/google/go-containerregistry/pkg/v1"
30+
"github.com/google/go-containerregistry/pkg/v1/compare"
3131
"github.com/google/go-containerregistry/pkg/v1/mutate"
3232
"github.com/google/go-containerregistry/pkg/v1/random"
3333
"github.com/google/go-containerregistry/pkg/v1/tarball"

0 commit comments

Comments
 (0)