brookmd 0.23.1 → 0.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ Notable changes to brookmd (formerly `flux-md`). Format based on
4
4
  [Keep a Changelog](https://keepachangelog.com/); this project aims to follow
5
5
  [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## 0.23.2 — 2026-07-22
8
+
9
+ ### Fixed
10
+
11
+ - **Streaming/one-shot parity: non-ASCII whitespace no longer blanks a line.**
12
+ The streaming premature-commit guard tested "previous line non-blank" with
13
+ Unicode-aware trimming, so a line consisting only of form feed (U+000C),
14
+ vertical tab (U+000B), NBSP, or other non-ASCII whitespace was treated as a
15
+ blank line. A paragraph opened by such a line could be committed early and a
16
+ later lazy continuation could never merge back — the streamed output
17
+ permanently diverged from the one-shot parse (nightly parity-fuzz catch,
18
+ input `\x0c\n-- - @`). The guard now uses the CommonMark blank-line
19
+ definition (ASCII space/tab only), matching the one-shot path; regression
20
+ tests pin the artifact and variants across chunk splits.
21
+
7
22
  ## 0.23.1 — 2026-07-21
8
23
 
9
24
  ### Changed
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brookmd",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
4
4
  "description": "Zero-dep streaming markdown for the browser. Rust→WASM core, Web Worker per stream, incremental parse with speculative closure.",
5
5
  "type": "module",
6
6
  "sideEffects": ["./dist/worker.js", "./dist/styles.css"],