Skip to content

Commit 9d87d6e

Browse files
authored
Merge branch 'main' into alerdbf/ha-mk2
2 parents 4c11e41 + e69acdf commit 9d87d6e

File tree

129 files changed

+3059
-2028
lines changed

Some content is hidden

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

129 files changed

+3059
-2028
lines changed

components/blobserve/go.mod

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/gitpod-io/gitpod/blobserve
33
go 1.20
44

55
require (
6-
github.com/containerd/containerd v1.6.21
7-
github.com/docker/cli v23.0.2+incompatible
8-
github.com/docker/distribution v2.8.1+incompatible
6+
github.com/containerd/containerd v1.7.3
7+
github.com/docker/cli v24.0.5+incompatible
8+
github.com/docker/distribution v2.8.2+incompatible
99
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
1010
github.com/gitpod-io/gitpod/registry-facade v0.0.0-00010101000000-000000000000
1111
github.com/google/go-cmp v0.5.9
@@ -19,9 +19,11 @@ require (
1919
)
2020

2121
require (
22+
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 // indirect
2223
github.com/beorn7/perks v1.0.1 // indirect
2324
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2425
github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 // indirect
26+
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
2527
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
2628
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2729
github.com/docker/docker-credential-helpers v0.8.0 // indirect
@@ -103,7 +105,7 @@ require (
103105
golang.org/x/crypto v0.10.0 // indirect
104106
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
105107
golang.org/x/net v0.10.0 // indirect
106-
golang.org/x/sys v0.9.0 // indirect
108+
golang.org/x/sys v0.11.0 // indirect
107109
golang.org/x/text v0.10.0 // indirect
108110
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
109111
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4 // indirect
@@ -114,7 +116,7 @@ require (
114116
k8s.io/api v0.27.3 // indirect
115117
k8s.io/apimachinery v0.27.3 // indirect
116118
k8s.io/klog/v2 v2.90.1 // indirect
117-
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
119+
k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 // indirect
118120
lukechampine.com/blake3 v1.2.1 // indirect
119121
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
120122
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect

components/blobserve/go.sum

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

components/common-go/go.mod

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ module github.com/gitpod-io/gitpod/common-go
33
go 1.20
44

55
require (
6-
github.com/HdrHistogram/hdrhistogram-go v1.1.0 // indirect
7-
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
86
github.com/configcat/go-sdk/v7 v7.6.0
97
github.com/containerd/cgroups v1.0.4
108
github.com/fsnotify/fsnotify v1.4.9
9+
github.com/gitpod-io/gitpod/components/scrubber v0.0.0-00010101000000-000000000000
1110
github.com/go-test/deep v1.0.5
1211
github.com/google/go-cmp v0.5.9
1312
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
@@ -16,15 +15,12 @@ require (
1615
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb
1716
github.com/opentracing/opentracing-go v1.2.0
1817
github.com/prometheus/client_golang v1.16.0
19-
github.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect
2018
github.com/sirupsen/logrus v1.9.3
2119
github.com/slok/go-http-metrics v0.10.0
2220
github.com/stretchr/testify v1.8.1
2321
github.com/uber/jaeger-client-go v2.29.1+incompatible
24-
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
25-
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
2622
golang.org/x/sync v0.2.0
27-
golang.org/x/sys v0.8.0
23+
golang.org/x/sys v0.11.0
2824
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af
2925
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
3026
google.golang.org/grpc v1.52.3
@@ -35,21 +31,23 @@ require (
3531
)
3632

3733
require (
34+
github.com/HdrHistogram/hdrhistogram-go v1.1.0 // indirect
3835
github.com/beorn7/perks v1.0.1 // indirect
3936
github.com/blang/semver v3.5.1+incompatible // indirect
37+
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
4038
github.com/cespare/xxhash/v2 v2.2.0 // indirect
4139
github.com/cilium/ebpf v0.4.0 // indirect
4240
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
4341
github.com/davecgh/go-spew v1.1.1 // indirect
4442
github.com/docker/go-units v0.4.0 // indirect
45-
github.com/gitpod-io/gitpod/components/scrubber v0.0.0-00010101000000-000000000000
4643
github.com/go-logr/logr v1.2.3 // indirect
4744
github.com/godbus/dbus/v5 v5.0.4 // indirect
4845
github.com/gogo/protobuf v1.3.2 // indirect
4946
github.com/golang/protobuf v1.5.3 // indirect
5047
github.com/google/gofuzz v1.1.0 // indirect
5148
github.com/json-iterator/go v1.1.12 // indirect
5249
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
50+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
5351
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5452
github.com/modern-go/reflect2 v1.0.2 // indirect
5553
github.com/opencontainers/runtime-spec v1.0.2 // indirect
@@ -58,6 +56,9 @@ require (
5856
github.com/prometheus/client_model v0.3.0 // indirect
5957
github.com/prometheus/common v0.42.0 // indirect
6058
github.com/prometheus/procfs v0.10.1 // indirect
59+
github.com/segmentio/backo-go v0.0.0-20200129164019-23eae7c10bd3 // indirect
60+
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
61+
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
6162
go.uber.org/atomic v1.4.0 // indirect
6263
golang.org/x/net v0.8.0 // indirect
6364
golang.org/x/text v0.8.0 // indirect
@@ -72,8 +73,6 @@ require (
7273
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
7374
)
7475

75-
require github.com/mitchellh/reflectwalk v1.0.2 // indirect
76-
7776
replace k8s.io/api => k8s.io/api v0.27.3
7877

7978
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.27.3

components/common-go/go.sum

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

components/content-service-api/go/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ require (
3232
github.com/prometheus/client_model v0.3.0 // indirect
3333
github.com/prometheus/common v0.42.0 // indirect
3434
github.com/prometheus/procfs v0.10.1 // indirect
35-
github.com/rogpeppe/go-internal v1.9.0 // indirect
35+
github.com/rogpeppe/go-internal v1.11.0 // indirect
3636
github.com/sirupsen/logrus v1.9.3 // indirect
3737
github.com/slok/go-http-metrics v0.10.0 // indirect
3838
github.com/stretchr/testify v1.8.1 // indirect
@@ -41,7 +41,7 @@ require (
4141
go.uber.org/atomic v1.4.0 // indirect
4242
golang.org/x/net v0.8.0 // indirect
4343
golang.org/x/sync v0.2.0 // indirect
44-
golang.org/x/sys v0.8.0 // indirect
44+
golang.org/x/sys v0.11.0 // indirect
4545
golang.org/x/text v0.8.0 // indirect
4646
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect
4747
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect

components/content-service-api/go/go.sum

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

components/content-service-api/typescript/util/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/opencontainers/go-digest v1.0.0 // indirect
1616
github.com/opencontainers/image-spec v1.0.2 // indirect
1717
golang.org/x/net v0.8.0 // indirect
18-
golang.org/x/sys v0.8.0 // indirect
18+
golang.org/x/sys v0.11.0 // indirect
1919
golang.org/x/text v0.8.0 // indirect
2020
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
2121
google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6 // indirect

0 commit comments

Comments
 (0)