Zum Inhalt

Polycrate CLI 0.30.6

Release-Datum: 8. März 2026
Typ: Bugfix-Release

Highlights

Polycrate CLI 0.30.6 behebt einen Fehler bei der Workspace-Verschlüsselung, bei dem polycrate workspace encrypt und verwandte Befehle trotz korrekt konfiguriertem Credential scheiterten.

Artefakte

Docker Images

docker pull cargo.ayedo.cloud/library/polycrate:0.30.6

CLI Downloads

Plattform Architektur Download
Linux amd64 Download
Linux arm64 Download
macOS amd64 Download
macOS arm64 (Apple Silicon) Download

Installation & Update

polycrate update 0.30.6

Installationsanleitung


Bugfixes

Workspace Encryption: Credential-State READYOK

Problem: polycrate workspace encrypt, decrypt und workspace encryption status schlugen trotz korrekt konfiguriertem Encryption-Credential fehl:

● API key resolution failed: credential state is not READY: OK
🔑 Key Status: ❌ No key found

Ursache: Die polycrate-api hat ihren positiven Credential-Status von READY auf OK umgestellt (einheitliches Status-Schema über alle Ressourcentypen). In der CLI war die Prüfung hardcoded auf den alten Wert:

// Alter Code (workspace_encryption.go)
if apiWorkspace.Credential.State != "READY" { ... }

Fix: Die State-Prüfung akzeptiert jetzt beide Werte — OK (aktueller API-State) und READY (Backward Compatibility für ältere API-Versionen). Es war kein API-Client-Regenerat notwendig, da der generierte Client OK bereits als validen State kennt.

Workspace-Verschlüsselung