Skip to content

Commit 3fb3eb9

Browse files
committed
Adopt switchblade v0.9.1 with CF API v3 support
1 parent 33f8255 commit 3fb3eb9

File tree

319 files changed

+43585
-2676
lines changed

Some content is hidden

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

319 files changed

+43585
-2676
lines changed

go.mod

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/Masterminds/semver v1.5.0
1010
github.com/ZiCog/shiny-thing v0.0.0-20121130081921-e9e19444ccf5
1111
github.com/cloudfoundry/libbuildpack v0.0.0-20240717165421-f2ae8069fcba
12-
github.com/cloudfoundry/switchblade v0.9.0
12+
github.com/cloudfoundry/switchblade v0.9.2
1313
github.com/golang/mock v1.6.0
1414
github.com/kr/go-heroku-example v0.0.0-20150601175414-712a6d2f98f1
1515
github.com/onsi/ginkgo v1.16.5
@@ -23,36 +23,52 @@ require (
2323
github.com/Microsoft/go-winio v0.6.2 // indirect
2424
github.com/blang/semver v3.5.1+incompatible // indirect
2525
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
26-
github.com/docker/distribution v2.8.3+incompatible // indirect
27-
github.com/docker/docker v27.4.1+incompatible // indirect
26+
github.com/containerd/log v0.1.0 // indirect
27+
github.com/distribution/reference v0.6.0 // indirect
28+
github.com/docker/docker v27.5.1+incompatible // indirect
2829
github.com/docker/go-connections v0.5.0 // indirect
2930
github.com/docker/go-units v0.5.0 // indirect
3031
github.com/elazarl/goproxy v1.2.8 // indirect
32+
github.com/felixge/httpsnoop v1.0.4 // indirect
3133
github.com/fsnotify/fsnotify v1.8.0 // indirect
3234
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
35+
github.com/go-logr/logr v1.4.2 // indirect
36+
github.com/go-logr/stdr v1.2.2 // indirect
3337
github.com/gogo/protobuf v1.3.2 // indirect
3438
github.com/google/go-cmp v0.6.0 // indirect
39+
github.com/moby/docker-image-spec v1.3.1 // indirect
3540
github.com/nxadm/tail v1.4.11 // indirect
3641
github.com/opencontainers/go-digest v1.0.0 // indirect
3742
github.com/opencontainers/image-spec v1.1.0 // indirect
3843
github.com/paketo-buildpacks/packit v1.3.1 // indirect
3944
github.com/paketo-buildpacks/packit/v2 v2.16.0 // indirect
4045
github.com/pkg/errors v0.9.1 // indirect
46+
github.com/rogpeppe/go-internal v1.13.1 // indirect
4147
github.com/teris-io/shortid v0.0.0-20220617161101-71ec9f2aa569 // indirect
4248
github.com/tidwall/gjson v1.18.0 // indirect
4349
github.com/tidwall/match v1.1.1 // indirect
4450
github.com/tidwall/pretty v1.2.1 // indirect
4551
github.com/ulikunitz/xz v0.5.12 // indirect
52+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0 // indirect
53+
go.opentelemetry.io/otel v1.32.0 // indirect
54+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
55+
go.opentelemetry.io/otel/metric v1.32.0 // indirect
56+
go.opentelemetry.io/otel/sdk v1.32.0 // indirect
57+
go.opentelemetry.io/otel/trace v1.32.0 // indirect
4658
golang.org/x/net v0.34.0 // indirect
4759
golang.org/x/sys v0.29.0 // indirect
4860
golang.org/x/text v0.21.0 // indirect
61+
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
62+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
4963
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
5064
gopkg.in/yaml.v2 v2.4.0 // indirect
5165
gopkg.in/yaml.v3 v3.0.1 // indirect
5266
)
5367

68+
exclude google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd
69+
5470
replace github.com/vendorlib => ./fixtures/default/install_package_spec/vendored/vendor/github.com/vendorlib
5571

5672
replace github.com/docker/distribution => github.com/docker/distribution v2.8.2+incompatible
5773

58-
replace github.com/docker/docker => github.com/docker/docker v24.0.2+incompatible
74+
replace github.com/docker/docker => github.com/docker/docker v27.5.1+incompatible

go.sum

Lines changed: 45 additions & 71 deletions
Large diffs are not rendered by default.

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

Lines changed: 5 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: 5 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/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/setup.go

Lines changed: 47 additions & 28 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/stage.go

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

0 commit comments

Comments
 (0)