chore(release): version packages - #745
Open
frahlg wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
July 31, 2026 13:36
3396e83 to
32e46a1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
ftw@1.15.0
Minor Changes
4212dbb: Help report:
GET /api/support/reportreturns a single Markdown filedescribing what FTW is doing and why, reachable from a "Something looks
wrong?" button under the plan chart and from any driver's Diagnose modal.
It exists because answering "why is it discharging when the plan says
charge?" currently takes a screenshot round-trip per question — one thread
needed nine of them to establish that a load forecast said 383 W while the
house was drawing 7.9 kW.
The file opens with
Findings: automated checks written in the order aperson would run them — stale plan, fallback solver, offline or faulted
devices, active safety limits, and a forecast-versus-reality comparison for
both load and solar. Under that come the live site state, the plan slot
covering this moment (stated before anything about the next one, since
confusing the two is what sends these threads sideways), the surrounding
slots with the solver's reasoning, forecast accuracy, driver health,
component versions, and the recent warning and error log.
It is one file rather than a bundle because people paste it into a chat and
ask for help there; a tarball of JSON does not survive that. The plan window
is trimmed to a few hours either side of now and logs to warnings and errors,
which keeps it small enough to upload and to read in full.
/api/support/dumpis unchanged and remains the deep bundle for cases thereport cannot close.
Patch Changes
41e59ef: Load model: replace the MAE-band outlier filter with a physical ceiling
taken from the main fuse. The band rejected the upper half of the real
load distribution, and could lock the model out of a level it had not seen
before, permanently.
A rejected sample updates neither
MAEnorSamples, so the bandmax(MAE × 10, 200)never grew in response to being persistently wrong.Measured on a clean model: an hour at 400 W left MAE at 57 W and the band
at 570 W; a following week at 5 kW was rejected in full, 100% of samples,
and the prediction never moved off 1794 W.
The band was the wrong instrument, not merely mistuned. Household load is
multimodal — a few hundred watts of baseline, then 11 kW when the sauna,
oven and car overlap — and nothing about a residual's size separates
"unusual but real" from "wrong". A band fitted to the quiet hours always
excludes the busy ones. Short-term measurement noise is already handled a
layer down, by the Kalman filter in telemetry whose smoothed output this
model reads, so the second filter was both harmful and redundant.
What remains is the rejection physics licenses: a house cannot draw more
than its main fuse passes. The ceiling is
fuse capacity × 1.25, passed infrom configuration and never derived from what the model has learned, so it
holds from the first sample and cannot be talked down by a model that has
mislearned. With no fuse configured the check disables itself rather than
inventing a limit.
A sustained shift to a new load level is now learned directly. A one-minute
spike still trains — it is real consumption — and the bucket EMA damps it
to a tenth of the gap, which is what keeps an hour from being defined by
its loudest minute.