v0.36.0
aigc3d/LAMv0.36.0Jun 16, 2026by github-actions[bot]
AI Summary
Adds anonymous usage telemetry to the agent vault to track usage patterns without requiring user consent.
Key Highlights
- Adds anonymous usage telemetry (#270)
- Includes verification steps for checksums and Docker image signatures
New Features
- Anonymous usage telemetry
Full Release Notes
## Changelog * c17d1a1b2214c19715707a51fa71e75f06f236fc feat: add anonymous usage telemetry (#270) ## Verify ```bash # Verify checksum (portable across macOS and Linux) shasum -a 256 --ignore-missing -c checksums.txt # Verify signature (requires cosign v2+) cosign verify-blob \ --bundle checksums.txt.sig \ --certificate-identity-regexp "^https://github\.com/Infisical/agent-vault/\.github/workflows/release\.yml@refs/tags/" \ --certificate-oidc-issuer "https://token.actions.githubusercontent.com" \ checksums.txt # Verify Docker image signature (requires cosign) cosign verify infisical/agent-vault:0.36.0 \ --certificate-identity-regexp "^https://github\.com/Infisical/agent-vault/\.github/workflows/release\.yml@refs/tags/" \ --certificate-oidc-issuer "https://token.actions.githubusercontent.com" ```