Commit browse files
Message
Changed Files (3)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b9245f..2212141 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [0.6.0] - 2026-06-26 + ### Added - Progressive search via SSE (`/api/search/stream`): local bookmark results appear instantly, external engine results stream in as they arrive, using `EventSource` with zero external dependencies. - `?js=true` query parameter for the `/search` handler: skips external engines during page render (~50ms instead of ~1700ms). JS automatically inserts this into the URL via `history.replaceState`/`pushState`, enabling fast loading on all subsequent interactions. - Integration tests for the SSE endpoint covering content-type, bookmark events, done events, empty queries, no-match queries, and bang redirects. + ## [0.5.2] - 2026-06-24 ### Fixed -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index 38f71c0..66b174d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3556,7 +3556,7 @@ dependencies = [ [[package]] name = "search_hub" -version = "0.5.2" +version = "0.6.0" dependencies = [ "actix-web", "anyhow", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index bff7293..7248322 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "search_hub" -version = "0.5.2" +version = "0.6.0" edition = "2021" rust-version = "1.88.0"