Skip to content

v1.0 → v1.1

This content is for v1.x. Switch to the latest version for up-to-date documentation.

v1.1.0 (2026-05-26) added session persistence, request reliability (timeout + retry), proactive triggers, localization, and optional worker analytics. Two changes need attention when upgrading:

The embed build output was renamed:

v1.0v1.1+
claudius-embed.iife.jsclaudius.iife.js
claudius-embed.cssclaudius.css

Self-hosted embeds: update your <script src> and <link href> tags to the new filenames when you upload the new bundle.

Persistence moved from localStorage to sessionStorage

Section titled “Persistence moved from localStorage to sessionStorage”

v1.0 persisted conversations in localStorage (indefinitely); v1.1 uses sessionStorage (survives navigation, clears when the tab closes) under the storageKeyPrefix key (default claudius:messages). No action needed — existing localStorage entries are simply ignored — but be aware conversations no longer persist across browser sessions. Disable persistence entirely with persistMessages: false.

  • locale, translations, triggers, requestTimeoutMs, storageKeyPrefix options (reference)
  • Worker analytics via the optional ANALYTICS_DB D1 binding (setup)