v0.38.0
greensock/GSAPv0.38.0Jun 22, 2026by github-actions[bot]
AI Summary
Adds a new permission management feature allowing users to remove themselves from a vault, accompanied by verification scripts for checksums and signatures.
Key Highlights
- New capability to allow users to remove themselves from a vault.
New Features
- Allow users to remove themselves from a vault.
Full Release Notes
## Changelog * 3e4f57d682a9d859d846928baebb35d3c9f7dd99 feat: allow users to remove themselves from a vault (#290) ## 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.38.0 \ --certificate-identity-regexp "^https://github\.com/Infisical/agent-vault/\.github/workflows/release\.yml@refs/tags/" \ --certificate-oidc-issuer "https://token.actions.githubusercontent.com" ```