@jelou/cli 1.37.0 → 1.37.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/package.json +32 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.37.
|
|
3
|
+
"version": "1.37.1",
|
|
4
4
|
"description": "Build AI agents on the Jelou platform — from your terminal or your AI editor.",
|
|
5
5
|
"author": "Jelou Inc. (https://jelou.ai)",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"THIRD_PARTY_NOTICES.md"
|
|
24
24
|
],
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@jelou/cli-darwin-arm64": "1.37.
|
|
27
|
-
"@jelou/cli-darwin-x64": "1.37.
|
|
28
|
-
"@jelou/cli-linux-x64": "1.37.
|
|
29
|
-
"@jelou/cli-linux-arm64": "1.37.
|
|
30
|
-
"@jelou/cli-win32-x64": "1.37.
|
|
26
|
+
"@jelou/cli-darwin-arm64": "1.37.1",
|
|
27
|
+
"@jelou/cli-darwin-x64": "1.37.1",
|
|
28
|
+
"@jelou/cli-linux-x64": "1.37.1",
|
|
29
|
+
"@jelou/cli-linux-arm64": "1.37.1",
|
|
30
|
+
"@jelou/cli-win32-x64": "1.37.1"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"jelou",
|
|
@@ -56,27 +56,43 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"jelou": {
|
|
59
|
-
"minVersion": "1.37.
|
|
59
|
+
"minVersion": "1.37.1",
|
|
60
60
|
"release_notes": {
|
|
61
|
-
"version": "1.37.
|
|
62
|
-
"date": "2026-05-
|
|
63
|
-
"headline": "
|
|
61
|
+
"version": "1.37.1",
|
|
62
|
+
"date": "2026-05-27",
|
|
63
|
+
"headline": "Fixed `meta.update_available.below_floor` dropping on error exits and env-var bypasses.",
|
|
64
64
|
"highlights": [
|
|
65
65
|
{
|
|
66
|
-
"type": "
|
|
67
|
-
"text": "
|
|
66
|
+
"type": "fixed",
|
|
67
|
+
"text": "`meta.update_available.below_floor: true` is now stamped on every agent envelope when the CLI is below the floor — including error responses (auth, input, validation). Previously ~187 `output.failWith` callsites silently terminated before the envelope meta was attached."
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"type": "
|
|
71
|
-
"text": "
|
|
70
|
+
"type": "fixed",
|
|
71
|
+
"text": "`JELOU_NO_UPDATE_CHECK=1` and `JELOU_ALLOW_OUTDATED=1` no longer silence the floor signal. Both env vars remain valid for skipping network probes / suppressing stderr noise; the agent-visible flag is unconditional now."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"type": "fixed",
|
|
75
|
+
"text": "Hostile or middleman'd npm registry payloads with an unterminated OSC hyperlink (e.g. `\\x1b]8;;<URL>` with no `\\x07` terminator) can no longer inject visible attacker URLs into the update prompt's release-notes display."
|
|
72
76
|
},
|
|
73
77
|
{
|
|
74
78
|
"type": "new",
|
|
75
|
-
"text": "
|
|
79
|
+
"text": "`meta.update_available.min_version` field on the agent envelope when below floor — distinguishes the published `minVersion` floor from `latest` (registry's most-recent build). Agents can now render \"upgrade to at least X\" accurately."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "improved",
|
|
83
|
+
"text": "Stderr footer now reads `Update required: X → Y (below minimum version Z)` when the CLI is below floor (previously used identical wording to a routine soft update)."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"type": "improved",
|
|
87
|
+
"text": "Audit log line under `~/.jelou/hard-stops.log` restored to `blocked outdated currentVersion=...` prefix for back-compat with anchored `^blocked` ops dashboards."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "heads_up",
|
|
91
|
+
"text": "`minVersion` floor moves from `1.37.0` to `1.37.1`. Every CLI below `1.37.1` will see the soft \"Update available\" prompt on next invocation (within ~5 min cache TTL); `--json`/`--agent` envelopes also stamp `below_floor: true`. The CLI still runs either way — nothing is blocked."
|
|
76
92
|
},
|
|
77
93
|
{
|
|
78
94
|
"type": "heads_up",
|
|
79
|
-
"text": "
|
|
95
|
+
"text": "`JELOU_ALLOW_OUTDATED=1` is now a no-op (emits a once-per-machine deprecation note on first use). Safe to remove from `.zshrc` / CI configs."
|
|
80
96
|
}
|
|
81
97
|
]
|
|
82
98
|
}
|