@pond-ts/react 0.31.0 → 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 +28 -2
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -8,8 +8,10 @@ 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.0...HEAD
12
- [0.31.0]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...v0.31.0
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
13
+ [0.31.1]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...v0.31.1
14
+ [0.31.0]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...3c4e8bd
13
15
  [0.30.0]: https://github.com/pjm17971/pond-ts/compare/v0.29.0...v0.30.0
14
16
  [0.29.0]: https://github.com/pjm17971/pond-ts/compare/v0.28.0...v0.29.0
15
17
  [0.28.0]: https://github.com/pjm17971/pond-ts/compare/v0.27.0...v0.28.0
@@ -24,6 +26,30 @@ patch bumps are strictly additive.
24
26
  [0.19.0]: https://github.com/pjm17971/pond-ts/compare/v0.18.0...v0.19.0
25
27
  [0.18.0]: https://github.com/pjm17971/pond-ts/compare/v0.17.1...v0.18.0
26
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
+
44
+ ## [0.31.1] — 2026-06-28
45
+
46
+ ### Fixed
47
+
48
+ - **`@pond-ts/charts` and `@pond-ts/fit` now ship their own README** on npm.
49
+ 0.31.0 inadvertently published the `pond-ts` core README on every package
50
+ (each `prepack` copied the repo-root README); charts and fit now carry their
51
+ own. No code or API changes.
52
+
27
53
  ## [0.31.0] — 2026-06-28
28
54
 
29
55
  First published release of **`@pond-ts/charts`** and **`@pond-ts/fit`** (both were
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pond-ts/react",
3
- "version": "0.31.0",
3
+ "version": "0.31.2",
4
4
  "description": "React hooks for pond-ts live time series",
5
5
  "license": "MIT",
6
6
  "repository": {