@pond-ts/react 0.16.0 → 0.16.1
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 +62 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,10 +7,70 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
7
7
|
file covers both packages. Pre-1.0: minor bumps may include new features and
|
|
8
8
|
type-level changes; patch bumps are strictly additive.
|
|
9
9
|
|
|
10
|
-
[Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.16.
|
|
10
|
+
[Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.16.1...HEAD
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
## [0.16.1] — 2026-05-06
|
|
15
|
+
|
|
16
|
+
Patch wave addressing one ergonomic gap surfaced by the gRPC
|
|
17
|
+
experiment ([pond-grpc-experiment#29](https://github.com/pjm17971/pond-grpc-experiment/pull/29))
|
|
18
|
+
plus the v0.16.0 docs deploy that broke since v0.15.2.
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **`PartitionedTimeSeries.aggregate(...)` and `.rolling(...)` now
|
|
23
|
+
auto-inject the partition column into the user's mapping**
|
|
24
|
+
([#128](https://github.com/pjm17971/pond-ts/pull/128)). The
|
|
25
|
+
natural shape just works:
|
|
26
|
+
|
|
27
|
+
```ts
|
|
28
|
+
series
|
|
29
|
+
.partitionBy('host')
|
|
30
|
+
.aggregate(Sequence.every('600ms'), { cpu_avg: 'avg' });
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Pre-fix this threw `column "host" not in schema` at the rewrap
|
|
34
|
+
step because the user's mapping didn't carry the partition
|
|
35
|
+
column through; users had to add `host: 'first'` mechanically
|
|
36
|
+
to every partitioned-aggregate call. Pond now adds it
|
|
37
|
+
automatically — `'first'` is by-construction-correct since
|
|
38
|
+
every row in a single partition shares that column's value.
|
|
39
|
+
User-supplied mappings for the partition column win (auto-
|
|
40
|
+
inject is a no-op when the user has already opted in).
|
|
41
|
+
Composite partitions (`partitionBy(['host', 'region'])`)
|
|
42
|
+
auto-inject every partition column. Strictly additive — the
|
|
43
|
+
pre-fix workaround pattern still works unchanged.
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- **Docs deploy workflow unblocked**
|
|
48
|
+
([#126](https://github.com/pjm17971/pond-ts/pull/126)). Has
|
|
49
|
+
been failing since v0.15.2 with `Cannot find name
|
|
50
|
+
'queueMicrotask'` — TypeDoc runs the same tsconfig as the
|
|
51
|
+
npm-publish path but from a different cwd, where `@types/node`
|
|
52
|
+
doesn't resolve. Fixed via a one-line ambient declaration in
|
|
53
|
+
`LiveReduce.ts`. No runtime change; `queueMicrotask` is still
|
|
54
|
+
the host-provided global it always was.
|
|
55
|
+
|
|
56
|
+
### Changed
|
|
57
|
+
|
|
58
|
+
- **Updated `LiveSeries` tool comparisons in the docs**
|
|
59
|
+
([#127](https://github.com/pjm17971/pond-ts/pull/127)).
|
|
60
|
+
Tightened the Beam/Flink, PondJS, and pandas comparison tables
|
|
61
|
+
to be technically accurate. Doc prose only; no code change.
|
|
62
|
+
|
|
63
|
+
### Notes
|
|
64
|
+
|
|
65
|
+
- **Captured `@pond-ts/charts` design constraints in PLAN.md**
|
|
66
|
+
([#128](https://github.com/pjm17971/pond-ts/pull/128)). The
|
|
67
|
+
gRPC experiment's M3.5 friction note hit Recharts' SVG render
|
|
68
|
+
cliff at firehose loads (~75-80k SVG nodes per render, ~1 fps
|
|
69
|
+
at 10 hosts × 70k events/s). Four constraints from real
|
|
70
|
+
workload now baked into the plan so the eventual extraction
|
|
71
|
+
starts with the answer key — not new code, just durable
|
|
72
|
+
design capture.
|
|
73
|
+
|
|
14
74
|
## [0.16.0] — 2026-05-06
|
|
15
75
|
|
|
16
76
|
Live-API ergonomic wave. Four PRs:
|
|
@@ -237,6 +297,7 @@ compaction); any downstream code reading `#entries` directly would
|
|
|
237
297
|
break, but those fields are private. Public APIs and types are
|
|
238
298
|
unchanged.
|
|
239
299
|
|
|
300
|
+
[0.16.1]: https://github.com/pjm17971/pond-ts/compare/v0.16.0...v0.16.1
|
|
240
301
|
[0.16.0]: https://github.com/pjm17971/pond-ts/compare/v0.15.2...v0.16.0
|
|
241
302
|
[0.15.2]: https://github.com/pjm17971/pond-ts/compare/v0.15.1...v0.15.2
|
|
242
303
|
|