From a4b694b8ae93b292837b4e571c092dccf75531da Mon Sep 17 00:00:00 2001 From: Valerio Date: Tue, 9 Jun 2026 10:56:51 +0200 Subject: [PATCH] chore(release): v0.6.6 Salvaged two CLI ergonomics fixes from #49: - periodic progress line on slow fetches (stderr) - --url-encoded flag + URL truncation warning --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 856cc11..fd27092 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to webclaw are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/). +## [0.6.6] — 2026-06-09 + +### Added +- Slow fetches now print a progress line to stderr every 10 seconds (`# webclaw: still fetching (Ns)`) so a long request no longer looks like the CLI hung. Fast fetches stay silent and stdout is untouched. +- New `--url-encoded` flag plus a warning when a URL looks like the shell split it on `&` or `?`. The warning suggests quoting the URL; pass `--url-encoded` to silence it when the URL is intentional. + +--- + ## [0.6.5] — 2026-06-04 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 124c620..758dc33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["crates/*"] [workspace.package] -version = "0.6.5" +version = "0.6.6" edition = "2024" license = "AGPL-3.0" repository = "https://github.com/0xMassi/webclaw"