mirror of
https://github.com/anthropic-experimental/sandbox-runtime.git
synced 2026-05-06 13:40:59 +08:00
* fix(sandbox): set CLOUDSDK_PROXY_TYPE=http (was invalid "https") gcloud rejects CLOUDSDK_PROXY_TYPE=https with: Invalid value for property [proxy/type]: The proxy type property value [https] is not valid. Possible values: [http, http_no_tunnel, socks4, socks5]. The proxy/type setting names the protocol the proxy itself speaks, not the traffic it tunnels. The sandbox proxy at httpProxyPort is an HTTP CONNECT proxy (HTTPS_PROXY is already set to http://localhost:<port> for the same reason), so "http" is the correct value. Adds a unit test for generateProxyEnvVars covering this. Fixes #151 * ci: revert bun to 1.3.1 The 1.3.13 bump exposed two new flakes (linux/x86-64 reset() bridge exit delivery; linux/arm64 http.Server listen/address race in configurable-proxy-ports). Reverting to 1.3.1 until those are addressed upstream. The spawnAsync test changes from #243 remain — they are correct on both versions.