Version, authenticate and fully trace ecosystem calls #84

Merged
claude merged 135 commits from overnight/eco-versioned-traces into master 2026-08-01 14:50:26 +02:00
Showing only changes of commit 9a9f4464d5 - Show all commits
+5 -1
View File
@@ -42,7 +42,11 @@ func TestUnlockDeliversSecretToHook(t *testing.T) {
var gotUnlock, gotWrap []byte
var gotExplicit bool
srv.UnlockFn = func(_ context.Context, s []byte) error { gotUnlock = bytes.Clone(s); return nil }
srv.WrapKeyFn = func(_ context.Context, s []byte, explicit bool) error { gotWrap = bytes.Clone(s); gotExplicit = explicit; return nil }
srv.WrapKeyFn = func(_ context.Context, s []byte, explicit bool) error {
gotWrap = bytes.Clone(s)
gotExplicit = explicit
return nil
}
ctx := context.Background()
if err := cli.Unlock(ctx, secret); err != nil {