Skip to content

Commit 5776806

Browse files
lroolleclaude
andcommitted
build(trace): bump cctrace pin to 0.16.0
- tunnel-by-default capture scope: external hosts (npm, apt, gh) pass through as opaque byte-counted tunnels instead of being decrypted and stored — fixes the trace-bloat field report (52MB npm tarball, 45% external traffic in a 121MB trace) - no forged certs for non-first-party hosts: apt/java/cert-pinning tools no longer risk TLS failure through the proxy - binary-safe response capture; first-party capture unchanged - verified: 0.16.0 compiles clean via the Dockerfile recipe (bun build --compile src/cli.ts), --no-open and -- grammar intact Close #432 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 6551db6 commit 5776806

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ RUN --mount=type=cache,target=/home/deva/.npm,uid=${DEVA_UID},gid=${DEVA_GID},sh
230230

231231
# cctrace moves fast: own ARG + layer, declared here so a pin bump
232232
# rebuilds only this layer, not the npm agent layer above.
233-
ARG CCTRACE_VERSION=0.11.0
233+
ARG CCTRACE_VERSION=0.16.0
234234
LABEL org.opencontainers.image.cctrace_version=${CCTRACE_VERSION}
235235

236236
RUN --mount=type=cache,target=/home/deva/.npm,uid=${DEVA_UID},gid=${DEVA_GID},sharing=locked \

Dockerfile.rust

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ RUN --mount=type=cache,target=/home/deva/.npm,uid=${DEVA_UID},gid=${DEVA_GID},sh
147147

148148
# cctrace moves fast: own ARG + layer, declared last among the tool layers
149149
# so a pin bump rebuilds only this, not npm tooling or playwright above.
150-
ARG CCTRACE_VERSION=0.11.0
150+
ARG CCTRACE_VERSION=0.16.0
151151
LABEL org.opencontainers.image.cctrace_version=${CCTRACE_VERSION}
152152

153153
RUN --mount=type=cache,target=/home/deva/.npm,uid=${DEVA_UID},gid=${DEVA_GID},sharing=locked \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ DELTA_VERSION ?= 0.19.2
3131
TMUX_VERSION ?= 3.6a
3232
TMUX_SHA256 ?= b6d8d9c76585db8ef5fa00d4931902fa4b8cbe8166f528f44fc403961a3f3759
3333
CLAUDE_CODE_VERSION ?= 2.1.143
34-
CCTRACE_VERSION ?= 0.11.0
34+
CCTRACE_VERSION ?= 0.16.0
3535
CODEX_VERSION ?= 0.131.0
3636
GEMINI_CLI_VERSION ?= 0.42.0
3737
GROK_CLI_VERSION ?= 0.2.93

versions.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ TMUX_VERSION=3.6a
99
TMUX_SHA256=b6d8d9c76585db8ef5fa00d4931902fa4b8cbe8166f528f44fc403961a3f3759
1010

1111
CLAUDE_CODE_VERSION=2.1.143
12-
CCTRACE_VERSION=0.11.0
12+
CCTRACE_VERSION=0.16.0
1313
CODEX_VERSION=0.131.0
1414
GEMINI_CLI_VERSION=0.42.0
1515
GROK_CLI_VERSION=0.2.93

0 commit comments

Comments
 (0)