@pond-ts/charts 0.31.1 → 0.31.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -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`, and
8
8
  them all. Pre-1.0: minor bumps may include new features and type-level changes;
9
9
  patch bumps are strictly additive.
10
10
 
11
- [Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.31.1...HEAD
11
+ [Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.31.2...HEAD
12
+ [0.31.2]: https://github.com/pjm17971/pond-ts/compare/v0.31.1...v0.31.2
12
13
  [0.31.1]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...v0.31.1
13
14
  [0.31.0]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...3c4e8bd
14
15
  [0.30.0]: https://github.com/pjm17971/pond-ts/compare/v0.29.0...v0.30.0
@@ -25,6 +26,21 @@ patch bumps are strictly additive.
25
26
  [0.19.0]: https://github.com/pjm17971/pond-ts/compare/v0.18.0...v0.19.0
26
27
  [0.18.0]: https://github.com/pjm17971/pond-ts/compare/v0.17.1...v0.18.0
27
28
 
29
+ ## [0.31.2] — 2026-06-29
30
+
31
+ ### Fixed
32
+
33
+ - **`pond-ts` column methods survive consumer tree-shaking.** The column-API
34
+ methods (`hasMissing`, `at`, `min`, `slice`, …) are mounted onto the column
35
+ prototypes by a side-effect module (`dist/column.js`); the previous
36
+ `sideEffects: ["./dist/column.js"]` per-file glob was dropped by some bundlers
37
+ (notably Rollup production builds under pnpm), so
38
+ `series.column('x').hasMissing()` could throw in production. `pond-ts` now
39
+ declares `sideEffects: true`, matching the other `@pond-ts` packages — robust
40
+ regardless of bundler or symlink layout, at the cost of whole-package
41
+ tree-shaking (the column prototype augmentation makes that unsafe anyway).
42
+ (estela#98.)
43
+
28
44
  ## [0.31.1] — 2026-06-28
29
45
 
30
46
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pond-ts/charts",
3
- "version": "0.31.1",
3
+ "version": "0.31.2",
4
4
  "private": false,
5
5
  "description": "Canvas-rendered, streaming-first time-series charts for pond-ts",
6
6
  "license": "MIT",