Skip to content

Commit 1c5946b

Browse files
committed
Bump up dependencies
1 parent 651b8cd commit 1c5946b

File tree

3 files changed

+137
-43
lines changed

3 files changed

+137
-43
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ With this tool you can:
1414

1515
The following _commands_ x _runtimes_ are supported:
1616

17-
| | Docker | Containerd | Kubernetes | Kubernetes CRI | runc |
18-
| :--- | :---: | :---: | :---: | :---: | :---: |
19-
| `exec` ||| - | - | - |
20-
| `port-forward` local || - | - | - | - |
21-
| `port-forward` remote | 🛠️ | - | 🛠️ | - | - |
22-
| `export` | - | - | - | - | - |
17+
| | Docker | Podman | containerd | Kubernetes | Kubernetes CRI | runc |
18+
| :--- | :---: | :---: | :---: | :---: | :---: | :---: |
19+
| `exec` || - | | - | - | - |
20+
| `port-forward` local || - | - | - | - | - |
21+
| `port-forward` remote | 🛠️ | - | - | 🛠️ | - | - |
22+
| `export` | - | - | - | - | - | - |
2323

2424
## Installation
2525

@@ -337,7 +337,7 @@ Chances are your target container has been started with elevated permissions whi
337337

338338
## Similar tools
339339

340-
- [`docker-slim debug`](https://github.com/docker-slim/docker-slim) - a PoC `debug` command for DockerSlim (contributed by [D4N](https://github.com/D4N))
340+
- [`slim debug`](https://github.com/slimtoolkit/slim) - a `debug` command for Slim(toolkit) (originally contributed by [D4N](https://github.com/D4N))
341341
- [`debug-ctr`](https://github.com/felipecruz91/debug-ctr) - a debugger that creates a new container out of the original container with the toolkit mounted in a volume (by [Felipe Cruz Martinez](https://github.com/felipecruz91))
342342
- [`docker-debug`](https://github.com/zeromake/docker-debug) - much like `cdebug exec` but without the chroot trick.
343343
- [`docker-opener`](https://github.com/artemkaxboy/docker-opener) - a multi-purpose tool that in particular can run a shell session into your container (and if there is no shell inside, it'll bring its own busybox).
@@ -349,7 +349,7 @@ Chances are your target container has been started with elevated permissions whi
349349
- More `exec` flags (like in `docker run`): `--cap-add`, `--cap-drop`, `--env`, `--volume`, etc.
350350
- Helper command(s) suggesting nix(ery) packages
351351
- Non-docker runtimes (containerd, runc, k8s)
352-
- E2E Tests
352+
- More E2E Tests
353353

354354
## Contributions
355355

go.mod

Lines changed: 42 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,81 @@
11
module github.com/iximiuz/cdebug
22

3-
go 1.20
3+
go 1.22
44

55
require (
6-
github.com/containerd/console v1.0.3
7-
github.com/containerd/containerd v1.7.2
8-
github.com/docker/cli v24.0.5+incompatible
9-
github.com/docker/docker v24.0.5+incompatible
10-
github.com/docker/go-connections v0.4.0
11-
github.com/google/uuid v1.3.0
6+
github.com/containerd/console v1.0.4
7+
github.com/containerd/containerd v1.7.13
8+
github.com/docker/cli v25.0.3+incompatible
9+
github.com/docker/docker v25.0.3+incompatible
10+
github.com/docker/go-connections v0.5.0
11+
github.com/google/uuid v1.6.0
1212
github.com/moby/sys/signal v0.7.0
1313
github.com/moby/term v0.5.0
1414
github.com/opencontainers/runtime-spec v1.1.0
1515
github.com/sirupsen/logrus v1.9.3
16-
github.com/spf13/cobra v1.7.0
17-
golang.org/x/sys v0.10.0
16+
github.com/spf13/cobra v1.8.0
17+
golang.org/x/sys v0.17.0
1818
gotest.tools v2.2.0+incompatible
1919
gotest.tools/v3 v3.4.0
2020
)
2121

2222
require (
23-
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1 // indirect
24-
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20221215162035-5330a85ea652 // indirect
25-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
23+
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
24+
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20231105174938-2b5cbb29f3e2 // indirect
25+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
2626
github.com/Microsoft/go-winio v0.6.1 // indirect
27-
github.com/Microsoft/hcsshim v0.10.0-rc.8 // indirect
27+
github.com/Microsoft/hcsshim v0.11.4 // indirect
2828
github.com/containerd/cgroups v1.1.0 // indirect
29-
github.com/containerd/cgroups/v3 v3.0.1 // indirect
30-
github.com/containerd/continuity v0.4.1 // indirect
29+
github.com/containerd/cgroups/v3 v3.0.3 // indirect
30+
github.com/containerd/continuity v0.4.3 // indirect
3131
github.com/containerd/fifo v1.1.0 // indirect
3232
github.com/containerd/go-cni v1.1.9 // indirect
33-
github.com/containerd/ttrpc v1.2.2 // indirect
33+
github.com/containerd/log v0.1.0 // indirect
34+
github.com/containerd/ttrpc v1.2.3 // indirect
3435
github.com/containerd/typeurl/v2 v2.1.1 // indirect
3536
github.com/containernetworking/cni v1.1.2 // indirect
36-
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
37+
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
3738
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
38-
github.com/docker/distribution v2.8.2+incompatible // indirect
39+
github.com/distribution/reference v0.5.0 // indirect
40+
github.com/docker/distribution v2.8.3+incompatible // indirect
3941
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect
4042
github.com/docker/go-units v0.5.0 // indirect
41-
github.com/go-logr/logr v1.2.3 // indirect
43+
github.com/felixge/httpsnoop v1.0.4 // indirect
44+
github.com/go-logr/logr v1.4.1 // indirect
4245
github.com/go-logr/stdr v1.2.2 // indirect
4346
github.com/gogo/protobuf v1.3.2 // indirect
4447
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4548
github.com/golang/protobuf v1.5.3 // indirect
46-
github.com/google/go-cmp v0.5.9 // indirect
49+
github.com/google/go-cmp v0.6.0 // indirect
4750
github.com/inconshreveable/mousetrap v1.1.0 // indirect
48-
github.com/klauspost/compress v1.16.0 // indirect
51+
github.com/klauspost/compress v1.17.6 // indirect
4952
github.com/moby/locker v1.0.1 // indirect
50-
github.com/moby/sys/mountinfo v0.6.2 // indirect
53+
github.com/moby/sys/mountinfo v0.7.1 // indirect
5154
github.com/moby/sys/sequential v0.5.0 // indirect
55+
github.com/moby/sys/user v0.1.0 // indirect
5256
github.com/morikuni/aec v1.0.0 // indirect
5357
github.com/opencontainers/go-digest v1.0.0 // indirect
54-
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b // indirect
55-
github.com/opencontainers/runc v1.1.5 // indirect
58+
github.com/opencontainers/image-spec v1.1.0-rc6 // indirect
59+
github.com/opencontainers/runc v1.1.12 // indirect
5660
github.com/opencontainers/selinux v1.11.0 // indirect
5761
github.com/pelletier/go-toml v1.9.5 // indirect
5862
github.com/pkg/errors v0.9.1 // indirect
5963
github.com/russross/blackfriday/v2 v2.1.0 // indirect
6064
github.com/spf13/pflag v1.0.5 // indirect
61-
github.com/urfave/cli v1.22.12 // indirect
65+
github.com/urfave/cli v1.22.14 // indirect
6266
go.opencensus.io v0.24.0 // indirect
63-
go.opentelemetry.io/otel v1.14.0 // indirect
64-
go.opentelemetry.io/otel/trace v1.14.0 // indirect
65-
golang.org/x/mod v0.9.0 // indirect
66-
golang.org/x/net v0.8.0 // indirect
67-
golang.org/x/sync v0.1.0 // indirect
68-
golang.org/x/text v0.8.0 // indirect
67+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.48.0 // indirect
68+
go.opentelemetry.io/otel v1.23.1 // indirect
69+
go.opentelemetry.io/otel/metric v1.23.1 // indirect
70+
go.opentelemetry.io/otel/trace v1.23.1 // indirect
71+
golang.org/x/mod v0.15.0 // indirect
72+
golang.org/x/net v0.21.0 // indirect
73+
golang.org/x/sync v0.6.0 // indirect
74+
golang.org/x/text v0.14.0 // indirect
6975
golang.org/x/time v0.3.0 // indirect
70-
golang.org/x/tools v0.7.0 // indirect
71-
google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4 // indirect
72-
google.golang.org/grpc v1.53.0 // indirect
73-
google.golang.org/protobuf v1.29.1 // indirect
76+
golang.org/x/tools v0.17.0 // indirect
77+
google.golang.org/genproto v0.0.0-20240205150955-31a09d347014 // indirect
78+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240205150955-31a09d347014 // indirect
79+
google.golang.org/grpc v1.61.0 // indirect
80+
google.golang.org/protobuf v1.32.0 // indirect
7481
)

0 commit comments

Comments
 (0)