@yemi33/minions 0.1.857 → 0.1.858
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 +2 -1
- package/dashboard/js/render-pipelines.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.858 (2026-04-11)
|
|
4
4
|
|
|
5
5
|
### Fixes
|
|
6
|
+
- _continuePipeline now calls refresh() to update card list
|
|
6
7
|
- pipeline modal refresh was silently broken — API returns array not object
|
|
7
8
|
- pipeline modal now auto-updates on all action buttons
|
|
8
9
|
- pipeline modal buttons stuck on loading state after success
|
|
@@ -502,7 +502,7 @@ async function _continuePipeline(id, stageId, btn) {
|
|
|
502
502
|
var res = await fetch('/api/pipelines/continue', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ id: id, stageId: stageId }) });
|
|
503
503
|
if (res.ok) {
|
|
504
504
|
if (btn) { btn.textContent = '\u2713 Continued'; btn.style.color = 'var(--green)'; btn.style.borderColor = 'var(--green)'; btn.style.opacity = '1'; }
|
|
505
|
-
|
|
505
|
+
refresh();
|
|
506
506
|
await _refreshPipelineDetail(id);
|
|
507
507
|
} else {
|
|
508
508
|
var d = await res.json().catch(function() { return {}; }); showToast('cmd-toast', 'Failed: ' + (d.error || 'unknown'), false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yemi33/minions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.858",
|
|
4
4
|
"description": "Multi-agent AI dev team that runs from ~/.minions/ — five autonomous agents share a single engine, dashboard, and knowledge base",
|
|
5
5
|
"bin": {
|
|
6
6
|
"minions": "bin/minions.js"
|