@jelou/cli 1.90.0 → 1.92.0
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 +31 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jelou/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.92.0",
|
|
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.
|
|
27
|
-
"@jelou/cli-darwin-x64": "1.
|
|
28
|
-
"@jelou/cli-linux-x64": "1.
|
|
29
|
-
"@jelou/cli-linux-arm64": "1.
|
|
30
|
-
"@jelou/cli-win32-x64": "1.
|
|
26
|
+
"@jelou/cli-darwin-arm64": "1.92.0",
|
|
27
|
+
"@jelou/cli-darwin-x64": "1.92.0",
|
|
28
|
+
"@jelou/cli-linux-x64": "1.92.0",
|
|
29
|
+
"@jelou/cli-linux-arm64": "1.92.0",
|
|
30
|
+
"@jelou/cli-win32-x64": "1.92.0"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"jelou",
|
|
@@ -58,25 +58,41 @@
|
|
|
58
58
|
"jelou": {
|
|
59
59
|
"minVersion": "1.89.0",
|
|
60
60
|
"release_notes": {
|
|
61
|
-
"version": "1.
|
|
62
|
-
"date": "2026-08-
|
|
63
|
-
"headline": "
|
|
61
|
+
"version": "1.92.0",
|
|
62
|
+
"date": "2026-08-11",
|
|
63
|
+
"headline": "Three fixes for agents that got stuck mid-task — a lockfile the CLI wrote and then refused to read, an update notice that abandoned your work, and a data-table node that validated clean and saved nothing — plus agents now ask what you mean by \"WhatsApp Flows\" instead of guessing.",
|
|
64
64
|
"highlights": [
|
|
65
65
|
{
|
|
66
|
-
"type": "
|
|
67
|
-
"text": "`jelou
|
|
66
|
+
"type": "fixed",
|
|
67
|
+
"text": "`jelou pull` could write a `jelou.lock` the CLI itself refused to read. A workflow described as `-`, or a value that looks like a number or a date, was written unquoted, so the next command failed on the lockfile instead of doing what you asked. Repairing it by hand then failed an integrity check. Values are now quoted whenever they'd otherwise change meaning, and the \"invalid lockfile\" error tells you to re-pull rather than leaving you to edit it."
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
"type": "
|
|
71
|
-
"text": "
|
|
70
|
+
"type": "fixed",
|
|
71
|
+
"text": "An out-of-date CLI no longer abandons your request. Declining the upgrade — or running somewhere nobody can answer the prompt — used to stop the task and tell you an administrator had to upgrade first, even though the CLI runs fine either way. It now finishes what you asked and notes that write commands may be affected until you upgrade."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"type": "fixed",
|
|
75
|
+
"text": "Data-table steps that were configured wrong now fail validation instead of silently saving nothing. A step carrying its payload under the wrong field, or a create/update/delete with no values or nothing identifying the row, passed validation and then did nothing at runtime — which reached real conversations."
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "fixed",
|
|
79
|
+
"text": "The WhatsApp channel check behind `jelou template` and `jelou campaign` stops answering \"unknown\" every time. It asked the Channels API for 100 channels, which that endpoint rejects over 50, so the request never returned and the check fell into its catch. It now clamps the page size and reports what it found."
|
|
72
80
|
},
|
|
73
81
|
{
|
|
74
82
|
"type": "improved",
|
|
75
|
-
"text": "
|
|
83
|
+
"text": "\"WhatsApp Flows\" means two different things — the Flow assets on your provider, or a step in a workflow that opens one. Agents now ask which you want before building anything, instead of picking one and either leaving a half-configured node on the canvas or listing when you wanted a node."
|
|
76
84
|
},
|
|
77
85
|
{
|
|
78
86
|
"type": "improved",
|
|
79
|
-
"text": "
|
|
87
|
+
"text": "`jelou channels list` takes a search term, passed through to the Channels API — find a channel by name instead of paging toward it."
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "heads_up",
|
|
91
|
+
"text": "Validation now rejects data-table steps whose configuration could never run. If you pull an existing project that already contains one, `jelou workflow validate` will report it. Those steps are already failing in production; the validator simply stopped hiding them."
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"type": "heads_up",
|
|
95
|
+
"text": "`jelou channels list --limit` above 50 is clamped instead of failing. The default is 50, so this only surfaces when a larger page was requested explicitly, and the response reports the page size actually used."
|
|
80
96
|
}
|
|
81
97
|
]
|
|
82
98
|
}
|