pond-ts 0.49.0 → 0.50.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,7 +8,8 @@ The `@pond-ts` packages — `pond-ts`, `@pond-ts/react`, `@pond-ts/charts`,
8
8
  tag, so this file covers them all. Pre-1.0: minor bumps may include new features
9
9
  and type-level changes; patch bumps are strictly additive.
10
10
 
11
- [Unreleased]: https://github.com/pond-ts/pond/compare/v0.49.0...HEAD
11
+ [Unreleased]: https://github.com/pond-ts/pond/compare/v0.50.0...HEAD
12
+ [0.50.0]: https://github.com/pond-ts/pond/compare/v0.49.0...v0.50.0
12
13
  [0.49.0]: https://github.com/pond-ts/pond/compare/v0.48.1...v0.49.0
13
14
  [0.48.1]: https://github.com/pond-ts/pond/compare/v0.48.0...v0.48.1
14
15
  [0.48.0]: https://github.com/pond-ts/pond/compare/v0.47.0...v0.48.0
@@ -49,6 +50,30 @@ and type-level changes; patch bumps are strictly additive.
49
50
 
50
51
  ## [Unreleased]
51
52
 
53
+ ## [0.50.0] — 2026-07-21
54
+
55
+ ### Added
56
+
57
+ - **charts:** M4 decimation extended to **`<Candlestick>`** (same auto-on
58
+ `decimate` prop). Dense candles are drawn as per-pixel-column **aggregate
59
+ candles** — `open=first`, `high=max`, `low=min`, `close=last` over the column —
60
+ i.e. re-bucketed to the pixel-column timeframe, the way a trading chart shows
61
+ fewer, wider candles as you zoom out (decimator §2.4). It is a faithful OHLC of
62
+ each column's span, never a distortion; the hover readout still reads the
63
+ **source** candle at the cursor (§2.3). Decimation gates on the **visible**
64
+ candle count, so a deep zoom into a large series still draws full-width
65
+ candles. Pass `decimate={false}` (and pre-aggregate upstream) for
66
+ fixed-timeframe candles.
67
+ - **charts:** M4 decimation extended to **`<BoxPlot>`** (same auto-on `decimate`
68
+ prop) — the interval-mark sibling of the candle. Dense boxes are drawn as
69
+ per-pixel-column **aggregate boxes**: the whiskers widen to the column's reach
70
+ (`min(lower)`/`max(upper)`), the body to its IQR envelope
71
+ (`min(q1)`/`max(q3)`), the centre line to the first box's median. Gates on the
72
+ **visible** box count (a deep zoom still draws full-width boxes); the
73
+ `hasBox`/`hasMedian` flags carry through, so a range-only box stays range-only.
74
+ Interaction is unaffected — hit-testing reads the source boxes (§2.3). Pass
75
+ `decimate={false}` to draw every box at its own slot.
76
+
52
77
  ## [0.49.0] — 2026-07-21
53
78
 
54
79
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pond-ts",
3
- "version": "0.49.0",
3
+ "version": "0.50.0",
4
4
  "description": "TypeScript-first time series primitives",
5
5
  "license": "MIT",
6
6
  "repository": {