Skip to content

Releases: zeroclaw-labs/zeroclaw

v0.7.3

19 Apr 03:55
v0.7.3
6b63340

Choose a tag to compare

Changelog β€” v0.6.9 β†’ v0.7.3

Changes since the v0.6.9 stable release. This release represents the largest
structural overhaul in ZeroClaw's history: the entire codebase has been split into a
proper Cargo workspace of focused crates, a new config schema has shipped with a live
migration path, and a wave of channel, provider, and security improvements have landed
on top of that foundation.


Highlights

  • Workspace split complete β€” ZeroClaw is now a multi-crate Cargo workspace. The
    monolithic source tree has been decomposed into 12+ focused crates
    (zeroclaw-api, zeroclaw-runtime, zeroclaw-gateway, zeroclaw-channels,
    zeroclaw-tools, zeroclaw-memory, zeroclaw-providers, zeroclaw-infra,
    zeroclaw-config, zeroclaw-tui, zeroclaw-plugins, zeroclaw-hardware).
    The foundation binary now builds at 6.6 MB with --no-default-features.

  • Config V2 schema with automatic migration β€” Provider config has moved to a cleaner
    layout. Running zeroclaw config migrate upgrades your existing config in-place,
    preserving comments. The old props subcommand still works but is now deprecated in
    favour of zeroclaw config.

  • OpenRouter streaming β€” OpenRouterProvider now streams responses token-by-token
    instead of waiting for the full response, matching the experience of native providers.

  • Web dashboard decoupled from the binary β€” The dashboard is now built separately
    and embedded at release time. cargo install and AUR/Homebrew packages include it.
    A new voice mode and plugins page have been added to the dashboard.

  • LINE channel β€” LINE Messaging API is now a supported channel.

  • Matrix improvements β€” Mention-only filtering (the agent only responds when
    mentioned), encrypted media download restored, outbound attachment support added, and
    onboarding wizard preservation.

  • GitHub Copilot onboarding β€” GitHub Copilot is now selectable as a provider
    through the onboarding wizard and zeroclaw config flow (#5321).

  • Authenticated OTLP exporters β€” New otel_headers config key lets you pass
    custom headers (e.g. Authorization: Bearer …) to protected OTLP endpoints (#5700).


What's New

Architecture & Workspace

  • Extracted 12 workspace crates from the monolith, implementing the microkernel RFC
    roadmap (RFC D1–D5). Every subsystem β€” providers, channels, tools, memory, infra,
    config, gateway, TUI, plugins, hardware β€” now lives in its own crate with explicit
    dependency boundaries enforced by the compiler.
  • Foundation binary (--no-default-features) compiles clean at 6.6 MB.
  • agent-runtime feature flag gates the full agent loop; the kernel binary builds
    without it.
  • Switched TLS from aws-lc-rs to ring and stripped .eh_frame sections, reducing
    binary size further.
  • schemars is now optional behind a schema-export feature flag β€” no longer a
    mandatory compile dependency.
  • 28 per-channel feature flags with forwarding chains so unused channels add zero
    compile time.
  • Workspace-wide [workspace.dependencies] and [workspace.package] inheritance
    eliminates version duplication across Cargo.toml files.
  • RFC Rev 2 compliance: stability tiers, versioning policy, and release profile are now
    wired into the workspace.

Providers

  • OpenRouterProvider now supports streaming (#5717). Responses appear token-by-token
    instead of arriving all at once.
  • GitHub Copilot is now available as a selectable provider in the onboarding wizard
    and zeroclaw config interactive flow (#5321).
  • Fixed: native tool-call messages are now stripped before sending to providers that
    have native_tool_calling = false, preventing provider errors (#5762).
  • Fixed: tool_stream events are no longer forwarded to non-Z.AI providers in the
    streaming path, preventing unexpected provider errors (#5806).
  • Fixed: DeepSeek V3.2 system prompt escaping and token estimation corrected (#5454).

Channels

  • LINE Messaging API channel added (#5642).
  • Matrix: mention-only filtering β€” the agent can be configured to respond only when
    directly mentioned. Encrypted media download restored. Outbound attachment support
    added. Onboarding wizard settings now preserved across restarts (#5166, #5727).
  • Telegram: tool approval requests now include inline_keyboard markup, giving
    users interactive approve/deny buttons instead of plain text (#5790).
  • Sender user ID is now propagated into the channel system prompt, giving the agent
    context about who it is talking to (#5526).
  • Email and VoiceCall channels now have an enabled field and are correctly wired into
    the orchestrator (#5659).
  • <think> tags are stripped from streaming draft updates before they reach the client
    (#5505).
  • Fixed: missing channels in build_channel_by_id caused sessions_send to silently
    fail for some channel types (#5506).
  • Telegram and Matrix implementations moved out of the orchestrator into their own
    modules (#5639).

Configuration

  • Config V2 schema with a new provider layout (providers.models,
    providers.fallback, model_routes, embedding_routes).
  • zeroclaw config migrate upgrades a V1 config to V2 in-place, preserving comments
    and formatting.
  • zeroclaw config replaces zeroclaw props. The old props subcommand is deprecated
    but still functional.
  • Onboarding wizard updated to write V2 provider format directly.
  • Fixed: false "Unknown config key" warnings for Option<T> fields and config aliases
    (#5510).
  • Fixed: providers.fallback now emits a warning if it references a key that does not
    exist in providers.models.
  • Fixed: temperature validation restored in the providers.models loop.
  • Slack config: channel_id deprecated in favour of channel_ids (plural) for V2.
  • Nostr, WhatsApp Web, and hardware wizard sections wired into the onboarding flow
    (#5640).

Observability

  • otel_headers β€” new config key for passing arbitrary HTTP headers to OTLP
    endpoints. Enables authenticated exporters (e.g. Grafana Cloud, Honeycomb) without
    environment variable workarounds (#5700).

Web Dashboard

  • Voice mode added to the dashboard.
  • Plugins management page added.
  • Theme mode switch fixed β€” light/dark selection now applies correctly on load (#5724).
  • Visual preview swatches added to the theme mode selector (#5767).
  • Dashboard is now decoupled from the main binary β€” built separately and embedded at
    release time. Included in binary releases, AUR, Homebrew, and cargo install
    (#5675, #5665).
  • Web build logic moved into the gateway crate; no-op recompiles (previously ~1 minute)
    eliminated.

Agent & Runtime

  • CLI channel factory now registered for interactive mode β€” zeroclaw interactive
    sessions work again after the workspace split (#5802).
  • Duplicate ToolCall events in turn_streamed deduplicated; clients no longer see the
    same tool call reported twice (#5746).
  • Empty successful tool output is now normalised before being returned to the provider,
    preventing downstream parse errors on blank responses (#5565).
  • Session integrity improvements: streaming refactor and history pruning for long
    conversations (#5167).
  • Cron agent jobs no longer trigger auto_save, preventing runaway memory consolidation
    on scheduled tasks (#5664).
  • Fixed: cron_run tool output was not being delivered to configured channels.
  • Windows: the shell console window is now hidden when running as a background process
    (#5563).

Skills (Claude Code)

  • github-issue-triage skill added β€” automates structured triage of GitHub issues using
    Claude Code (#5780).
  • squash-merge skill added β€” preserves clean commit history when merging upstream
    changes (#5782).

Security

  • Dangerous interpreter arguments (e.g. -e, --eval, -c on interpreters) are now
    blocked by the command security policy (#5702).
  • Heredocs and safe shell redirects (<<EOF, >, >>) are explicitly allowed (#5160).

Installation & Distribution

  • install.sh rewritten from scratch for the workspace split β€” correctly handles the
    new crate layout and binary paths (#5666).
  • AUR package migrated from zeroclaw to zeroclawlabs (#5544).
  • Daemon supervisor and onboarding launch checks now include the webhook channel (#5799).

Dependencies & Security Advisories

  • rustls-webpki and rumqttc bumped to resolve RUSTSEC-2026-0098 and
    RUSTSEC-2026-0099 (#5786).

Deployment

  • Sample Kubernetes and OpenShift deployment manifests added in deploy-k8s/ with
    hardened security context (runAsNonRoot, readOnlyRootFilesystem, drop ALL caps,
    seccompProfile: RuntimeDefault) and pairing auth enabled by default (#5880).

Bug Fixes (summary)

Area Fix
Provider Strip native tool messages for non-native-tool-calling providers
Provider tool_stream events forwarded to non-Z.AI providers in streaming path
Provider DeepSeek V3.2 system prompt escaping and token estimation
Agent CLI channel factory missing in interactive mode
Agent Duplicate ToolCall events in streaming turns
Agent Normalize empty successful tool output
Matrix Encrypted media download; outbound attachments
Channels Missing Arc Provider forwarding methods
Channels <think> tag leaking into streaming draft updates
Telegram inline_keyboard missing from tool approval requests
Cron cron_run tool output not delivered to configured channels
Config False "Unknown config key" warnings on Option fields
Config Temperature validation missing from providers loop
Config Fallback key references nonexistent provider β€” now warns
Session Integrity, streaming refactor, history pruning...
Read more

v0.7.3-beta.1051

19 Apr 03:49
6b63340

Choose a tag to compare

v0.7.3-beta.1051 Pre-release
Pre-release
fix(ci): replace RELEASE_TOKEN with GITHUB_TOKEN in release workflows…

v0.7.1-beta.1049

18 Apr 22:40

Choose a tag to compare

v0.7.1-beta.1049 Pre-release
Pre-release
chore: sync version references to v0.7.1

v0.7.0-beta.1047

18 Apr 08:55
0f8bd00

Choose a tag to compare

v0.7.0-beta.1047 Pre-release
Pre-release

Changelog β€” v0.6.9 β†’ v0.7.0

Changes since the v0.6.9 stable release. This release represents the largest
structural overhaul in ZeroClaw's history: the entire codebase has been split into a
proper Cargo workspace of focused crates, a new config schema has shipped with a live
migration path, and a wave of channel, provider, and security improvements have landed
on top of that foundation.


Highlights

  • Workspace split complete β€” ZeroClaw is now a multi-crate Cargo workspace. The
    monolithic source tree has been decomposed into 12+ focused crates
    (zeroclaw-api, zeroclaw-runtime, zeroclaw-gateway, zeroclaw-channels,
    zeroclaw-tools, zeroclaw-memory, zeroclaw-providers, zeroclaw-infra,
    zeroclaw-config, zeroclaw-tui, zeroclaw-plugins, zeroclaw-hardware).
    The foundation binary now builds at 6.6 MB with --no-default-features.

  • Config V2 schema with automatic migration β€” Provider config has moved to a cleaner
    layout. Running zeroclaw config migrate upgrades your existing config in-place,
    preserving comments. The old props subcommand still works but is now deprecated in
    favour of zeroclaw config.

  • OpenRouter streaming β€” OpenRouterProvider now streams responses token-by-token
    instead of waiting for the full response, matching the experience of native providers.

  • Web dashboard decoupled from the binary β€” The dashboard is now built separately
    and embedded at release time. cargo install and AUR/Homebrew packages include it.
    A new voice mode and plugins page have been added to the dashboard.

  • LINE channel β€” LINE Messaging API is now a supported channel.

  • Matrix improvements β€” Mention-only filtering (the agent only responds when
    mentioned), encrypted media download restored, outbound attachment support added, and
    onboarding wizard preservation.


What's New

Architecture & Workspace

  • Extracted 12 workspace crates from the monolith, implementing the microkernel RFC
    roadmap (RFC D1–D5). Every subsystem β€” providers, channels, tools, memory, infra,
    config, gateway, TUI, plugins, hardware β€” now lives in its own crate with explicit
    dependency boundaries enforced by the compiler.
  • Foundation binary (--no-default-features) compiles clean at 6.6 MB.
  • agent-runtime feature flag gates the full agent loop; the kernel binary builds
    without it.
  • Switched TLS from aws-lc-rs to ring and stripped .eh_frame sections, reducing
    binary size further.
  • schemars is now optional behind a schema-export feature flag β€” no longer a
    mandatory compile dependency.
  • 28 per-channel feature flags with forwarding chains so unused channels add zero
    compile time.
  • Workspace-wide [workspace.dependencies] and [workspace.package] inheritance
    eliminates version duplication across Cargo.toml files.
  • RFC Rev 2 compliance: stability tiers, versioning policy, and release profile are now
    wired into the workspace.

Providers

  • OpenRouterProvider now supports streaming (#5717). Responses appear token-by-token
    instead of arriving all at once.
  • Fixed: native tool-call messages are now stripped before sending to providers that
    have native_tool_calling = false, preventing provider errors (#5762).
  • Fixed: DeepSeek V3.2 system prompt escaping and token estimation corrected (#5454).

Channels

  • LINE Messaging API channel added (#5642).
  • Matrix: mention-only filtering β€” the agent can be configured to respond only when
    directly mentioned. Encrypted media download restored. Outbound attachment support
    added. Onboarding wizard settings now preserved across restarts (#5166, #5727).
  • Sender user ID is now propagated into the channel system prompt, giving the agent
    context about who it is talking to (#5526).
  • Email and VoiceCall channels now have an enabled field and are correctly wired into
    the orchestrator (#5659).
  • <think> tags are stripped from streaming draft updates before they reach the client
    (#5505).
  • Fixed: missing channels in build_channel_by_id caused sessions_send to silently
    fail for some channel types (#5506).
  • Telegram and Matrix implementations moved out of the orchestrator into their own
    modules (#5639).

Configuration

  • Config V2 schema with a new provider layout (providers.models,
    providers.fallback, model_routes, embedding_routes).
  • zeroclaw config migrate upgrades a V1 config to V2 in-place, preserving comments
    and formatting.
  • zeroclaw config replaces zeroclaw props. The old props subcommand is deprecated
    but still functional.
  • Onboarding wizard updated to write V2 provider format directly.
  • Fixed: false "Unknown config key" warnings for Option<T> fields and config aliases
    (#5510).
  • Fixed: providers.fallback now emits a warning if it references a key that does not
    exist in providers.models.
  • Fixed: temperature validation restored in the providers.models loop.
  • Slack config: channel_id deprecated in favour of channel_ids (plural) for V2.
  • Nostr, WhatsApp Web, and hardware wizard sections wired into the onboarding flow
    (#5640).

Web Dashboard

  • Voice mode added to the dashboard.
  • Plugins management page added.
  • Dashboard is now decoupled from the main binary β€” built separately and embedded at
    release time. Included in binary releases, AUR, Homebrew, and cargo install (#5675,
    #5665).
  • Web build logic moved into the gateway crate; no-op recompiles (previously ~1 minute)
    eliminated (#5ec5f2a6).

Agent & Runtime

  • CLI channel factory now registered for interactive mode β€” zeroclaw interactive
    sessions work again after the workspace split (#5802).
  • Duplicate ToolCall events in turn_streamed deduplicated; clients no longer see the
    same tool call reported twice (#5746).
  • Session integrity improvements: streaming refactor and history pruning for long
    conversations (#5167).
  • Cron agent jobs no longer trigger auto_save, preventing runaway memory consolidation
    on scheduled tasks (#5664).
  • Windows: the shell console window is now hidden when running as a background process
    (#5563).

Skills (Claude Code)

  • github-issue-triage skill added β€” automates structured triage of GitHub issues using
    Claude Code (#5780).
  • squash-merge skill added β€” preserves clean commit history when merging upstream
    changes (#5782).

Security

  • Dangerous interpreter arguments (e.g. -e, --eval, -c on interpreters) are now
    blocked by the command security policy (#5702).
  • Heredocs and safe shell redirects (<<EOF, >, >>) are explicitly allowed (#5160).

Installation & Distribution

  • install.sh rewritten from scratch for the workspace split β€” correctly handles the
    new crate layout and binary paths (#5666).
  • AUR package migrated from zeroclaw to zeroclawlabs (#5544).
  • Daemon supervisor and onboarding launch checks now include the webhook channel (#5799).

Dependencies & Security Advisories

  • rustls-webpki and rumqttc bumped to resolve RUSTSEC-2026-0098 and
    RUSTSEC-2026-0099 (#5786).

Bug Fixes (summary)

Area Fix
Provider Strip native tool messages for non-native-tool-calling providers
Provider DeepSeek V3.2 system prompt escaping and token estimation
Agent CLI channel factory missing in interactive mode
Agent Duplicate ToolCall events in streaming turns
Matrix Encrypted media download; outbound attachments
Channels Missing Arc Provider forwarding methods
Channels <think> tag leaking into streaming draft updates
Config False "Unknown config key" warnings on Option fields
Config Temperature validation missing from providers loop
Config Fallback key references nonexistent provider β€” now warns
Session Integrity, streaming refactor, history pruning
Cron auto_save causing recursive memory bloat on scheduled jobs
Security Dangerous interpreter flags not blocked
Install install.sh broken after workspace split
Runtime Windows console window visible in background mode
Distribution Web dashboard missing from AUR and cargo install builds

Breaking Changes

Config schema (V1 β†’ V2)

The provider section of config.toml has a new layout. V1 configs are still loaded and
automatically understood, but the recommended path is to run the migration:

zeroclaw config migrate

This rewrites your config to V2 in-place. The old format will continue to work in this
release but will not be supported indefinitely.

zeroclaw props deprecated

Use zeroclaw config instead. The props subcommand still works and will not be
removed in this release, but it will emit a deprecation notice.

Slack channel_id deprecated

Use channel_ids (a list) in the Slack config block. channel_id (singular) still
works but is deprecated in V2.

Workspace crate boundaries

If you have any code that depends directly on internal ZeroClaw crate paths (e.g. for
embedding or testing), the crate structure has changed significantly. Refer to
AGENTS.md for the current crate map and stability tiers. zeroclaw-api is the stable
extension point β€” all other crates are Beta or Experimental.


Contributors

Thank you to everyone who contributed to this release:


Full diff: git log v0.6.9..HEAD --oneline

v0.6.9

08 Apr 06:11
Immutable release. Only release title and notes can be modified.
1a61ea7

Choose a tag to compare

What's New

  • config: Configurable derive macro and zeroclaw props CLI
  • config: enable browser tools by default with auto-approve
  • gateway: broadcast cron job results to dashboard WebSocket clients
  • gateway: buffer SSE events for dashboard log persistence
  • heartbeat: enable heartbeat by default
  • i18n: add all 31 languages to web dashboard and fix locale API
  • providers: add merge_system_into_user option to ModelProviderConfig
  • skills: add github-pr-review skill for autonomous PR triage and review
  • web: add collapsible desktop sidebar with local state persistence
  • web: add form-based config editor with mode toggle

Contributors

  • Abdul Sadath
  • Argenis
  • argenis de la rosa
  • Claude Opus 4.6
  • Claude Opus 4.6 (1M context)
  • Claude Sonnet 4.6
  • Drew Lipiecki
  • Henrik Akselsen
  • HoWon
  • ilteoood
  • jordanthejet
  • linyibin
  • m-tky
  • Matteo Pietro Dazzi
  • Michael Lohr
  • Richard Piacentini
  • Shane Engelman
  • shedwards

Full changelog: v0.6.8...v0.6.9

v0.6.8

02 Apr 00:41
Immutable release. Only release title and notes can be modified.

Choose a tag to compare

What's New

  • tui: remove OAuth/Browser auth methods, expand onboarding screens

Contributors

  • argenis de la rosa

Full changelog: v0.6.7...v0.6.8

v0.6.7

29 Mar 21:16
Immutable release. Only release title and notes can be modified.
3482771

Choose a tag to compare

What's New

  • agent: add context overflow recovery in interactive daemon loop
  • agent: add context overflow recovery in tool call loop
  • agent: add fast-path tool result trimming in context compressor
  • agent: add preemptive context check before provider calls
  • agent: add shared iteration budget for parent/subagent coordination
  • agent: add tool result truncation to prevent context blowout
  • agent: graceful shutdown when max tool iterations reached
  • channels: add inbound message debouncing
  • hooks: fire session:end hook on idle timeout, shutdown, and replacement
  • router: add complexity-based auto model routing
  • skills: .well-known/agent-skills discovery for skill install
  • tools: binary file type detection in file_read
  • http_request: add allowed_private_hosts config for SSRF bypass
  • onboard: support Anthropic-compatible endpoints in setup wizard

Automation

  • Added scripts/release/bump-version.sh for single-command version sync across all repo files
  • Added .github/workflows/version-sync.yml to auto-sync versions when Cargo.toml changes
  • Fixed clippy errors blocking release builds
  • Fixed release workflow git config and token permissions

Full changelog: v0.6.5...v0.6.7

v0.5.6

21 Mar 22:03
Immutable release. Only release title and notes can be modified.
256e8cc

Choose a tag to compare

What's New in v0.5.6

Fixes

  • Install script: Auto-accept Xcode/CLT license on macOS instead of bailing out β€” works seamlessly in curl | bash via /dev/tty sudo prompt (#4153, #4165, #4169)
  • Flaky test: Fixed intermittent execute_successful_subprocess broken pipe failure by draining stdin in test script (#4161)
  • Crates.io publish: Fixed aardvark-sys missing version spec that blocked cargo publish; all publish workflows now publish workspace deps first (#4172)
  • Docker builds: Added aardvark-sys workspace crate to Dockerfile COPY stage

Install

# One-liner (macOS / Linux)
curl -fsSL https://zeroclawlabs.ai/install.sh | bash

# Cargo
cargo install zeroclawlabs

# Docker
docker pull ghcr.io/zeroclaw-labs/zeroclaw:latest

Full Changelog: v0.5.5...v0.5.6

v0.5.5

21 Mar 15:03
Immutable release. Only release title and notes can be modified.
a1ab1e1

Choose a tag to compare

What's New

Features

  • DeepMyst provider β€” added as OpenAI-compatible provider (#4103)
  • WeatherTool β€” weather data via wttr.in integration (#4104)
  • Slack Assistants API β€” status indicators for Slack channels (#4105)
  • Cron edit modal β€” edit button and modal for updating cron jobs (#4132)
  • Theme system β€” CSS variables and settings modal for web UI (#4133)
  • OpenAI Codex auth import β€” import existing auth profiles (#3762)
  • Service status β€” show running state in zeroclaw status (#3751)
  • Slack markdown β€” native markdown blocks for rich formatting (#4142)
  • LocalWhisperProvider β€” self-hosted STT via local Whisper (#4141)
  • ClaudeCodeTool β€” two-tier agent delegation (#4144)
  • Memory time range β€” since/until filters for recall (#4146)
  • RPi GPIO & hardware plugins β€” Raspberry Pi GPIO, Aardvark I2C/SPI/GPIO support (#4125)
  • mem0 (OpenMemory) β€” new memory backend integration (#3965)
  • Gateway path_prefix β€” support for reverse-proxy deployments (#4145)
  • Delegate sub-agent prompt enrichment β€” skills_directory config key (#3344)
  • Per-channel proxy_url β€” HTTP/SOCKS5 proxy support per channel (#3345)
  • Configurable pacing controls β€” for slow/local LLM workloads (#3343)
  • Verifiable intent module β€” native verifiable intent lifecycle (#2938)
  • Slack reactions β€” reaction support for Slack channel (#4091)
  • Web search routing β€” provider routing with alias fallback (#4038)
  • Lark/Feishu markdown β€” markdown rendering in Lark/Feishu (#3866)
  • I18n expansion β€” six new locales and expanded language hubs (#2934)

Fixes

  • Install script β€” reliable Xcode license detection via test-compile (#4151)
  • Memory postgres β€” use OS threads to avoid nested runtime panic (#4129)
  • Channel model switch β€” wire callback into inference path (#4130)
  • Cost tracking β€” add enforcement to all channels (#4143)
  • WhatsApp Web β€” add missing policy config keys (#4131)
  • Transcription β€” honor configured default provider (#3883)
  • Claude providers β€” clamp unsupported temperatures (#3961)
  • QQ WebSocket β€” respond to Ping frames to prevent timeout (#4041)
  • Autonomy level β€” respect in SafetySection for agent/gateway WS path (#4037)
  • Gemini β€” default chat() for prompt-guided tool calling + vision (#3932)
  • MCP tools β€” wire into WebSocket chat and gateway /api/tools (#4096)
  • Cron delivery β€” add QQ to supported channel whitelist (#4120)
  • Config tests β€” prevent clobbering active_workspace.toml (#4121)
  • Docker builds β€” align workspace with Cargo.lock for --locked (#4126)
  • Onboarding β€” make tmux paste safe for text prompts (#4106)
  • Auto-approval β€” auto-approve read-only tools in non-interactive mode (#4094)
  • Gateway Docker β€” better error message for bridge connectivity (#4095)
  • Web UI β€” anchor memory table with dual scrollbars (#4027)
  • OTP config β€” add challenge_max_attempts field (#3921)

Other

  • Enhanced .editorconfig with comprehensive file type settings (#3872)

Full Changelog: v0.5.4...v0.5.5

v0.1.7-beta.30

11 Mar 18:11
Immutable release. Only release title and notes can be modified.
74f411b

Choose a tag to compare

v0.1.7-beta.30 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v0.1.7...v0.1.7-beta.30