Skip to content

Commit 945643a

Browse files
authored
Merge pull request #355 from cloudfoundry/adoptswitchblade093
Adopt switchblade v0.9.3 with CF API v3 support
2 parents 5151ae8 + a5d2785 commit 945643a

321 files changed

Lines changed: 43663 additions & 2658 deletions

File tree

Some content is hidden

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

go.mod

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ toolchain go1.24.0
77
require (
88
github.com/Dynatrace/libbuildpack-dynatrace v1.8.0
99
github.com/cloudfoundry/libbuildpack v0.0.0-20240717165421-f2ae8069fcba
10-
github.com/cloudfoundry/switchblade v0.9.0
10+
github.com/cloudfoundry/switchblade v0.9.3
1111
github.com/golang/mock v1.6.0
1212
github.com/miekg/dns v1.1.62
1313
github.com/onsi/ginkgo v1.16.5
@@ -22,32 +22,53 @@ require (
2222
github.com/Microsoft/go-winio v0.6.0 // indirect
2323
github.com/blang/semver v3.5.1+incompatible // indirect
2424
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
25-
github.com/docker/distribution v2.8.1+incompatible // indirect
26-
github.com/docker/docker v24.0.9+incompatible // indirect
25+
github.com/containerd/log v0.1.0 // indirect
26+
github.com/distribution/reference v0.6.0 // indirect
27+
github.com/docker/docker v27.5.1+incompatible // indirect
2728
github.com/docker/go-connections v0.4.0 // indirect
2829
github.com/docker/go-units v0.5.0 // indirect
2930
github.com/elazarl/goproxy v1.2.8 // indirect
31+
github.com/felixge/httpsnoop v1.0.4 // indirect
3032
github.com/fsnotify/fsnotify v1.8.0 // indirect
3133
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
34+
github.com/go-logr/logr v1.4.2 // indirect
35+
github.com/go-logr/stdr v1.2.2 // indirect
3236
github.com/gogo/protobuf v1.3.2 // indirect
3337
github.com/google/go-cmp v0.6.0 // indirect
38+
github.com/moby/docker-image-spec v1.3.1 // indirect
3439
github.com/nxadm/tail v1.4.11 // indirect
3540
github.com/opencontainers/go-digest v1.0.0 // indirect
3641
github.com/opencontainers/image-spec v1.1.0 // indirect
3742
github.com/paketo-buildpacks/packit v1.3.1 // indirect
3843
github.com/paketo-buildpacks/packit/v2 v2.16.0 // indirect
3944
github.com/pkg/errors v0.9.1 // indirect
45+
github.com/rogpeppe/go-internal v1.13.1 // indirect
4046
github.com/teris-io/shortid v0.0.0-20220617161101-71ec9f2aa569 // indirect
4147
github.com/tidwall/gjson v1.18.0 // indirect
4248
github.com/tidwall/match v1.1.1 // indirect
4349
github.com/tidwall/pretty v1.2.1 // indirect
4450
github.com/ulikunitz/xz v0.5.12 // indirect
51+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
52+
go.opentelemetry.io/otel v1.32.0 // indirect
53+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
54+
go.opentelemetry.io/otel/metric v1.32.0 // indirect
55+
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
56+
go.opentelemetry.io/otel/trace v1.32.0 // indirect
4557
golang.org/x/mod v0.22.0 // indirect
4658
golang.org/x/net v0.34.0 // indirect
4759
golang.org/x/sync v0.10.0 // indirect
4860
golang.org/x/sys v0.29.0 // indirect
4961
golang.org/x/text v0.21.0 // indirect
5062
golang.org/x/tools v0.29.0 // indirect
63+
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
64+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
5165
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
5266
gopkg.in/yaml.v3 v3.0.1 // indirect
5367
)
68+
69+
exclude google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd
70+
71+
replace (
72+
github.com/docker/distribution => github.com/docker/distribution v2.8.2+incompatible
73+
github.com/docker/docker => github.com/docker/docker v27.5.1+incompatible
74+
)

go.sum

Lines changed: 46 additions & 108 deletions
Large diffs are not rendered by default.

vendor/github.com/cloudfoundry/switchblade/README.md

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

vendor/github.com/cloudfoundry/switchblade/cloudfoundry.go

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

vendor/github.com/cloudfoundry/switchblade/deployment.go

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

vendor/github.com/cloudfoundry/switchblade/docker.go

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

vendor/github.com/cloudfoundry/switchblade/internal/cloudfoundry/initialize.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cloudfoundry/switchblade/internal/cloudfoundry/logs.go

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

0 commit comments

Comments
 (0)