@atolis-hq/wake 0.2.45 → 0.2.46

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.
@@ -400,7 +400,17 @@ export function createTickRunner(deps) {
400
400
  return watch;
401
401
  }
402
402
  async function markPendingActionableIssues(projections) {
403
+ const activeRunWorkItemKeys = new Set();
404
+ const now = deps.clock.now();
405
+ for (const record of await deps.stateStore.listRunRecords()) {
406
+ if (record.status === 'running' && (await isRunningRecordActive(record, now))) {
407
+ activeRunWorkItemKeys.add(record.workItemKey);
408
+ }
409
+ }
403
410
  for (const projection of projections) {
411
+ if (activeRunWorkItemKeys.has(projection.workItemKey)) {
412
+ continue;
413
+ }
404
414
  const statusLabel = statusLabelForStage(projection.wake.stage);
405
415
  const stageLabel = stageLabelForStage(projection.wake.stage);
406
416
  const workflowLabel = workflowLabelForWorkflowName(workflowNameForProjection(projection, deps.config));
@@ -124,4 +124,4 @@ export function resolveWakeVersion(options = {}) {
124
124
  }
125
125
  return '0.1.0-dev';
126
126
  }
127
- export const wakeVersion = "gee0e5b1";
127
+ export const wakeVersion = "g580cc47";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atolis-hq/wake",
3
- "version": "0.2.45",
3
+ "version": "0.2.46",
4
4
  "description": "Local autonomous agent control plane for software development",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {