Skip to content

Commit c1dcaf6

Browse files
x
1 parent ee169ef commit c1dcaf6

File tree

88 files changed

+7852
-3184
lines changed

Some content is hidden

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

88 files changed

+7852
-3184
lines changed

components/blobserve/go.mod

Lines changed: 117 additions & 44 deletions
Large diffs are not rendered by default.

components/blobserve/go.sum

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

components/common-go/go-update-wc-deps.sh

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ do
4747
fi
4848

4949
if grep -q "${p}" go.mod && ! grep -q "${p} v${WORKSPACE_CLUSTER_DEPENDENCIES[${key}]}" go.mod; then
50-
go get "${p}"@v"${WORKSPACE_CLUSTER_DEPENDENCIES[${key}]}"
50+
#go get "${p}"@v"${WORKSPACE_CLUSTER_DEPENDENCIES[${key}]}"
5151
# shellcheck disable=SC2076
5252
if [[ ! " ${COMPONENTS_TO_TEST[*]} " =~ " ${FOLDER} " ]]; then
5353
COMPONENTS_TO_TEST+=("${FOLDER}")
@@ -60,6 +60,8 @@ do
6060
done
6161
done
6262

63+
leeway link
64+
6365
echo ""
6466
echo "========== Done updating, doing tidy and testing now =========="
6567
echo ""
@@ -76,12 +78,16 @@ do
7678
continue
7779
fi
7880

81+
if [[ "${t}" == "components/docker-up" ]]; then
82+
continue
83+
fi
84+
7985
pushd "${t}"
8086
echo "+++++ $t"
8187
# clean it up
8288
go mod tidy
83-
leeway link .
84-
go mod tidy
89+
# leeway link .
90+
# go mod tidy
8591
# assert that build and tests pass
8692

8793

components/common-go/go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ require (
1616
github.com/hashicorp/golang-lru v1.0.2
1717
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb
1818
github.com/opentracing/opentracing-go v1.2.0
19-
github.com/prometheus/client_golang v1.16.0
19+
github.com/prometheus/client_golang v1.19.1
2020
github.com/sirupsen/logrus v1.9.3
2121
github.com/slok/go-http-metrics v0.10.0
2222
github.com/stretchr/testify v1.9.0
@@ -25,10 +25,10 @@ require (
2525
golang.org/x/sys v0.21.0
2626
golang.org/x/time v0.3.0
2727
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
28-
google.golang.org/grpc v1.58.3
28+
google.golang.org/grpc v1.65.0
2929
google.golang.org/protobuf v1.34.2
3030
gopkg.in/segmentio/analytics-go.v3 v3.1.0
31-
k8s.io/api v0.30.9
31+
k8s.io/api v0.31.9
3232
k8s.io/apimachinery v0.31.9
3333
)
3434

@@ -37,37 +37,37 @@ require (
3737
github.com/beorn7/perks v1.0.1 // indirect
3838
github.com/blang/semver v3.5.1+incompatible // indirect
3939
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
40-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
41-
github.com/cilium/ebpf v0.4.0 // indirect
40+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
41+
github.com/cilium/ebpf v0.7.0 // indirect
4242
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
4343
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4444
github.com/docker/go-units v0.4.0 // indirect
4545
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
4646
github.com/go-logr/logr v1.4.2 // indirect
47-
github.com/godbus/dbus/v5 v5.0.4 // indirect
47+
github.com/godbus/dbus/v5 v5.1.0 // indirect
4848
github.com/gogo/protobuf v1.3.2 // indirect
4949
github.com/golang/protobuf v1.5.4 // indirect
5050
github.com/google/gofuzz v1.2.0 // indirect
5151
github.com/json-iterator/go v1.1.12 // indirect
52-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
5352
github.com/mitchellh/reflectwalk v1.0.2 // indirect
5453
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5554
github.com/modern-go/reflect2 v1.0.2 // indirect
56-
github.com/opencontainers/runtime-spec v1.0.2 // indirect
55+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
56+
github.com/opencontainers/runtime-spec v1.0.3-0.20220909204839-494a5a6aca78 // indirect
5757
github.com/pkg/errors v0.9.1 // indirect
5858
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
59-
github.com/prometheus/client_model v0.4.0 // indirect
60-
github.com/prometheus/common v0.44.0 // indirect
61-
github.com/prometheus/procfs v0.10.1 // indirect
59+
github.com/prometheus/client_model v0.6.1 // indirect
60+
github.com/prometheus/common v0.55.0 // indirect
61+
github.com/prometheus/procfs v0.15.1 // indirect
6262
github.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect
6363
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
6464
github.com/x448/float16 v0.8.4 // indirect
6565
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
6666
go.uber.org/atomic v1.10.0 // indirect
67-
go.uber.org/goleak v1.2.1 // indirect
67+
go.uber.org/goleak v1.3.0 // indirect
6868
golang.org/x/net v0.26.0 // indirect
6969
golang.org/x/text v0.16.0 // indirect
70-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d // indirect
70+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
7171
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
7272
gopkg.in/inf.v0 v0.9.1 // indirect
7373
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -128,12 +128,12 @@ replace k8s.io/mount-utils => k8s.io/mount-utils v0.31.9
128128

129129
replace k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.31.9
130130

131-
replace github.com/gitpod-io/gitpod/components/scrubber => ../scrubber // leeway
132-
133131
replace k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.31.9
134132

135133
replace k8s.io/endpointslice => k8s.io/endpointslice v0.31.9
136134

137135
replace k8s.io/kms => k8s.io/kms v0.31.9
138136

139137
replace k8s.io/cri-client => k8s.io/cri-client v0.31.9
138+
139+
replace github.com/gitpod-io/gitpod/components/scrubber => ../scrubber // leeway

0 commit comments

Comments
 (0)