Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.

Commit 451936e

Browse files
authored
Merge branch 'main' into 5805-feature-not-present
2 parents 33418d2 + 275eeca commit 451936e

41 files changed

Lines changed: 344 additions & 309 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/kubeapps-general.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ env:
5252
# Currently, we only build the images for linux/amd64 because building cross-platform images is extremely slow...
5353
IMG_PLATFORMS: "linux/amd64"
5454
KAPP_CONTROLLER_VERSION: "v0.43.2"
55-
K8S_KIND_VERSION: "v1.22.15@sha256:bfd5eaae36849bfb3c1e3b9442f3da17d730718248939d9d547e86bbac5da586"
55+
K8S_KIND_VERSION: "v1.24.7@sha256:5c015142d9b60a0f6c45573f809957076514e38ec973565e2b2fe828b91597f5"
5656
KIND_VERSION: "v0.17.0"
5757
KUBECTL_VERSION: "v1.24.7"
5858
MKCERT_VERSION: "v1.4.4"
@@ -507,7 +507,7 @@ jobs:
507507
- name: "Run e2e tests script"
508508
run: ./script/run_e2e_tests.sh
509509
- name: "Print k8s KubeappsAPIs logs if the tests fail"
510-
run: kubectl --context kind-kubeapps-ci --kubeconfig ${HOME}/.kube/kind-config-kubeapps-ci logs -n kubeapps deploy/kubeapps-internal-kubeappsapis
510+
run: kubectl --context kind-kubeapps-ci --kubeconfig ${HOME}/.kube/kind-config-kubeapps-ci logs -n kubeapps deploy/kubeapps-ci-internal-kubeappsapis
511511
if: failure() && env.TEST_RESULT == 1
512512
continue-on-error: true
513513
- name: 'Upload Artifacts'

cmd/kubeapps-apis/docs/kubeapps-apis.swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4558,7 +4558,7 @@
45584558
},
45594559
"homeUrl": {
45604560
"type": "string",
4561-
"title": "the url of the home for the package"
4561+
"title": "the url of the "home" for the package"
45624562
},
45634563
"iconUrl": {
45644564
"type": "string",

cmd/kubeapps-apis/plugins/pkg/resourcerefs/resourcerefs.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@ package resourcerefs
66
import (
77
"context"
88
goerrs "errors"
9-
"github.com/vmware-tanzu/kubeapps/cmd/kubeapps-apis/plugins/pkg/helm"
109
"io"
1110
"strings"
1211

12+
"github.com/vmware-tanzu/kubeapps/cmd/kubeapps-apis/plugins/pkg/helm"
13+
1314
corev1 "github.com/vmware-tanzu/kubeapps/cmd/kubeapps-apis/gen/core/packages/v1alpha1"
1415
"google.golang.org/grpc/codes"
1516
"google.golang.org/grpc/status"
1617
"helm.sh/helm/v3/pkg/action"
1718
"helm.sh/helm/v3/pkg/storage/driver"
1819
"k8s.io/apimachinery/pkg/types"
1920
"k8s.io/apimachinery/pkg/util/yaml"
21+
log "k8s.io/klog/v2"
2022
)
2123

2224
type yamlMetadata struct {
@@ -91,6 +93,7 @@ func GetInstalledPackageResourceRefs(
9193
ctx context.Context,
9294
helmReleaseName types.NamespacedName,
9395
actionConfigGetter helm.HelmActionConfigGetterFunc) ([]*corev1.ResourceRef, error) {
96+
log.InfoS("+resourcerefs GetInstalledPackageResourceRefs", "helmReleaseName", helmReleaseName)
9497
namespace := helmReleaseName.Namespace
9598

9699
actionConfig, err := actionConfigGetter(ctx, namespace)
@@ -109,6 +112,7 @@ func GetInstalledPackageResourceRefs(
109112
release, err := getcmd.Run(helmReleaseName.Name)
110113
if err != nil {
111114
if err == driver.ErrReleaseNotFound {
115+
log.ErrorS(err, "resourcerefs GetInstalledPackageResourceRefs")
112116
return nil, status.Errorf(codes.NotFound, "Unable to find Helm release %q in namespace %q: %+v", helmReleaseName, namespace, err)
113117
}
114118
return nil, status.Errorf(codes.Internal, "Unable to run Helm get action: %v", err)

cmd/kubeapps-apis/proto/kubeappsapis/core/packages/v1alpha1/packages.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ message AvailablePackageDetail {
442442
// the url of the package repository that contains this package
443443
string repo_url = 4;
444444

445-
// the url of the home for the package
445+
// the url of the "home" for the package
446446
string home_url = 5;
447447

448448
// Available package icon URL

cmd/pinniped-proxy/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dashboard/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@improbable-eng/grpc-web": "^0.15.0",
3535
"@paciolan/remote-component": "^2.12.1",
3636
"@tanstack/match-sorter-utils": "^8.7.2",
37-
"@tanstack/react-table": "^8.7.0",
37+
"@tanstack/react-table": "^8.7.6",
3838
"@types/react": "^17.0.39",
3939
"ajv": "^8.11.2",
4040
"axios": "^1.2.1",
@@ -119,7 +119,7 @@
119119
"stylelint-config-standard-scss": "^6.1.0",
120120
"stylelint-scss": "^4.3.0",
121121
"ts-jest": "^29.0.3",
122-
"ts-proto": "^1.135.0",
122+
"ts-proto": "^1.137.2",
123123
"typescript": "^4.9.4"
124124
},
125125
"resolutions": {

dashboard/public/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6045,7 +6045,7 @@ components:
60456045
title: the url of the package repository that contains this package
60466046
homeUrl:
60476047
type: string
6048-
title: the url of the home for the package
6048+
title: the url of the "home" for the package
60496049
iconUrl:
60506050
type: string
60516051
description: A url for an icon.

dashboard/yarn.lock

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2074,17 +2074,17 @@
20742074
dependencies:
20752075
remove-accents "0.4.2"
20762076

2077-
"@tanstack/react-table@^8.7.0":
2078-
version "8.7.0"
2079-
resolved "https://registry.yarnpkg.com/@tanstack/react-table/-/react-table-8.7.0.tgz#853fae74db6bf49738d0f18e4d507b00262fc09c"
2080-
integrity sha512-VJ+9rsymDLaSU35rWOfX0bwNXnpW1i+T14wi+sHx8lxwAsfg6IY1Yw7FPfGADvUFP5eQn2t4nlohAJd+IoEj/Q==
2077+
"@tanstack/react-table@^8.7.6":
2078+
version "8.7.6"
2079+
resolved "https://registry.yarnpkg.com/@tanstack/react-table/-/react-table-8.7.6.tgz#1420d69da458fe13c08af73b6f3c98d5e49e63f6"
2080+
integrity sha512-/QijmMFeP7wDLBnr0MQ/5MlbXePbIL/1nOtkxBC9zvmBu4gDKJEDBqipUyM7Wc/iBpSd0IFyqBlvZvTPD9FYDA==
20812081
dependencies:
2082-
"@tanstack/table-core" "8.7.0"
2082+
"@tanstack/table-core" "8.7.6"
20832083

2084-
"@tanstack/table-core@8.7.0":
2085-
version "8.7.0"
2086-
resolved "https://registry.yarnpkg.com/@tanstack/table-core/-/table-core-8.7.0.tgz#046e376cd536cd53727a91a880345f92d3ec5859"
2087-
integrity sha512-DRiRbOAmDHapzUBd4/C4Yy+FTug4fdGp5sdZWWfCq4wxRoaXQraQgbzmK23a3QcbwLFtLeNezPkZrqbJWuX+VA==
2084+
"@tanstack/table-core@8.7.6":
2085+
version "8.7.6"
2086+
resolved "https://registry.yarnpkg.com/@tanstack/table-core/-/table-core-8.7.6.tgz#5ad8a67ef6312c56c4a075326afcb2813c030a22"
2087+
integrity sha512-sqiNTMzB6cpyL8DFH6/VqW48SwiflLqxQqYpo2wNock7rdVGvlm0BLNI8vZUJbr1+fmmWmHwBvi5OMgZw8n1DA==
20882088

20892089
"@testing-library/dom@^8.0.0":
20902090
version "8.19.0"
@@ -3910,6 +3910,11 @@ capture-exit@^2.0.0:
39103910
dependencies:
39113911
rsvp "^4.8.4"
39123912

3913+
case-anything@^2.1.10:
3914+
version "2.1.10"
3915+
resolved "https://registry.yarnpkg.com/case-anything/-/case-anything-2.1.10.tgz#d18a6ca968d54ec3421df71e3e190f3bced23410"
3916+
integrity sha512-JczJwVrCP0jPKh05McyVsuOg6AYosrB9XWZKbQzXeDAm2ClE/PJE/BcrrQrVyGYH7Jg8V/LDupmyL4kFlVsVFQ==
3917+
39133918
case-sensitive-paths-webpack-plugin@^2.4.0:
39143919
version "2.4.0"
39153920
resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz#db64066c6422eed2e08cc14b986ca43796dbc6d4"
@@ -13320,12 +13325,13 @@ ts-proto-descriptors@1.7.1:
1332013325
long "^4.0.0"
1332113326
protobufjs "^6.8.8"
1332213327

13323-
ts-proto@^1.135.0:
13324-
version "1.135.0"
13325-
resolved "https://registry.yarnpkg.com/ts-proto/-/ts-proto-1.135.0.tgz#9e6ebb8fff42325d4ae475d2cd763068a8485846"
13326-
integrity sha512-NwK+PcSiWZBzO8GFVID2Ig71vIZRCApTG8XDZIlQ3WabbJlbUx9zsrHcYNojcUENtqkiYywTp3uTP6dketiCpw==
13328+
ts-proto@^1.137.2:
13329+
version "1.137.2"
13330+
resolved "https://registry.yarnpkg.com/ts-proto/-/ts-proto-1.137.2.tgz#780809a110d45392abc43bf4a2634fe171852163"
13331+
integrity sha512-PZaskF56AChHBCcbT1iLp7PN9LasG8BZeEAGn0elAwn7elEGmc3p007coJPf233FVOpE2RO7k32WA7U6RiEdaQ==
1332713332
dependencies:
1332813333
"@types/object-hash" "^1.3.0"
13334+
case-anything "^2.1.10"
1332913335
dataloader "^1.4.0"
1333013336
object-hash "^1.3.1"
1333113337
protobufjs "^6.11.3"

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ require (
9292
k8s.io/kubectl v0.25.3
9393
k8s.io/kubernetes v1.24.7
9494
k8s.io/utils v0.0.0-20221108210102-8e77b1f39fe2
95-
oras.land/oras-go v1.2.1
95+
oras.land/oras-go v1.2.2
9696
oras.land/oras-go/v2 v2.0.0-rc.5
9797
sigs.k8s.io/controller-runtime v0.13.1
9898
sigs.k8s.io/yaml v1.3.0
@@ -126,7 +126,7 @@ require (
126126
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
127127
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
128128
github.com/docker/distribution v2.8.1+incompatible // indirect
129-
github.com/docker/docker v20.10.20+incompatible // indirect
129+
github.com/docker/docker v20.10.21+incompatible // indirect
130130
github.com/docker/docker-credential-helpers v0.7.0 // indirect
131131
github.com/docker/go-connections v0.4.0 // indirect
132132
github.com/docker/go-metrics v0.0.1 // indirect
@@ -197,7 +197,7 @@ require (
197197
github.com/mitchellh/reflectwalk v1.0.2 // indirect
198198
github.com/moby/locker v1.0.1 // indirect
199199
github.com/moby/spdystream v0.2.0 // indirect
200-
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae // indirect
200+
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
201201
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
202202
github.com/modern-go/reflect2 v1.0.2 // indirect
203203
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
@@ -235,7 +235,7 @@ require (
235235
github.com/yvasiyarov/newrelic_platform_go v0.0.0-20160601141957-9c099fbc30e9 // indirect
236236
go.starlark.net v0.0.0-20221020143700-22309ac47eac // indirect
237237
go.uber.org/zap v1.23.0 // indirect
238-
golang.org/x/crypto v0.3.0 // indirect
238+
golang.org/x/crypto v0.4.0 // indirect
239239
golang.org/x/image v0.1.0 // indirect
240240
golang.org/x/oauth2 v0.2.0 // indirect
241241
golang.org/x/sys v0.3.0 // indirect

go.sum

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t
250250
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
251251
github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
252252
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
253-
github.com/creack/pty v1.1.11 h1:07n33Z8lZxZ2qwegKbObQohDhXDQxiMMz1NOUGYlesw=
254253
github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
254+
github.com/creack/pty v1.1.18 h1:n56/Zwd5o6whRC5PMGretI4IdRLlmBXYNjScPaBgsbY=
255255
github.com/cyphar/filepath-securejoin v0.2.3 h1:YX6ebbZCZP7VkM3scTTokDgBL2TY741X51MTk3ycuNI=
256256
github.com/cyphar/filepath-securejoin v0.2.3/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4=
257257
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -269,7 +269,7 @@ github.com/disintegration/imaging v1.6.2 h1:w1LecBlG2Lnp8B3jk5zSuNqd7b4DXhcjwek1
269269
github.com/disintegration/imaging v1.6.2/go.mod h1:44/5580QXChDfwIclfc/PCwrr44amcmDAg8hxG0Ewe4=
270270
github.com/distribution/distribution v2.8.1+incompatible h1:8iXUoOqRPx30bhzIEPUmNIqlmBlWdrieW1bqr6LrX30=
271271
github.com/distribution/distribution v2.8.1+incompatible/go.mod h1:EgLm2NgWtdKgzF9NpMzUKgzmR7AMmb0VQi2B+ZzDRjc=
272-
github.com/distribution/distribution/v3 v3.0.0-20221111170714-3b8fbf975279 h1:+lFUfSfK1/rMGIUUAwu6O+t4WGRwBU1EpaQTcN8KaeM=
272+
github.com/distribution/distribution/v3 v3.0.0-20221208165359-362910506bc2 h1:aBfCb7iqHmDEIp6fBvC/hQUddQfg+3qdYjwzaiP9Hnc=
273273
github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E=
274274
github.com/dnaeon/go-vcr v1.1.0 h1:ReYa/UBrRyQdant9B4fNHGoCNKw6qh6P0fsdGmZpR7c=
275275
github.com/docker/cli v20.10.21+incompatible h1:qVkgyYUnOLQ98LtXBrwd/duVqPT2X4SHndOuGsfwyhU=
@@ -278,8 +278,8 @@ github.com/docker/distribution v2.8.0+incompatible/go.mod h1:J2gT2udsDAN96Uj4Kfc
278278
github.com/docker/distribution v2.8.1+incompatible h1:Q50tZOPR6T/hjNsyc9g8/syEs6bk8XXApsHjKukMl68=
279279
github.com/docker/distribution v2.8.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
280280
github.com/docker/docker v20.10.12+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
281-
github.com/docker/docker v20.10.20+incompatible h1:kH9tx6XO+359d+iAkumyKDc5Q1kOwPuAUaeri48nD6E=
282-
github.com/docker/docker v20.10.20+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
281+
github.com/docker/docker v20.10.21+incompatible h1:UTLdBmHk3bEY+w8qeO5KttOhy6OmXWsl/FEet9Uswog=
282+
github.com/docker/docker v20.10.21+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
283283
github.com/docker/docker-credential-helpers v0.7.0 h1:xtCHsjxogADNZcdv1pKUHXryefjlVRqWqIhk/uXJp0A=
284284
github.com/docker/docker-credential-helpers v0.7.0/go.mod h1:rETQfLdHNT3foU5kuNkFR1R1V12OJRRO5lzt2D1b5X0=
285285
github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=
@@ -841,8 +841,8 @@ github.com/moby/sys/mountinfo v0.5.0/go.mod h1:3bMD3Rg+zkqx8MRYPi7Pyb0Ie97QEBmdx
841841
github.com/moby/sys/mountinfo v0.6.0 h1:gUDhXQx58YNrpHlK4nSL+7y2pxFZkUcXqzFDKWdC0Oo=
842842
github.com/moby/sys/mountinfo v0.6.0/go.mod h1:3bMD3Rg+zkqx8MRYPi7Pyb0Ie97QEBmdxbhnCLlSvSU=
843843
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6/go.mod h1:E2VnQOmVuvZB6UYnnDB0qG5Nq/1tD9acaOpo6xmt0Kw=
844-
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae h1:O4SWKdcHVCvYqyDV+9CJA1fcDN2L11Bule0iFy3YlAI=
845-
github.com/moby/term v0.0.0-20220808134915-39b0c02b01ae/go.mod h1:E2VnQOmVuvZB6UYnnDB0qG5Nq/1tD9acaOpo6xmt0Kw=
844+
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 h1:HfkjXDfhgVaN5rmueG8cL8KKeFNecRCXFhaJ2qZ5SKA=
845+
github.com/moby/term v0.0.0-20221205130635-1aeaba878587/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y=
846846
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
847847
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
848848
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
@@ -1250,8 +1250,8 @@ golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5y
12501250
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
12511251
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
12521252
golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
1253-
golang.org/x/crypto v0.3.0 h1:a06MkbcxBrEFc0w0QIZWXrH/9cCX6KJyWbBOIwAn+7A=
1254-
golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
1253+
golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8=
1254+
golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80=
12551255
golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
12561256
golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
12571257
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@@ -1923,8 +1923,8 @@ modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I=
19231923
nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
19241924
nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g=
19251925
nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
1926-
oras.land/oras-go v1.2.1 h1:/VcGS8FUy3eEXLl/1vC4QypLHwrfSmgW7ygsoklqKK8=
1927-
oras.land/oras-go v1.2.1/go.mod h1:3N11Z5E3c4ZzOjroCl1RtAdB4yNAYl7A27j2SVf913A=
1926+
oras.land/oras-go v1.2.2 h1:0E9tOHUfrNH7TCDk5KU0jVBEzCqbfdyuVfGmJ7ZeRPE=
1927+
oras.land/oras-go v1.2.2/go.mod h1:Apa81sKoZPpP7CDciE006tSZ0x3Q3+dOoBcMZ/aNxvw=
19281928
oras.land/oras-go/v2 v2.0.0-rc.5 h1:enT2ZMNo383bH3INm1/+mw4d09AaMbqx0BMhsgEDUSg=
19291929
oras.land/oras-go/v2 v2.0.0-rc.5/go.mod h1:YGHvWBGuqRlZgUyXUIoKsR3lcuCOb3DAtG0SEsEw1iY=
19301930
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=

0 commit comments

Comments
 (0)