agentfootprint 9.94.1 → 9.94.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.
- package/CHANGELOG.md +40 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,46 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [
|
|
8
|
+
## [9.94.2] - 2026-09-12
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **The docs site now runs the lens it documents, on ONE footprintjs.** Docs
|
|
13
|
+
only — nothing under `src/` moved. `docs-next/package.json` had pinned
|
|
14
|
+
`agentfootprint-lens ^0.31.1`, `footprint-explainable-ui ^0.28.0` and
|
|
15
|
+
`footprintjs ^9.10.0` since the 9.x door renames — twenty lens releases
|
|
16
|
+
behind — so the site's live demos had never shown the Served tab, the
|
|
17
|
+
Served graph, Bookmarks or the tag picker (lens 0.47–0.52), and every demo
|
|
18
|
+
bundle carried TWO footprintjs engines: the root's 9.21.1 (the library's
|
|
19
|
+
peer, reached through `agentfootprint: file:..`) beside docs-next's own
|
|
20
|
+
9.10.0, because two node_modules directories are two module paths whatever
|
|
21
|
+
the two versions say. Two engines is not only bytes: a trace the library
|
|
22
|
+
writes with one and the lens reads with the other shares no class, symbol
|
|
23
|
+
or WeakMap. Pins now: lens `^0.52.2`, explainable-ui `^0.38.0` (the lens's
|
|
24
|
+
peer range wants `>=0.28.0 <1.0.0`; ≥0.34 lights the replay chart),
|
|
25
|
+
footprintjs `^9.21.1` — the root's own range. Matching ranges cannot merge
|
|
26
|
+
two directories, and a `file:` link to the root's copy is refused by npm
|
|
27
|
+
(it runs the published package's `prepare` script), so the one-engine rule
|
|
28
|
+
is `next.config.mjs` · `footprintjsAliases`: every browser request for
|
|
29
|
+
`footprintjs` or one of its doors is pointed at the root's copy, the doors
|
|
30
|
+
read from the package's own `exports`. No demo prop moved across
|
|
31
|
+
0.31→0.52; the demos typecheck and run unchanged, and the Lens demo now
|
|
32
|
+
shows the rail (What happened · Served · Bookmarks), with every receipt
|
|
33
|
+
reading Verified — the one-engine identity proof in itself. Measured, same
|
|
34
|
+
build, three ways: 382.4 KB gzip on the old Lens with two engines; 514.0 KB
|
|
35
|
+
on the current Lens as first pinned — the dedupe itself was −3.8 KB and the
|
|
36
|
+
rest was two LENS defects the measurement exposed (no `sideEffects` flag,
|
|
37
|
+
so a page mounting one component carried the whole Lens; and a bug-report
|
|
38
|
+
button that imported the entire `agentfootprint/observe` door as a
|
|
39
|
+
namespace object); agentfootprint-lens 0.52.2 fixed both the same day
|
|
40
|
+
(audited flag, door opened on click), and the site re-measured on it at
|
|
41
|
+
413.8 KB across 15 assets, one engine. So the whole Served tab, Served
|
|
42
|
+
graph, bookmarks and tag picker the site now shows cost 31 KB over the old
|
|
43
|
+
baseline. The deferred-demo ceiling is set at 422 KB (~2% over) with the
|
|
44
|
+
three-way story beside it. Also fixed: the webpack stats
|
|
45
|
+
the module-breakdown tool reads (`DOCS_WEBPACK_STATS=1`) omitted every
|
|
46
|
+
cached module, so a second build in a row reported 0 modules —
|
|
47
|
+
`cachedModules: true`.
|
|
9
48
|
|
|
10
49
|
## [9.94.1] - 2026-09-11
|
|
11
50
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentfootprint",
|
|
3
|
-
"version": "9.94.
|
|
3
|
+
"version": "9.94.2",
|
|
4
4
|
"description": "The explainable agent framework — backtrack a wrong answer to the exact context that caused it (evidence, not guesses). Built on footprintjs.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|