agent-remnote 1.4.0 → 1.5.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 +28 -0
- package/dist/main.js +2599 -1595
- package/package.json +1 -1
- package/plugin-artifacts/PluginZip.zip +0 -0
- package/plugin-artifacts/dist/build-info.json +3 -3
- package/plugin-artifacts/dist/index-sandbox.js +1 -1
- package/plugin-artifacts/dist/index.js +1 -1
- package/plugin-artifacts/dist/{indexPlugin-BOnVUzfc.js → indexPlugin-Cx5F4LoS.js} +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# agent-remnote
|
|
2
2
|
|
|
3
|
+
## 1.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 46fbcb0: Make `doctor --fix` auto-heal trusted live runtime build mismatches.
|
|
8
|
+
|
|
9
|
+
`doctor --fix` now safely restarts trusted daemon, API, and plugin runtimes when
|
|
10
|
+
their live build metadata is clearly stale, while continuing to clean stale
|
|
11
|
+
pid/state artifacts and preserving the existing guardrails for unsafe cases.
|
|
12
|
+
|
|
13
|
+
It also reads plugin artifact mismatch diagnostics from plugin state metadata so
|
|
14
|
+
the reported `plugin-artifact` status matches the actually served plugin build.
|
|
15
|
+
|
|
16
|
+
## 1.5.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 77d941b: Add a safe `doctor --fix` repair flow and harden packaged runtime behavior.
|
|
21
|
+
|
|
22
|
+
This release adds a repair mode for `doctor` that can clean stale runtime
|
|
23
|
+
artifacts, rewrite supported user config shapes into canonical keys, and report
|
|
24
|
+
restart guidance without auto-restarting services.
|
|
25
|
+
|
|
26
|
+
It also hardens runtime lifecycle handling by tightening PID trust checks,
|
|
27
|
+
cleaning managed state files more safely, improving installed-package behavior
|
|
28
|
+
for bundled scenarios and plugin artifacts, and keeping JSON-oriented flows such
|
|
29
|
+
as `search --json` stable in packaged layouts.
|
|
30
|
+
|
|
3
31
|
## 1.4.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|