synartesis 0.8.5 → 0.8.6
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 +31 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
What changed, and why it mattered. Dates are release dates.
|
|
4
4
|
|
|
5
|
+
## 0.8.6 — 2026-09-22
|
|
6
|
+
|
|
7
|
+
A test I added in 0.8.5 failed the release build. The published package was
|
|
8
|
+
never affected -- tests do not ship -- but the tag produced no GitHub release
|
|
9
|
+
and no installers, so this is 0.8.5 with that test written properly.
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- **The new screen budget asserted milliseconds, and milliseconds are a
|
|
14
|
+
property of the machine.** `tests/screen-budget.test.ts` held a console
|
|
15
|
+
frame and a watch frame under a stated number of milliseconds. That passed
|
|
16
|
+
on the machine it was written on and failed on a CI runner twenty minutes
|
|
17
|
+
later, which is several times slower and shared -- the gate in `release.yml`
|
|
18
|
+
went red and 0.8.5 never got its installers.
|
|
19
|
+
|
|
20
|
+
It asserts two machine-independent things now. A ratio, measured back to
|
|
21
|
+
back on whatever is running: answering from the indexes against answering
|
|
22
|
+
by reading every action in every run, which is about 36x here and has to
|
|
23
|
+
clear 4, because going back to reading the rows scores 1. And a query plan,
|
|
24
|
+
which is a fact rather than a duration -- the watch screen's newest-first
|
|
25
|
+
read has to name the index, and must not say `USE TEMP B-TREE FOR ORDER BY`,
|
|
26
|
+
which is exactly what it said before 0.8.5 added `actions_recent`.
|
|
27
|
+
|
|
28
|
+
It also seeds its four thousand actions once for the file rather than once
|
|
29
|
+
per test, which was most of the runtime and bought nothing: all three
|
|
30
|
+
questions are read-only.
|
|
31
|
+
|
|
32
|
+
The correctness half is new and is the part worth keeping. The two ways of
|
|
33
|
+
counting -- from the indexes and from the rows -- must agree, because a
|
|
34
|
+
frame that is fast and wrong is worse than the slow one it replaced.
|
|
35
|
+
|
|
5
36
|
## 0.8.5 — 2026-09-22
|
|
6
37
|
|
|
7
38
|
Three states you could get into and not get out of, two screens that read the
|