Hermes 284313f908
Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

486 lines
11 KiB
JSON

[
{
"id": "T001",
"description": "Migration: schedule table no longer enforces one record per workflow_id",
"implemented": true,
"featureIds": [
"F002"
]
},
{
"id": "T002",
"description": "Migration: existing schedule rows survive the many-per-workflow migration with intact runner state",
"implemented": true,
"featureIds": [
"F002",
"F005"
]
},
{
"id": "T003",
"description": "DB: schedule create persists required name",
"implemented": true,
"featureIds": [
"F003",
"F006"
]
},
{
"id": "T004",
"description": "DB: schedule create rejects empty name",
"implemented": true,
"featureIds": [
"F003",
"F008"
]
},
{
"id": "T005",
"description": "DB: schedule create persists payload_json",
"implemented": true,
"featureIds": [
"F004",
"F006"
]
},
{
"id": "T006",
"description": "DB: schedule update persists modified payload_json",
"implemented": true,
"featureIds": [
"F004",
"F009"
]
},
{
"id": "T007",
"description": "Action: global list returns schedules across workflows for the tenant",
"implemented": true,
"featureIds": [
"F006",
"F007"
]
},
{
"id": "T008",
"description": "Action: get schedule returns schedule payload and timing data for editing",
"implemented": true,
"featureIds": [
"F006",
"F007"
]
},
{
"id": "T009",
"description": "Action: create schedule succeeds for a published workflow with pinned payload schema and valid one-time payload",
"implemented": true,
"featureIds": [
"F008",
"F012",
"F013",
"F014"
]
},
{
"id": "T010",
"description": "Action: create schedule succeeds for a published workflow with pinned payload schema and valid recurring payload",
"implemented": true,
"featureIds": [
"F008",
"F012",
"F013",
"F014"
]
},
{
"id": "T011",
"description": "Action: edit schedule updates runAt and payload for a one-time schedule",
"implemented": true,
"featureIds": [
"F009",
"F015"
]
},
{
"id": "T012",
"description": "Action: edit schedule updates cron, timezone, and payload for a recurring schedule",
"implemented": true,
"featureIds": [
"F009",
"F015"
]
},
{
"id": "T013",
"description": "Action: pause schedule clears or disables runner registration without deleting the record",
"implemented": true,
"featureIds": [
"F010"
]
},
{
"id": "T014",
"description": "Action: resume schedule re-registers the runner using current schedule payload and timing",
"implemented": true,
"featureIds": [
"F010"
]
},
{
"id": "T015",
"description": "Action: delete schedule removes the schedule record and associated runner registration",
"implemented": true,
"featureIds": [
"F011"
]
},
{
"id": "T016",
"description": "Guard: create schedule fails when the workflow has no published version",
"implemented": true,
"featureIds": [
"F012"
]
},
{
"id": "T017",
"description": "Guard: create schedule fails when the workflow payload schema mode is inferred",
"implemented": true,
"featureIds": [
"F013"
]
},
{
"id": "T018",
"description": "Guard: edit schedule fails when the target workflow is not schedulable due to inferred schema mode",
"implemented": true,
"featureIds": [
"F013",
"F015"
]
},
{
"id": "T019",
"description": "Validation: create schedule returns schema issues for invalid payload_json",
"implemented": true,
"featureIds": [
"F014"
]
},
{
"id": "T020",
"description": "Validation: edit schedule returns schema issues for invalid payload_json",
"implemented": true,
"featureIds": [
"F015"
]
},
{
"id": "T021",
"description": "Publish lifecycle: valid schedules rebind to the newest published workflow version",
"implemented": true,
"featureIds": [
"F016",
"F017"
]
},
{
"id": "T022",
"description": "Publish lifecycle: invalid schedules are preserved and marked non-runnable when the new published version rejects their saved payload",
"implemented": true,
"featureIds": [
"F016",
"F018"
]
},
{
"id": "T023",
"description": "Publish lifecycle: revalidation runs for every schedule attached to the workflow, not just one schedule",
"implemented": true,
"featureIds": [
"F016",
"F017"
]
},
{
"id": "T024",
"description": "Publish lifecycle: a workflow with mixed valid and invalid schedules only rebinds the valid ones",
"implemented": true,
"featureIds": [
"F016",
"F017",
"F018"
]
},
{
"id": "T025",
"description": "Runner: one-time schedule launch passes schedule payload_json as workflow input_json",
"implemented": true,
"featureIds": [
"F019"
]
},
{
"id": "T026",
"description": "Runner: recurring schedule launch passes schedule payload_json as workflow input_json",
"implemented": true,
"featureIds": [
"F019"
]
},
{
"id": "T027",
"description": "Runner: schedule launch still stores schedule provenance metadata on the workflow run",
"implemented": true,
"featureIds": [
"F020"
]
},
{
"id": "T028",
"description": "Runner: invalid saved payload at fire time does not start execution and records schedule error state",
"implemented": true,
"featureIds": [
"F018",
"F019",
"F020"
]
},
{
"id": "T029",
"description": "UI: Automation Hub shows a Schedules tab and route state",
"implemented": true,
"featureIds": [
"F021"
]
},
{
"id": "T030",
"description": "UI: schedules list shows schedule name, workflow, trigger type, timing, status, and error columns",
"implemented": true,
"featureIds": [
"F022"
]
},
{
"id": "T031",
"description": "UI: schedules list filters by workflow",
"implemented": true,
"featureIds": [
"F023"
]
},
{
"id": "T032",
"description": "UI: schedules list filters by trigger type",
"implemented": true,
"featureIds": [
"F023"
]
},
{
"id": "T033",
"description": "UI: schedules list filters by status",
"implemented": true,
"featureIds": [
"F023"
]
},
{
"id": "T034",
"description": "UI: schedules list text search matches schedule name and workflow name",
"implemented": true,
"featureIds": [
"F023"
]
},
{
"id": "T035",
"description": "UI: schedules list row action opens edit dialog with current values",
"implemented": true,
"featureIds": [
"F024",
"F025"
]
},
{
"id": "T036",
"description": "UI: schedules list row action pauses a currently enabled schedule",
"implemented": true,
"featureIds": [
"F024",
"F010"
]
},
{
"id": "T037",
"description": "UI: schedules list row action resumes a paused schedule",
"implemented": true,
"featureIds": [
"F024",
"F010"
]
},
{
"id": "T038",
"description": "UI: schedules list row action deletes a schedule after confirmation",
"implemented": true,
"featureIds": [
"F024",
"F011"
]
},
{
"id": "T039",
"description": "UI: create dialog requires workflow selection, schedule name, and trigger type before save",
"implemented": true,
"featureIds": [
"F025"
]
},
{
"id": "T040",
"description": "UI: create dialog shows runAt input for one-time schedules",
"implemented": true,
"featureIds": [
"F026"
]
},
{
"id": "T041",
"description": "UI: create dialog shows cron and timezone inputs for recurring schedules",
"implemented": true,
"featureIds": [
"F027"
]
},
{
"id": "T042",
"description": "UI: form mode renders schema-driven fields for payload editing",
"implemented": true,
"featureIds": [
"F028"
]
},
{
"id": "T043",
"description": "UI: JSON mode allows raw payload editing for schedules",
"implemented": true,
"featureIds": [
"F029"
]
},
{
"id": "T044",
"description": "UI: invalid payload in form mode blocks save and shows field-level issues",
"implemented": true,
"featureIds": [
"F028",
"F030"
]
},
{
"id": "T045",
"description": "UI: invalid payload in JSON mode blocks save and shows schema issues",
"implemented": true,
"featureIds": [
"F029",
"F030"
]
},
{
"id": "T046",
"description": "UI: schedules cannot be created for inferred-schema workflows and the dialog explains why",
"implemented": true,
"featureIds": [
"F013",
"F030"
]
},
{
"id": "T047",
"description": "Workflow editor: trigger selector only shows No trigger and Event",
"implemented": true,
"featureIds": [
"F031"
]
},
{
"id": "T048",
"description": "Workflow editor: one-time and recurring inline trigger panels are removed",
"implemented": true,
"featureIds": [
"F032"
]
},
{
"id": "T049",
"description": "Workflow editor: no-trigger workflow still allows manual run using the existing run dialog",
"implemented": true,
"featureIds": [
"F033"
]
},
{
"id": "T050",
"description": "Workflow editor: event-trigger workflow still shows event catalog and mapping controls",
"implemented": true,
"featureIds": [
"F034"
]
},
{
"id": "T051",
"description": "Workflow editor: workflow-context link opens the schedules screen filtered to the current workflow",
"implemented": true,
"featureIds": [
"F035"
]
},
{
"id": "T052",
"description": "Permissions: users without workflow manage permission cannot create schedules",
"implemented": true,
"featureIds": [
"F036"
]
},
{
"id": "T053",
"description": "Permissions: users without workflow manage permission cannot edit, pause, resume, or delete schedules",
"implemented": true,
"featureIds": [
"F036"
]
},
{
"id": "T054",
"description": "Tenant isolation: schedule list only returns schedules for the current tenant",
"implemented": true,
"featureIds": [
"F036",
"F007"
]
},
{
"id": "T055",
"description": "DB integration: happy path creates a recurring schedule row with payload_json and runner identifiers in a migrated test database",
"implemented": true,
"featureIds": [
"F002",
"F004",
"F006",
"F008"
]
},
{
"id": "T056",
"description": "DB integration: failure path rejects invalid payload_json against the real migrated schedule schema and leaves no row behind",
"implemented": true,
"featureIds": [
"F014",
"F015"
]
}
]