Skip to content

Commit 460b0c9

Browse files
deps: upgrade docker/distribution to v2.8.3 with reference package migration (#674)
1 parent 74817c9 commit 460b0c9

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

NOTICE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,8 @@ SOFTWARE.
587587
## github.com/docker/distribution
588588

589589
* Name: github.com/docker/distribution
590-
* Version: v2.8.2
591-
* License: [Apache-2.0](https://github.com/docker/distribution/blob/v2.8.2/LICENSE)
590+
* Version: v2.8.3
591+
* License: [Apache-2.0](https://github.com/docker/distribution/blob/v2.8.3/LICENSE)
592592

593593
```
594594
Apache License

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ toolchain go1.24.12
77
require (
88
github.com/alecthomas/chroma/v2 v2.5.0
99
github.com/billgraziano/dpapi v0.5.0
10-
github.com/docker/distribution v2.8.2+incompatible
10+
github.com/distribution/reference v0.6.0
11+
github.com/docker/distribution v2.8.3+incompatible
1112
github.com/docker/docker v28.5.2+incompatible
1213
github.com/docker/go-connections v0.6.0
1314
github.com/golang-sql/sqlexp v0.1.0
@@ -41,7 +42,6 @@ require (
4142
github.com/containerd/errdefs/pkg v0.3.0 // indirect
4243
github.com/containerd/log v0.1.0 // indirect
4344
github.com/davecgh/go-spew v1.1.1 // indirect
44-
github.com/distribution/reference v0.6.0 // indirect
4545
github.com/dlclark/regexp2 v1.4.0 // indirect
4646
github.com/docker/go-metrics v0.0.1 // indirect
4747
github.com/docker/go-units v0.5.0 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5Qvfr
5757
github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
5858
github.com/dlclark/regexp2 v1.4.0 h1:F1rxgk7p4uKjwIQxBs9oAXe5CqrXlCduYEJvrF4u93E=
5959
github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
60-
github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8=
61-
github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
60+
github.com/docker/distribution v2.8.3+incompatible h1:AtKxIZ36LoNK51+Z6RpzLpddBirtxJnzDrHLEKxTAYk=
61+
github.com/docker/distribution v2.8.3+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
6262
github.com/docker/docker v28.5.2+incompatible h1:DBX0Y0zAjZbSrm1uzOkdr1onVghKaftjlSWt4AFexzM=
6363
github.com/docker/docker v28.5.2+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
6464
github.com/docker/go-connections v0.6.0 h1:LlMG9azAe1TqfR7sO+NJttz1gy6KO7VJBh+pMmjSD94=

internal/container/docker.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ package container
55

66
import (
77
"context"
8-
"github.com/docker/distribution/reference"
9-
"github.com/docker/distribution/registry/client"
108
"net/http"
9+
10+
"github.com/distribution/reference"
11+
"github.com/docker/distribution/registry/client"
1112
)
1213

1314
// ListTags lists all tags for a container image located at a given

0 commit comments

Comments
 (0)