Skip to content

Commit 2deac15

Browse files
committed
Merge remote-tracking branch 'origin/main' into ft/org-gitpod-commit-attribution
2 parents 5147432 + ad4b7a8 commit 2deac15

File tree

138 files changed

+11055
-963
lines changed

Some content is hidden

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

138 files changed

+11055
-963
lines changed

.github/actions/integration-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ runs:
110110
echo "duration=${duration}" >> $GITHUB_OUTPUT
111111
112112
exit $RC
113-
- uses: actions/upload-artifact@v3
113+
- uses: actions/upload-artifact@v4
114114
with:
115115
name: test-results
116116
path: "test/**/TEST-*.xml"

.github/workflows/jetbrains-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
cp -r dev/jetbrains-test/video dev/jetbrains-test/build/reports
120120
- name: Save report
121121
if: always()
122-
uses: actions/upload-artifact@v3
122+
uses: actions/upload-artifact@v4
123123
with:
124124
name: video
125125
path: |

.idea/misc.xml

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

WORKSPACE.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ defaultArgs:
1313
codeWebExtensionCommit: 3953e8160fffa97dd4a4509542b4bf7ff9b704cd
1414
xtermCommit: d547d4ff4590b66c3ea24342fc62e3afcf6b77bc
1515
noVerifyJBPlugin: false
16-
intellijDownloadUrl: "https://download.jetbrains.com/idea/ideaIU-2024.3.1.1.tar.gz"
17-
golandDownloadUrl: "https://download.jetbrains.com/go/goland-2024.3.1.tar.gz"
16+
intellijDownloadUrl: "https://download.jetbrains.com/idea/ideaIU-2024.3.2.tar.gz"
17+
golandDownloadUrl: "https://download.jetbrains.com/go/goland-2024.3.2.tar.gz"
1818
pycharmDownloadUrl: "https://download.jetbrains.com/python/pycharm-professional-2024.3.1.1.tar.gz"
19-
phpstormDownloadUrl: "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.1.tar.gz"
19+
phpstormDownloadUrl: "https://download.jetbrains.com/webide/PhpStorm-2024.3.2.tar.gz"
2020
rubymineDownloadUrl: "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.1.tar.gz"
2121
webstormDownloadUrl: "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.1.tar.gz"
2222
riderDownloadUrl: "https://download.jetbrains.com/rider/JetBrains.Rider-2024.1.4.tar.gz"
23-
clionDownloadUrl: "https://download.jetbrains.com/cpp/CLion-2024.3.1.1.tar.gz"
24-
rustroverDownloadUrl: "https://download.jetbrains.com/rustrover/RustRover-2024.3.2.tar.gz"
23+
clionDownloadUrl: "https://download.jetbrains.com/cpp/CLion-2024.3.2.tar.gz"
24+
rustroverDownloadUrl: "https://download.jetbrains.com/rustrover/RustRover-2024.3.3.tar.gz"
2525
jbBackendVersion: "latest"
2626
dockerVersion: "20.10.24"
2727
dockerComposeVersion: "2.27.0-gitpod.0"
@@ -44,4 +44,4 @@ defaultVariant:
4444
- "**/node_modules/**"
4545
config:
4646
go:
47-
lintCommand: ["sh", "-c", "golangci-lint run --disable govet,errcheck,typecheck,staticcheck,structcheck -e '.*declared but not used.*' --allow-parallel-runners --timeout 15m"]
47+
lintCommand: ["sh", "-c", "golangci-lint run --disable govet,errcheck,staticcheck --allow-parallel-runners --timeout 15m"]

components/blobserve/cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717

1818
"github.com/containerd/containerd/remotes"
1919
"github.com/containerd/containerd/remotes/docker"
20+
"github.com/distribution/reference"
2021
"github.com/docker/cli/cli/config/configfile"
21-
"github.com/docker/distribution/reference"
2222
blobserve_config "github.com/gitpod-io/gitpod/blobserve/pkg/config"
2323
"github.com/heptiolabs/healthcheck"
2424
"github.com/prometheus/client_golang/prometheus"

components/blobserve/go.mod

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

55
require (
6-
github.com/containerd/containerd v1.7.13
6+
github.com/containerd/containerd v1.6.36
7+
github.com/distribution/reference v0.5.0
78
github.com/docker/cli v25.0.1+incompatible
8-
github.com/docker/distribution v2.8.3+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.6.0
1212
github.com/gorilla/mux v1.8.1
1313
github.com/heptiolabs/healthcheck v0.0.0-20211123025425-613501dd5deb
14-
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b
14+
github.com/opencontainers/image-spec v1.1.0
1515
github.com/prometheus/client_golang v1.18.0
1616
github.com/spf13/cobra v1.6.0
1717
golang.org/x/sync v0.6.0
1818
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028
1919
)
2020

2121
require (
22-
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
2322
github.com/Microsoft/hcsshim v0.11.4 // indirect
2423
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
2524
github.com/beorn7/perks v1.0.1 // indirect
2625
github.com/blang/semver/v4 v4.0.0 // indirect
2726
github.com/cespare/xxhash/v2 v2.2.0 // indirect
27+
github.com/containerd/errdefs v0.1.0 // indirect
2828
github.com/containerd/log v0.1.0 // indirect
2929
github.com/crackcomm/go-gitignore v0.0.0-20231225121904-e25f5bc08668 // indirect
3030
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
3131
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
32-
github.com/distribution/reference v0.5.0 // indirect
32+
github.com/docker/distribution v2.8.3+incompatible // indirect
3333
github.com/docker/docker-credential-helpers v0.8.0 // indirect
3434
github.com/facebookgo/atomicfile v0.0.0-20151019160806-2de1f203e7d5 // indirect
3535
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -128,19 +128,18 @@ require (
128128
github.com/whyrusleeping/cbor-gen v0.0.0-20240109153615-66e95c3e8a87 // indirect
129129
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 // indirect
130130
go.opencensus.io v0.24.0 // indirect
131-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect
132131
go.opentelemetry.io/otel v1.22.0 // indirect
133132
go.opentelemetry.io/otel/metric v1.22.0 // indirect
134133
go.opentelemetry.io/otel/trace v1.22.0 // indirect
135134
go.uber.org/atomic v1.11.0 // indirect
136135
go.uber.org/multierr v1.11.0 // indirect
137136
go.uber.org/zap v1.27.0 // indirect
138137
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
139-
golang.org/x/crypto v0.19.0 // indirect
138+
golang.org/x/crypto v0.21.0 // indirect
140139
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
141140
golang.org/x/mod v0.15.0 // indirect
142-
golang.org/x/net v0.21.0 // indirect
143-
golang.org/x/sys v0.17.0 // indirect
141+
golang.org/x/net v0.23.0 // indirect
142+
golang.org/x/sys v0.18.0 // indirect
144143
golang.org/x/text v0.14.0 // indirect
145144
golang.org/x/time v0.3.0 // indirect
146145
golang.org/x/tools v0.18.0 // indirect

components/blobserve/go.sum

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

components/blobserve/leeway.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the GNU Affero General Public License (AGPL).
33
# See License.AGPL.txt in the project root for license information.
44

5-
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:9637e55734cb38e2a5ae6be325900cd0917ee1aa3402a2ff4ab9769e2c7f581a
5+
FROM cgr.dev/chainguard/wolfi-base:latest@sha256:54db2c1df599961424cff34b05fd4d852e73a029b19fcd3d4973fa0cb30fd8ec
66

77
# Ensure latest packages are present, like security updates.
88
RUN apk upgrade --no-cache \

components/blobserve/pkg/blobserve/blobserve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020

2121
"github.com/containerd/containerd/errdefs"
2222
"github.com/containerd/containerd/remotes"
23-
"github.com/docker/distribution/reference"
23+
"github.com/distribution/reference"
2424
"github.com/gorilla/mux"
2525
"golang.org/x/xerrors"
2626

components/blobserve/pkg/blobserve/refstore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"github.com/containerd/containerd/errdefs"
1414
"github.com/containerd/containerd/remotes"
15-
"github.com/docker/distribution/reference"
15+
"github.com/distribution/reference"
1616
ociv1 "github.com/opencontainers/image-spec/specs-go/v1"
1717
"golang.org/x/xerrors"
1818

0 commit comments

Comments
 (0)