Skip to content

v0.5.0

Choose a tag to compare

@github-actions github-actions released this 30 Mar 20:13
· 1399 commits to master since this release
Immutable release. Only release title and notes can be modified.
9e59f24

Summary

  • Added a per-channel activity framework for typing indicators and explicit after-response read receipts.
  • Enabled Signal typing indicators and explicit after-response read receipts behind channels.*.features.* policy controls, with bounded ownership, retry, and shutdown semantics.
  • Refreshed release-facing docs, capability/status inventories, and the Signal smoke playbook to match the shipped channel-activity surface.

Breaking Changes

  • None.

Migration Steps

  • No manual migration is required for the stable path from v0.4.x to v0.5.0.
  • Before upgrading, create a backup:
    • cara backup --output ./carapace-backup.tar.gz
  • Optional: if you want Signal typing indicators or explicit after-response read receipts, configure them under:
    • channels.signal.features.typing.enabled
    • channels.signal.features.readReceipts.enabled
  • After upgrade, verify the install:
    • cara verify --outcome auto
    • cara verify --outcome autonomy

Rollback Steps

  • Reinstall the previous known-good binary, for example v0.4.1.
  • Restore the backup created before upgrade:
    • cara restore --path ./carapace-backup.tar.gz
  • Re-run:
    • cara status --port 18789
    • cara verify --outcome auto --port 18789
    • cara verify --outcome autonomy --port 18789

Security

  • Signal read-receipt handling now uses bounded receive-time ownership plus durable after-response obligations so successful delivery does not depend on unbounded background side effects.
  • Signal receive-loop startup now fails cleanly into channel error state when HTTP client initialization fails instead of panicking the process.
  • Signal activity diagnostics keep sensitive response details redacted while preserving safe timestamp-oriented troubleshooting data.
  • No new public advisories are introduced by this release.

Verification

  • Verify published artifacts and Sigstore bundles:
    • RELEASE_TAG=v0.5.0 ./scripts/smoke/verify-release-artifacts.sh
  • After upgrading, verify runtime behavior:
    • cara verify --outcome auto
    • cara verify --outcome autonomy
  • If you enable Signal activity features, validate one real thread against the Signal smoke playbook:
    • docs/channel-smoke.md

Known Caveats

  • Signal and Slack still do not have published live smoke evidence in the repo; their real-world validation process remains tracked through docs/channel-smoke.md.
  • Channel activity settings are currently implemented for built-in native channels; plugin channel entries are accepted for forward compatibility but may be ignored until plugin activity capabilities are added.
  • Signal outbound remains direct-message only; unsupported group messages are still ignored rather than partially delivered.