@calmo/task-runner 3.4.0 → 3.5.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.
Files changed (95) hide show
  1. package/.github/dependabot.yml +7 -7
  2. package/.github/workflows/ci.yml +4 -4
  3. package/.jules/backlog_maniac.md +1 -0
  4. package/.jules/nexus.md +1 -0
  5. package/.jules/sentinel.md +1 -0
  6. package/.releaserc.json +2 -7
  7. package/AGENTS.md +21 -16
  8. package/CHANGELOG.md +192 -174
  9. package/README.md +95 -88
  10. package/coverage/coverage-final.json +9 -9
  11. package/coverage/index.html +9 -9
  12. package/coverage/lcov-report/index.html +9 -9
  13. package/coverage/lcov-report/src/EventBus.ts.html +30 -24
  14. package/coverage/lcov-report/src/TaskGraphValidationError.ts.html +12 -3
  15. package/coverage/lcov-report/src/TaskGraphValidator.ts.html +152 -137
  16. package/coverage/lcov-report/src/TaskRunner.ts.html +48 -45
  17. package/coverage/lcov-report/src/TaskRunnerBuilder.ts.html +29 -5
  18. package/coverage/lcov-report/src/TaskRunnerExecutionConfig.ts.html +1 -1
  19. package/coverage/lcov-report/src/TaskStateManager.ts.html +82 -52
  20. package/coverage/lcov-report/src/WorkflowExecutor.ts.html +210 -66
  21. package/coverage/lcov-report/src/contracts/RunnerEvents.ts.html +1 -1
  22. package/coverage/lcov-report/src/contracts/index.html +1 -1
  23. package/coverage/lcov-report/src/index.html +16 -16
  24. package/coverage/lcov-report/src/strategies/DryRunExecutionStrategy.ts.html +4 -4
  25. package/coverage/lcov-report/src/strategies/RetryingExecutionStrategy.ts.html +29 -11
  26. package/coverage/lcov-report/src/strategies/StandardExecutionStrategy.ts.html +7 -7
  27. package/coverage/lcov-report/src/strategies/index.html +1 -1
  28. package/coverage/lcov.info +426 -383
  29. package/coverage/src/EventBus.ts.html +30 -24
  30. package/coverage/src/TaskGraphValidationError.ts.html +12 -3
  31. package/coverage/src/TaskGraphValidator.ts.html +152 -137
  32. package/coverage/src/TaskRunner.ts.html +48 -45
  33. package/coverage/src/TaskRunnerBuilder.ts.html +29 -5
  34. package/coverage/src/TaskRunnerExecutionConfig.ts.html +1 -1
  35. package/coverage/src/TaskStateManager.ts.html +82 -52
  36. package/coverage/src/WorkflowExecutor.ts.html +210 -66
  37. package/coverage/src/contracts/RunnerEvents.ts.html +1 -1
  38. package/coverage/src/contracts/index.html +1 -1
  39. package/coverage/src/index.html +16 -16
  40. package/coverage/src/strategies/DryRunExecutionStrategy.ts.html +4 -4
  41. package/coverage/src/strategies/RetryingExecutionStrategy.ts.html +29 -11
  42. package/coverage/src/strategies/StandardExecutionStrategy.ts.html +7 -7
  43. package/coverage/src/strategies/index.html +1 -1
  44. package/dist/EventBus.js +13 -11
  45. package/dist/EventBus.js.map +1 -1
  46. package/dist/TaskGraphValidationError.js.map +1 -1
  47. package/dist/TaskGraphValidator.js +9 -9
  48. package/dist/TaskGraphValidator.js.map +1 -1
  49. package/dist/TaskRunner.js.map +1 -1
  50. package/dist/TaskRunnerBuilder.js.map +1 -1
  51. package/dist/TaskStateManager.d.ts +6 -0
  52. package/dist/TaskStateManager.js +11 -2
  53. package/dist/TaskStateManager.js.map +1 -1
  54. package/dist/TaskStep.d.ts +5 -0
  55. package/dist/WorkflowExecutor.js +49 -7
  56. package/dist/WorkflowExecutor.js.map +1 -1
  57. package/dist/strategies/RetryingExecutionStrategy.js +3 -1
  58. package/dist/strategies/RetryingExecutionStrategy.js.map +1 -1
  59. package/dist/strategies/StandardExecutionStrategy.js +1 -1
  60. package/dist/strategies/StandardExecutionStrategy.js.map +1 -1
  61. package/openspec/AGENTS.md +81 -15
  62. package/openspec/changes/archive/2026-01-18-add-concurrency-control/proposal.md +7 -4
  63. package/openspec/changes/archive/2026-01-18-add-concurrency-control/tasks.md +1 -0
  64. package/openspec/changes/archive/2026-01-18-add-external-task-cancellation/proposal.md +4 -1
  65. package/openspec/changes/archive/2026-01-18-add-external-task-cancellation/tasks.md +2 -1
  66. package/openspec/changes/archive/2026-01-18-add-integration-tests/proposal.md +3 -0
  67. package/openspec/changes/archive/2026-01-18-add-integration-tests/tasks.md +1 -0
  68. package/openspec/changes/archive/2026-01-18-add-task-retry-policy/proposal.md +3 -0
  69. package/openspec/changes/archive/2026-01-18-add-task-retry-policy/tasks.md +1 -0
  70. package/openspec/changes/archive/2026-01-18-add-workflow-preview/proposal.md +3 -0
  71. package/openspec/changes/archive/2026-01-18-add-workflow-preview/tasks.md +1 -0
  72. package/openspec/changes/archive/2026-01-18-feat-conditional-execution/proposal.md +35 -0
  73. package/openspec/changes/archive/2026-01-18-feat-conditional-execution/tasks.md +32 -0
  74. package/openspec/changes/archive/2026-01-18-refactor-core-architecture/proposal.md +3 -0
  75. package/openspec/changes/archive/2026-01-18-refactor-core-architecture/tasks.md +1 -0
  76. package/openspec/changes/feat-per-task-timeout/proposal.md +11 -6
  77. package/openspec/changes/feat-per-task-timeout/tasks.md +1 -1
  78. package/openspec/project.md +21 -15
  79. package/package.json +2 -1
  80. package/src/EventBus.ts +18 -16
  81. package/src/TaskGraph.ts +8 -8
  82. package/src/TaskGraphValidationError.ts +4 -1
  83. package/src/TaskGraphValidator.ts +148 -143
  84. package/src/TaskRunner.ts +42 -41
  85. package/src/TaskRunnerBuilder.ts +11 -3
  86. package/src/TaskStateManager.ts +12 -2
  87. package/src/TaskStep.ts +6 -0
  88. package/src/WorkflowExecutor.ts +63 -15
  89. package/src/contracts/ITaskGraphValidator.ts +12 -12
  90. package/src/contracts/ValidationError.ts +6 -6
  91. package/src/contracts/ValidationResult.ts +4 -4
  92. package/src/strategies/DryRunExecutionStrategy.ts +3 -3
  93. package/src/strategies/RetryingExecutionStrategy.ts +15 -9
  94. package/src/strategies/StandardExecutionStrategy.ts +4 -4
  95. package/test-report.xml +132 -108
package/CHANGELOG.md CHANGED
@@ -1,218 +1,236 @@
1
+ ## 3.5.0 (2026-01-18)
2
+
3
+ * Merge pull request #69 from thalesraymond/feat/conditional-execution ([dd1dd8d](https://github.com/thalesraymond/task-runner/commit/dd1dd8d)), closes [#69](https://github.com/thalesraymond/task-runner/issues/69)
4
+ * Update README.md ([8808f94](https://github.com/thalesraymond/task-runner/commit/8808f94))
5
+ * docs: ✏️ archive conditional specs since its implemented ([b3db067](https://github.com/thalesraymond/task-runner/commit/b3db067))
6
+ * docs: ✏️ conditional execution spec ([5a670c4](https://github.com/thalesraymond/task-runner/commit/5a670c4))
7
+ * docs: ✏️ fix typo ([d969ff5](https://github.com/thalesraymond/task-runner/commit/d969ff5))
8
+ * docs: ✏️ rewriting readme with latest changes ([c968fc3](https://github.com/thalesraymond/task-runner/commit/c968fc3))
9
+ * docs: ✏️ update readme with example of conditional execution ([da9a818](https://github.com/thalesraymond/task-runner/commit/da9a818))
10
+ * feat: 🎸 new conditional execution feature ([e936ad7](https://github.com/thalesraymond/task-runner/commit/e936ad7))
11
+ * chore: 🤖 add AI skills ([5feacc6](https://github.com/thalesraymond/task-runner/commit/5feacc6))
12
+ * chore: 🤖 removed skill md file, general skills moved to workspa ([5a8bd0e](https://github.com/thalesraymond/task-runner/commit/5a8bd0e))
13
+ * chore: 🤖 removed workspace skills ([e819e00](https://github.com/thalesraymond/task-runner/commit/e819e00))
14
+
15
+ ## <small>3.4.1 (2026-01-18)</small>
16
+
17
+ * Merge pull request #65 from thalesraymond/perf/async-event-listeners-3002139613350975332 ([77edbc7](https://github.com/thalesraymond/task-runner/commit/77edbc7)), closes [#65](https://github.com/thalesraymond/task-runner/issues/65)
18
+ * perf: Make event listeners async to prevent blocking ([1f8728f](https://github.com/thalesraymond/task-runner/commit/1f8728f))
19
+ * perf: Make event listeners async to prevent blocking ([a52f8d0](https://github.com/thalesraymond/task-runner/commit/a52f8d0))
20
+
1
21
  ## 3.4.0 (2026-01-18)
2
22
 
3
- * Merge branch 'main' into backlog-maniac/task-graph-validation-error-13695085329883636026 ([82584ff](https://github.com/thalesraymond/task-runner/commit/82584ff))
4
- * Merge branch 'main' into backlog-maniac/task-graph-validation-error-13695085329883636026 ([a0e6795](https://github.com/thalesraymond/task-runner/commit/a0e6795))
5
- * Merge branch 'main' into backlog-maniac/task-graph-validation-error-13695085329883636026 ([a92ee6f](https://github.com/thalesraymond/task-runner/commit/a92ee6f))
6
- * Merge pull request #62 from thalesraymond/backlog-maniac/task-graph-validation-error-136950853298836 ([e19ea32](https://github.com/thalesraymond/task-runner/commit/e19ea32)), closes [#62](https://github.com/thalesraymond/task-runner/issues/62)
7
- * Update tests/TaskRunner.test.ts ([3158486](https://github.com/thalesraymond/task-runner/commit/3158486))
8
- * docs: ✏️ archive done spc ([bc4d58b](https://github.com/thalesraymond/task-runner/commit/bc4d58b))
9
- * feat: throw TaskGraphValidationError on validation failure ([35a4e91](https://github.com/thalesraymond/task-runner/commit/35a4e91))
23
+ - Merge branch 'main' into backlog-maniac/task-graph-validation-error-13695085329883636026 ([82584ff](https://github.com/thalesraymond/task-runner/commit/82584ff))
24
+ - Merge branch 'main' into backlog-maniac/task-graph-validation-error-13695085329883636026 ([a0e6795](https://github.com/thalesraymond/task-runner/commit/a0e6795))
25
+ - Merge branch 'main' into backlog-maniac/task-graph-validation-error-13695085329883636026 ([a92ee6f](https://github.com/thalesraymond/task-runner/commit/a92ee6f))
26
+ - Merge pull request #62 from thalesraymond/backlog-maniac/task-graph-validation-error-136950853298836 ([e19ea32](https://github.com/thalesraymond/task-runner/commit/e19ea32)), closes [#62](https://github.com/thalesraymond/task-runner/issues/62)
27
+ - Update tests/TaskRunner.test.ts ([3158486](https://github.com/thalesraymond/task-runner/commit/3158486))
28
+ - docs: ✏️ archive done spc ([bc4d58b](https://github.com/thalesraymond/task-runner/commit/bc4d58b))
29
+ - feat: throw TaskGraphValidationError on validation failure ([35a4e91](https://github.com/thalesraymond/task-runner/commit/35a4e91))
10
30
 
11
31
  ## 3.3.0 (2026-01-18)
12
32
 
13
- * Merge branch 'main' into feat/concurrency-control-5339998093271172305 ([9fbb19b](https://github.com/thalesraymond/task-runner/commit/9fbb19b))
14
- * Merge branch 'main' into feat/concurrency-control-5339998093271172305 ([5ee9c84](https://github.com/thalesraymond/task-runner/commit/5ee9c84))
15
- * Merge pull request #63 from thalesraymond/feat/concurrency-control-5339998093271172305 ([ef64606](https://github.com/thalesraymond/task-runner/commit/ef64606)), closes [#63](https://github.com/thalesraymond/task-runner/issues/63)
16
- * Merge pull request #64 from thalesraymond/docs-atomic-commit-rule-3016253336492289921 ([d078c81](https://github.com/thalesraymond/task-runner/commit/d078c81)), closes [#64](https://github.com/thalesraymond/task-runner/issues/64)
17
- * docs: ✏️ archive retry feature since its implemented ([5980511](https://github.com/thalesraymond/task-runner/commit/5980511))
18
- * docs: add atomic commit rule for complex features ([5557ff9](https://github.com/thalesraymond/task-runner/commit/5557ff9))
19
- * docs: restore accidentally deleted guidelines ([41114fa](https://github.com/thalesraymond/task-runner/commit/41114fa))
20
- * feat: add concurrency control to TaskRunner ([90c2b6f](https://github.com/thalesraymond/task-runner/commit/90c2b6f))
21
- * feat: add concurrency control to TaskRunner ([2a8dfd2](https://github.com/thalesraymond/task-runner/commit/2a8dfd2))
22
- * chore: 🤖 AI agents new rules ([f6aac8d](https://github.com/thalesraymond/task-runner/commit/f6aac8d))
23
- * chore: 🤖 explict coverage rule for AGENTS.md ([80f7d87](https://github.com/thalesraymond/task-runner/commit/80f7d87))
24
- * fix: remove unreachable code and verify single execution in concurrency logic ([7255cee](https://github.com/thalesraymond/task-runner/commit/7255cee))
25
- * fix: resolve linting errors and verify concurrency control ([9ed2585](https://github.com/thalesraymond/task-runner/commit/9ed2585))
33
+ - Merge branch 'main' into feat/concurrency-control-5339998093271172305 ([9fbb19b](https://github.com/thalesraymond/task-runner/commit/9fbb19b))
34
+ - Merge branch 'main' into feat/concurrency-control-5339998093271172305 ([5ee9c84](https://github.com/thalesraymond/task-runner/commit/5ee9c84))
35
+ - Merge pull request #63 from thalesraymond/feat/concurrency-control-5339998093271172305 ([ef64606](https://github.com/thalesraymond/task-runner/commit/ef64606)), closes [#63](https://github.com/thalesraymond/task-runner/issues/63)
36
+ - Merge pull request #64 from thalesraymond/docs-atomic-commit-rule-3016253336492289921 ([d078c81](https://github.com/thalesraymond/task-runner/commit/d078c81)), closes [#64](https://github.com/thalesraymond/task-runner/issues/64)
37
+ - docs: ✏️ archive retry feature since its implemented ([5980511](https://github.com/thalesraymond/task-runner/commit/5980511))
38
+ - docs: add atomic commit rule for complex features ([5557ff9](https://github.com/thalesraymond/task-runner/commit/5557ff9))
39
+ - docs: restore accidentally deleted guidelines ([41114fa](https://github.com/thalesraymond/task-runner/commit/41114fa))
40
+ - feat: add concurrency control to TaskRunner ([90c2b6f](https://github.com/thalesraymond/task-runner/commit/90c2b6f))
41
+ - feat: add concurrency control to TaskRunner ([2a8dfd2](https://github.com/thalesraymond/task-runner/commit/2a8dfd2))
42
+ - chore: 🤖 AI agents new rules ([f6aac8d](https://github.com/thalesraymond/task-runner/commit/f6aac8d))
43
+ - chore: 🤖 explict coverage rule for AGENTS.md ([80f7d87](https://github.com/thalesraymond/task-runner/commit/80f7d87))
44
+ - fix: remove unreachable code and verify single execution in concurrency logic ([7255cee](https://github.com/thalesraymond/task-runner/commit/7255cee))
45
+ - fix: resolve linting errors and verify concurrency control ([9ed2585](https://github.com/thalesraymond/task-runner/commit/9ed2585))
26
46
 
27
47
  ## 3.2.0 (2026-01-18)
28
48
 
29
- * Merge branch 'main' into feat/add-task-retry-policy-16535599339542244277 ([3f4f855](https://github.com/thalesraymond/task-runner/commit/3f4f855))
30
- * Merge pull request #59 from thalesraymond/feat/add-task-retry-policy-16535599339542244277 ([3ebe1c2](https://github.com/thalesraymond/task-runner/commit/3ebe1c2)), closes [#59](https://github.com/thalesraymond/task-runner/issues/59)
31
- * Update src/strategies/RetryingExecutionStrategy.ts ([dfe5860](https://github.com/thalesraymond/task-runner/commit/dfe5860))
32
- * Update src/strategies/RetryingExecutionStrategy.ts ([714dca5](https://github.com/thalesraymond/task-runner/commit/714dca5))
33
- * Update tests/strategies/RetryingExecutionStrategy.test.ts ([202328c](https://github.com/thalesraymond/task-runner/commit/202328c))
34
- * merge: origin/main and resolve conflicts ([7dbc0cf](https://github.com/thalesraymond/task-runner/commit/7dbc0cf))
35
- * merge: origin/main and resolve conflicts ([bf3aeb0](https://github.com/thalesraymond/task-runner/commit/bf3aeb0))
36
- * docs: ✏️ archive dryrun/preview proposal since its done ([624354a](https://github.com/thalesraymond/task-runner/commit/624354a))
37
- * fix: address pr feedback ([4a23576](https://github.com/thalesraymond/task-runner/commit/4a23576))
38
- * fix: address pr feedback ([97cf83f](https://github.com/thalesraymond/task-runner/commit/97cf83f))
39
- * feat: add task retry policy ([81d4bd3](https://github.com/thalesraymond/task-runner/commit/81d4bd3))
49
+ - Merge branch 'main' into feat/add-task-retry-policy-16535599339542244277 ([3f4f855](https://github.com/thalesraymond/task-runner/commit/3f4f855))
50
+ - Merge pull request #59 from thalesraymond/feat/add-task-retry-policy-16535599339542244277 ([3ebe1c2](https://github.com/thalesraymond/task-runner/commit/3ebe1c2)), closes [#59](https://github.com/thalesraymond/task-runner/issues/59)
51
+ - Update src/strategies/RetryingExecutionStrategy.ts ([dfe5860](https://github.com/thalesraymond/task-runner/commit/dfe5860))
52
+ - Update src/strategies/RetryingExecutionStrategy.ts ([714dca5](https://github.com/thalesraymond/task-runner/commit/714dca5))
53
+ - Update tests/strategies/RetryingExecutionStrategy.test.ts ([202328c](https://github.com/thalesraymond/task-runner/commit/202328c))
54
+ - merge: origin/main and resolve conflicts ([7dbc0cf](https://github.com/thalesraymond/task-runner/commit/7dbc0cf))
55
+ - merge: origin/main and resolve conflicts ([bf3aeb0](https://github.com/thalesraymond/task-runner/commit/bf3aeb0))
56
+ - docs: ✏️ archive dryrun/preview proposal since its done ([624354a](https://github.com/thalesraymond/task-runner/commit/624354a))
57
+ - fix: address pr feedback ([4a23576](https://github.com/thalesraymond/task-runner/commit/4a23576))
58
+ - fix: address pr feedback ([97cf83f](https://github.com/thalesraymond/task-runner/commit/97cf83f))
59
+ - feat: add task retry policy ([81d4bd3](https://github.com/thalesraymond/task-runner/commit/81d4bd3))
40
60
 
41
61
  ## 3.1.0 (2026-01-18)
42
62
 
43
- * Merge branch 'main' into add-workflow-preview-16392950418245316538 ([249d5a8](https://github.com/thalesraymond/task-runner/commit/249d5a8))
44
- * Merge pull request #60 from thalesraymond/nexus/per-task-timeout-2298370472207213824 ([1b64fe1](https://github.com/thalesraymond/task-runner/commit/1b64fe1)), closes [#60](https://github.com/thalesraymond/task-runner/issues/60)
45
- * Merge pull request #61 from thalesraymond/add-workflow-preview-16392950418245316538 ([1f08dba](https://github.com/thalesraymond/task-runner/commit/1f08dba)), closes [#61](https://github.com/thalesraymond/task-runner/issues/61)
46
- * fix: 🐛 fix sanitization of mermaid function ([b09db63](https://github.com/thalesraymond/task-runner/commit/b09db63))
47
- * feat: add workflow preview and dry-run capabilities ([e1ccda9](https://github.com/thalesraymond/task-runner/commit/e1ccda9))
48
- * feat: add workflow preview and dry-run capabilities ([138f4ae](https://github.com/thalesraymond/task-runner/commit/138f4ae))
49
- * docs: ✏️ update specs after project refactoring ([5f35f18](https://github.com/thalesraymond/task-runner/commit/5f35f18))
50
- * docs: propose per-task timeout feature ([088cf42](https://github.com/thalesraymond/task-runner/commit/088cf42))
51
- * docs: propose per-task timeout feature ([2615635](https://github.com/thalesraymond/task-runner/commit/2615635))
63
+ - Merge branch 'main' into add-workflow-preview-16392950418245316538 ([249d5a8](https://github.com/thalesraymond/task-runner/commit/249d5a8))
64
+ - Merge pull request #60 from thalesraymond/nexus/per-task-timeout-2298370472207213824 ([1b64fe1](https://github.com/thalesraymond/task-runner/commit/1b64fe1)), closes [#60](https://github.com/thalesraymond/task-runner/issues/60)
65
+ - Merge pull request #61 from thalesraymond/add-workflow-preview-16392950418245316538 ([1f08dba](https://github.com/thalesraymond/task-runner/commit/1f08dba)), closes [#61](https://github.com/thalesraymond/task-runner/issues/61)
66
+ - fix: 🐛 fix sanitization of mermaid function ([b09db63](https://github.com/thalesraymond/task-runner/commit/b09db63))
67
+ - feat: add workflow preview and dry-run capabilities ([e1ccda9](https://github.com/thalesraymond/task-runner/commit/e1ccda9))
68
+ - feat: add workflow preview and dry-run capabilities ([138f4ae](https://github.com/thalesraymond/task-runner/commit/138f4ae))
69
+ - docs: ✏️ update specs after project refactoring ([5f35f18](https://github.com/thalesraymond/task-runner/commit/5f35f18))
70
+ - docs: propose per-task timeout feature ([088cf42](https://github.com/thalesraymond/task-runner/commit/088cf42))
71
+ - docs: propose per-task timeout feature ([2615635](https://github.com/thalesraymond/task-runner/commit/2615635))
52
72
 
53
73
  ## 3.0.0 (2026-01-18)
54
74
 
55
- * feat: 🎸 Generating 3.0.0 since automation wrongly skiped ([c545f25](https://github.com/thalesraymond/task-runner/commit/c545f25))
56
- * docs: ✏️ Add integration verification requirements to the spec ([2904524](https://github.com/thalesraymond/task-runner/commit/2904524))
57
- * docs: ✏️ Add specifications for core architecture refactor ([4162e3e](https://github.com/thalesraymond/task-runner/commit/4162e3e))
58
- * docs: ✏️ archive refactor spec ([f90a883](https://github.com/thalesraymond/task-runner/commit/f90a883))
59
- * docs: ✏️ archive spec and write first spec ([6c7e09e](https://github.com/thalesraymond/task-runner/commit/6c7e09e))
60
- * Merge branch 'main' into refactor-core-architecture-3606470332965189794 ([4a88ccf](https://github.com/thalesraymond/task-runner/commit/4a88ccf))
61
- * Merge branch 'origin/main' into pr-46 ([1109537](https://github.com/thalesraymond/task-runner/commit/1109537))
62
- * Merge pull request #49 from thalesraymond/pr-46-merge-conflicts-4682914261020497037 ([c95e62d](https://github.com/thalesraymond/task-runner/commit/c95e62d)), closes [#49](https://github.com/thalesraymond/task-runner/issues/49)
63
- * Merge pull request #50 from thalesraymond/add-integration-tests-14774431792140556914 ([841a76e](https://github.com/thalesraymond/task-runner/commit/841a76e)), closes [#50](https://github.com/thalesraymond/task-runner/issues/50)
64
- * Merge pull request #51 from thalesraymond/refactor-core-architecture-3606470332965189794 ([7403371](https://github.com/thalesraymond/task-runner/commit/7403371)), closes [#51](https://github.com/thalesraymond/task-runner/issues/51)
65
- * refactor: decouple core architecture using strategy and state manager ([3de1ce1](https://github.com/thalesraymond/task-runner/commit/3de1ce1))
66
- * refactor: decouple core architecture using strategy and state manager ([65dc1ef](https://github.com/thalesraymond/task-runner/commit/65dc1ef))
67
- * test: add comprehensive integration test suite ([e8170c0](https://github.com/thalesraymond/task-runner/commit/e8170c0))
68
-
75
+ - feat: 🎸 Generating 3.0.0 since automation wrongly skiped ([c545f25](https://github.com/thalesraymond/task-runner/commit/c545f25))
76
+ - docs: ✏️ Add integration verification requirements to the spec ([2904524](https://github.com/thalesraymond/task-runner/commit/2904524))
77
+ - docs: ✏️ Add specifications for core architecture refactor ([4162e3e](https://github.com/thalesraymond/task-runner/commit/4162e3e))
78
+ - docs: ✏️ archive refactor spec ([f90a883](https://github.com/thalesraymond/task-runner/commit/f90a883))
79
+ - docs: ✏️ archive spec and write first spec ([6c7e09e](https://github.com/thalesraymond/task-runner/commit/6c7e09e))
80
+ - Merge branch 'main' into refactor-core-architecture-3606470332965189794 ([4a88ccf](https://github.com/thalesraymond/task-runner/commit/4a88ccf))
81
+ - Merge branch 'origin/main' into pr-46 ([1109537](https://github.com/thalesraymond/task-runner/commit/1109537))
82
+ - Merge pull request #49 from thalesraymond/pr-46-merge-conflicts-4682914261020497037 ([c95e62d](https://github.com/thalesraymond/task-runner/commit/c95e62d)), closes [#49](https://github.com/thalesraymond/task-runner/issues/49)
83
+ - Merge pull request #50 from thalesraymond/add-integration-tests-14774431792140556914 ([841a76e](https://github.com/thalesraymond/task-runner/commit/841a76e)), closes [#50](https://github.com/thalesraymond/task-runner/issues/50)
84
+ - Merge pull request #51 from thalesraymond/refactor-core-architecture-3606470332965189794 ([7403371](https://github.com/thalesraymond/task-runner/commit/7403371)), closes [#51](https://github.com/thalesraymond/task-runner/issues/51)
85
+ - refactor: decouple core architecture using strategy and state manager ([3de1ce1](https://github.com/thalesraymond/task-runner/commit/3de1ce1))
86
+ - refactor: decouple core architecture using strategy and state manager ([65dc1ef](https://github.com/thalesraymond/task-runner/commit/65dc1ef))
87
+ - test: add comprehensive integration test suite ([e8170c0](https://github.com/thalesraymond/task-runner/commit/e8170c0))
69
88
 
70
89
  ### BREAKING CHANGE
71
90
 
72
- * 🧨 Major refactor in the engine, added strategy pattern support
91
+ - 🧨 Major refactor in the engine, added strategy pattern support
73
92
 
74
93
  ## 2.0.0 (2026-01-18)
75
94
 
76
- * Merge branch 'main' into sentinel/fix-graph-recursion-dos-11616274981510947884 ([b2c204d](https://github.com/thalesraymond/task-runner/commit/b2c204d))
77
- * Merge branch 'main' into sentinel/fix-graph-recursion-dos-11616274981510947884 ([66535d5](https://github.com/thalesraymond/task-runner/commit/66535d5))
78
- * Merge pull request #45 from thalesraymond/sentinel/fix-graph-recursion-dos-11616274981510947884 ([a0d8cd5](https://github.com/thalesraymond/task-runner/commit/a0d8cd5)), closes [#45](https://github.com/thalesraymond/task-runner/issues/45)
79
- * Merge pull request #47 from thalesraymond/test/mock-console-events-8565619574251561488 ([6133778](https://github.com/thalesraymond/task-runner/commit/6133778)), closes [#47](https://github.com/thalesraymond/task-runner/issues/47)
80
- * Merge pull request #48 from thalesraymond/update-agent-instructions-changelog-9387934573679748509 ([a07d0c3](https://github.com/thalesraymond/task-runner/commit/a07d0c3)), closes [#48](https://github.com/thalesraymond/task-runner/issues/48)
81
- * Update src/TaskGraphValidator.ts ([85a71c7](https://github.com/thalesraymond/task-runner/commit/85a71c7))
82
- * fix(security): replace recursive cycle detection with iterative DFS ([2d2e395](https://github.com/thalesraymond/task-runner/commit/2d2e395))
83
- * fix(security): replace recursive cycle detection with iterative DFS ([1e2d7ca](https://github.com/thalesraymond/task-runner/commit/1e2d7ca))
84
- * fix(security): replace recursive cycle detection with iterative DFS ([292947f](https://github.com/thalesraymond/task-runner/commit/292947f))
85
- * chore: update agent instructions with CHANGELOG rule ([8db6a2b](https://github.com/thalesraymond/task-runner/commit/8db6a2b))
86
- * test: mock console implementations in TaskRunnerEvents tests ([47deacb](https://github.com/thalesraymond/task-runner/commit/47deacb))
87
-
95
+ - Merge branch 'main' into sentinel/fix-graph-recursion-dos-11616274981510947884 ([b2c204d](https://github.com/thalesraymond/task-runner/commit/b2c204d))
96
+ - Merge branch 'main' into sentinel/fix-graph-recursion-dos-11616274981510947884 ([66535d5](https://github.com/thalesraymond/task-runner/commit/66535d5))
97
+ - Merge pull request #45 from thalesraymond/sentinel/fix-graph-recursion-dos-11616274981510947884 ([a0d8cd5](https://github.com/thalesraymond/task-runner/commit/a0d8cd5)), closes [#45](https://github.com/thalesraymond/task-runner/issues/45)
98
+ - Merge pull request #47 from thalesraymond/test/mock-console-events-8565619574251561488 ([6133778](https://github.com/thalesraymond/task-runner/commit/6133778)), closes [#47](https://github.com/thalesraymond/task-runner/issues/47)
99
+ - Merge pull request #48 from thalesraymond/update-agent-instructions-changelog-9387934573679748509 ([a07d0c3](https://github.com/thalesraymond/task-runner/commit/a07d0c3)), closes [#48](https://github.com/thalesraymond/task-runner/issues/48)
100
+ - Update src/TaskGraphValidator.ts ([85a71c7](https://github.com/thalesraymond/task-runner/commit/85a71c7))
101
+ - fix(security): replace recursive cycle detection with iterative DFS ([2d2e395](https://github.com/thalesraymond/task-runner/commit/2d2e395))
102
+ - fix(security): replace recursive cycle detection with iterative DFS ([1e2d7ca](https://github.com/thalesraymond/task-runner/commit/1e2d7ca))
103
+ - fix(security): replace recursive cycle detection with iterative DFS ([292947f](https://github.com/thalesraymond/task-runner/commit/292947f))
104
+ - chore: update agent instructions with CHANGELOG rule ([8db6a2b](https://github.com/thalesraymond/task-runner/commit/8db6a2b))
105
+ - test: mock console implementations in TaskRunnerEvents tests ([47deacb](https://github.com/thalesraymond/task-runner/commit/47deacb))
88
106
 
89
107
  ### BREAKING CHANGE
90
108
 
91
- * none
92
- * none
93
- * none
109
+ - none
110
+ - none
111
+ - none
94
112
 
95
113
  ## <small>1.2.2 (2026-01-18)</small>
96
114
 
97
- * Merge pull request #38 from thalesraymond/refactor-task-runner-7434390989639993181 ([e315cbd](https://github.com/thalesraymond/task-runner/commit/e315cbd)), closes [#38](https://github.com/thalesraymond/task-runner/issues/38)
98
- * fix(EventBus): fix lint errors in test file ([86b3ad8](https://github.com/thalesraymond/task-runner/commit/86b3ad8))
99
- * fix(EventBus): handle unhandled promise rejections in event listeners ([5f5235a](https://github.com/thalesraymond/task-runner/commit/5f5235a))
100
- * refactor: decompose TaskRunner into smaller classes ([55a1928](https://github.com/thalesraymond/task-runner/commit/55a1928))
115
+ - Merge pull request #38 from thalesraymond/refactor-task-runner-7434390989639993181 ([e315cbd](https://github.com/thalesraymond/task-runner/commit/e315cbd)), closes [#38](https://github.com/thalesraymond/task-runner/issues/38)
116
+ - fix(EventBus): fix lint errors in test file ([86b3ad8](https://github.com/thalesraymond/task-runner/commit/86b3ad8))
117
+ - fix(EventBus): handle unhandled promise rejections in event listeners ([5f5235a](https://github.com/thalesraymond/task-runner/commit/5f5235a))
118
+ - refactor: decompose TaskRunner into smaller classes ([55a1928](https://github.com/thalesraymond/task-runner/commit/55a1928))
101
119
 
102
120
  ## <small>1.2.1 (2026-01-18)</small>
103
121
 
104
- * Merge branch 'main' into docs-add-status-badges-11560890930810516706 ([8baab4c](https://github.com/thalesraymond/task-runner/commit/8baab4c))
105
- * Merge pull request #30 from thalesraymond/docs-add-status-badges-11560890930810516706 ([aac9c4b](https://github.com/thalesraymond/task-runner/commit/aac9c4b)), closes [#30](https://github.com/thalesraymond/task-runner/issues/30)
106
- * Merge pull request #31 from thalesraymond/005-concurrency-control ([db15b27](https://github.com/thalesraymond/task-runner/commit/db15b27)), closes [#31](https://github.com/thalesraymond/task-runner/issues/31)
107
- * Merge pull request #34 from thalesraymond/task-runner-performance-optimization-3405178555713715639 ([bb76050](https://github.com/thalesraymond/task-runner/commit/bb76050)), closes [#34](https://github.com/thalesraymond/task-runner/issues/34)
108
- * Merge remote-tracking branch 'origin/main' into 005-concurrency-control ([63d3cbe](https://github.com/thalesraymond/task-runner/commit/63d3cbe))
109
- * Update specs/005-concurrency-control/checklists/requirements.md ([97496b1](https://github.com/thalesraymond/task-runner/commit/97496b1))
110
- * Update specs/005-concurrency-control/contracts/api.ts ([a05cbb5](https://github.com/thalesraymond/task-runner/commit/a05cbb5))
111
- * perf: optimize task scheduling to prevent pipeline stalls ([37c52f7](https://github.com/thalesraymond/task-runner/commit/37c52f7))
112
- * docs: ✏️ clarify edge case handling for negative concurrency val ([05187c4](https://github.com/thalesraymond/task-runner/commit/05187c4))
113
- * docs: ✏️ concurrency control spec, plan, and tasks ([f27464c](https://github.com/thalesraymond/task-runner/commit/f27464c))
114
- * docs: ✏️ fix ambiguos docs ([a3aae83](https://github.com/thalesraymond/task-runner/commit/a3aae83))
115
- * docs: ✏️ spec ([cdb7287](https://github.com/thalesraymond/task-runner/commit/cdb7287))
116
- * docs(readme): add status badges ([b549b05](https://github.com/thalesraymond/task-runner/commit/b549b05))
122
+ - Merge branch 'main' into docs-add-status-badges-11560890930810516706 ([8baab4c](https://github.com/thalesraymond/task-runner/commit/8baab4c))
123
+ - Merge pull request #30 from thalesraymond/docs-add-status-badges-11560890930810516706 ([aac9c4b](https://github.com/thalesraymond/task-runner/commit/aac9c4b)), closes [#30](https://github.com/thalesraymond/task-runner/issues/30)
124
+ - Merge pull request #31 from thalesraymond/005-concurrency-control ([db15b27](https://github.com/thalesraymond/task-runner/commit/db15b27)), closes [#31](https://github.com/thalesraymond/task-runner/issues/31)
125
+ - Merge pull request #34 from thalesraymond/task-runner-performance-optimization-3405178555713715639 ([bb76050](https://github.com/thalesraymond/task-runner/commit/bb76050)), closes [#34](https://github.com/thalesraymond/task-runner/issues/34)
126
+ - Merge remote-tracking branch 'origin/main' into 005-concurrency-control ([63d3cbe](https://github.com/thalesraymond/task-runner/commit/63d3cbe))
127
+ - Update specs/005-concurrency-control/checklists/requirements.md ([97496b1](https://github.com/thalesraymond/task-runner/commit/97496b1))
128
+ - Update specs/005-concurrency-control/contracts/api.ts ([a05cbb5](https://github.com/thalesraymond/task-runner/commit/a05cbb5))
129
+ - perf: optimize task scheduling to prevent pipeline stalls ([37c52f7](https://github.com/thalesraymond/task-runner/commit/37c52f7))
130
+ - docs: ✏️ clarify edge case handling for negative concurrency val ([05187c4](https://github.com/thalesraymond/task-runner/commit/05187c4))
131
+ - docs: ✏️ concurrency control spec, plan, and tasks ([f27464c](https://github.com/thalesraymond/task-runner/commit/f27464c))
132
+ - docs: ✏️ fix ambiguos docs ([a3aae83](https://github.com/thalesraymond/task-runner/commit/a3aae83))
133
+ - docs: ✏️ spec ([cdb7287](https://github.com/thalesraymond/task-runner/commit/cdb7287))
134
+ - docs(readme): add status badges ([b549b05](https://github.com/thalesraymond/task-runner/commit/b549b05))
117
135
 
118
136
  ## 1.2.0 (2026-01-18)
119
137
 
120
- * Merge branch 'main' into 004-pre-execution-validation-14850747355617832302 ([cc01409](https://github.com/thalesraymond/task-runner/commit/cc01409))
121
- * Merge branch 'main' into 004-pre-execution-validation-14850747355617832302 ([0a31f84](https://github.com/thalesraymond/task-runner/commit/0a31f84))
122
- * Merge pull request #25 from thalesraymond/004-pre-execution-validation-14850747355617832302 ([8c022d1](https://github.com/thalesraymond/task-runner/commit/8c022d1)), closes [#25](https://github.com/thalesraymond/task-runner/issues/25)
123
- * refactor: address PR comments, extract TaskGraph ([f2d506f](https://github.com/thalesraymond/task-runner/commit/f2d506f))
124
- * refactor: address PR review feedback ([38e7878](https://github.com/thalesraymond/task-runner/commit/38e7878))
125
- * refactor: split validation contracts into individual files ([c9caea0](https://github.com/thalesraymond/task-runner/commit/c9caea0))
126
- * feat: pre-validation of task graph for cycles and missing deps ([4680c1b](https://github.com/thalesraymond/task-runner/commit/4680c1b)), closes [#004](https://github.com/thalesraymond/task-runner/issues/004)
138
+ - Merge branch 'main' into 004-pre-execution-validation-14850747355617832302 ([cc01409](https://github.com/thalesraymond/task-runner/commit/cc01409))
139
+ - Merge branch 'main' into 004-pre-execution-validation-14850747355617832302 ([0a31f84](https://github.com/thalesraymond/task-runner/commit/0a31f84))
140
+ - Merge pull request #25 from thalesraymond/004-pre-execution-validation-14850747355617832302 ([8c022d1](https://github.com/thalesraymond/task-runner/commit/8c022d1)), closes [#25](https://github.com/thalesraymond/task-runner/issues/25)
141
+ - refactor: address PR comments, extract TaskGraph ([f2d506f](https://github.com/thalesraymond/task-runner/commit/f2d506f))
142
+ - refactor: address PR review feedback ([38e7878](https://github.com/thalesraymond/task-runner/commit/38e7878))
143
+ - refactor: split validation contracts into individual files ([c9caea0](https://github.com/thalesraymond/task-runner/commit/c9caea0))
144
+ - feat: pre-validation of task graph for cycles and missing deps ([4680c1b](https://github.com/thalesraymond/task-runner/commit/4680c1b)), closes [#004](https://github.com/thalesraymond/task-runner/issues/004)
127
145
 
128
146
  ## <small>1.1.1 (2026-01-18)</small>
129
147
 
130
- * Merge branch 'main' into chore/configure-sonar-quality-gate-6593988281334866666 ([fe5c88d](https://github.com/thalesraymond/task-runner/commit/fe5c88d))
131
- * Merge pull request #23 from thalesraymond/004-pre-execution-validation ([bf641c5](https://github.com/thalesraymond/task-runner/commit/bf641c5)), closes [#23](https://github.com/thalesraymond/task-runner/issues/23)
132
- * Merge pull request #26 from thalesraymond/002-task-cancellation ([30fafaa](https://github.com/thalesraymond/task-runner/commit/30fafaa)), closes [#26](https://github.com/thalesraymond/task-runner/issues/26)
133
- * Merge pull request #28 from thalesraymond/chore/configure-sonar-quality-gate-6593988281334866666 ([0b7373f](https://github.com/thalesraymond/task-runner/commit/0b7373f)), closes [#28](https://github.com/thalesraymond/task-runner/issues/28)
134
- * Merge pull request #29 from thalesraymond/update-docs-and-constitution-15453351708375382519 ([84b6293](https://github.com/thalesraymond/task-runner/commit/84b6293)), closes [#29](https://github.com/thalesraymond/task-runner/issues/29)
135
- * Update GEMINI.md ([64c5660](https://github.com/thalesraymond/task-runner/commit/64c5660))
136
- * Update GEMINI.md ([e28abbd](https://github.com/thalesraymond/task-runner/commit/e28abbd))
137
- * Update specs/002-task-cancellation/quickstart.md ([c52ca0d](https://github.com/thalesraymond/task-runner/commit/c52ca0d))
138
- * Update specs/002-task-cancellation/quickstart.md ([153981a](https://github.com/thalesraymond/task-runner/commit/153981a))
139
- * Update specs/004-pre-execution-validation/checklists/requirements.md ([e1cd90f](https://github.com/thalesraymond/task-runner/commit/e1cd90f))
140
- * Update specs/004-pre-execution-validation/checklists/requirements.md ([03869b8](https://github.com/thalesraymond/task-runner/commit/03869b8))
141
- * Update specs/004-pre-execution-validation/contracts/api.ts ([b217a10](https://github.com/thalesraymond/task-runner/commit/b217a10))
142
- * Update specs/004-pre-execution-validation/contracts/api.ts ([503309e](https://github.com/thalesraymond/task-runner/commit/503309e))
143
- * Update specs/004-pre-execution-validation/contracts/api.ts ([6394f0d](https://github.com/thalesraymond/task-runner/commit/6394f0d))
144
- * Update specs/004-pre-execution-validation/quickstart.md ([4756fbc](https://github.com/thalesraymond/task-runner/commit/4756fbc))
145
- * Update specs/004-pre-execution-validation/quickstart.md ([9233e8c](https://github.com/thalesraymond/task-runner/commit/9233e8c))
146
- * Update specs/004-pre-execution-validation/quickstart.md ([1d639d2](https://github.com/thalesraymond/task-runner/commit/1d639d2))
147
- * Update specs/004-pre-execution-validation/spec.md ([74875de](https://github.com/thalesraymond/task-runner/commit/74875de))
148
- * Update specs/004-pre-execution-validation/tasks.md ([93ee4a7](https://github.com/thalesraymond/task-runner/commit/93ee4a7))
149
- * fix: address PR comments on sonar config ([6eab0b5](https://github.com/thalesraymond/task-runner/commit/6eab0b5))
150
- * fix: address PR comments on sonar config ([156eea0](https://github.com/thalesraymond/task-runner/commit/156eea0))
151
- * docs: ✏️ fix gemini code review discussion ([a788e47](https://github.com/thalesraymond/task-runner/commit/a788e47))
152
- * docs: ✏️ fix gemini inconsistent pointed by gemini ([ddc39b7](https://github.com/thalesraymond/task-runner/commit/ddc39b7))
153
- * docs: ✏️ fix inconsistences pointed in CR ([95acba7](https://github.com/thalesraymond/task-runner/commit/95acba7))
154
- * docs: ✏️ signal abort spec ([57f1cbf](https://github.com/thalesraymond/task-runner/commit/57f1cbf))
155
- * docs: ✏️ spec for abort signal ([90340b8](https://github.com/thalesraymond/task-runner/commit/90340b8))
156
- * docs: ✏️ specs for tree pre validation ([e13f056](https://github.com/thalesraymond/task-runner/commit/e13f056))
157
- * docs: update constitution and README with latest features ([7b601fc](https://github.com/thalesraymond/task-runner/commit/7b601fc))
158
- * chore: configure SonarCloud quality gate and coverage ([e08912b](https://github.com/thalesraymond/task-runner/commit/e08912b))
148
+ - Merge branch 'main' into chore/configure-sonar-quality-gate-6593988281334866666 ([fe5c88d](https://github.com/thalesraymond/task-runner/commit/fe5c88d))
149
+ - Merge pull request #23 from thalesraymond/004-pre-execution-validation ([bf641c5](https://github.com/thalesraymond/task-runner/commit/bf641c5)), closes [#23](https://github.com/thalesraymond/task-runner/issues/23)
150
+ - Merge pull request #26 from thalesraymond/002-task-cancellation ([30fafaa](https://github.com/thalesraymond/task-runner/commit/30fafaa)), closes [#26](https://github.com/thalesraymond/task-runner/issues/26)
151
+ - Merge pull request #28 from thalesraymond/chore/configure-sonar-quality-gate-6593988281334866666 ([0b7373f](https://github.com/thalesraymond/task-runner/commit/0b7373f)), closes [#28](https://github.com/thalesraymond/task-runner/issues/28)
152
+ - Merge pull request #29 from thalesraymond/update-docs-and-constitution-15453351708375382519 ([84b6293](https://github.com/thalesraymond/task-runner/commit/84b6293)), closes [#29](https://github.com/thalesraymond/task-runner/issues/29)
153
+ - Update GEMINI.md ([64c5660](https://github.com/thalesraymond/task-runner/commit/64c5660))
154
+ - Update GEMINI.md ([e28abbd](https://github.com/thalesraymond/task-runner/commit/e28abbd))
155
+ - Update specs/002-task-cancellation/quickstart.md ([c52ca0d](https://github.com/thalesraymond/task-runner/commit/c52ca0d))
156
+ - Update specs/002-task-cancellation/quickstart.md ([153981a](https://github.com/thalesraymond/task-runner/commit/153981a))
157
+ - Update specs/004-pre-execution-validation/checklists/requirements.md ([e1cd90f](https://github.com/thalesraymond/task-runner/commit/e1cd90f))
158
+ - Update specs/004-pre-execution-validation/checklists/requirements.md ([03869b8](https://github.com/thalesraymond/task-runner/commit/03869b8))
159
+ - Update specs/004-pre-execution-validation/contracts/api.ts ([b217a10](https://github.com/thalesraymond/task-runner/commit/b217a10))
160
+ - Update specs/004-pre-execution-validation/contracts/api.ts ([503309e](https://github.com/thalesraymond/task-runner/commit/503309e))
161
+ - Update specs/004-pre-execution-validation/contracts/api.ts ([6394f0d](https://github.com/thalesraymond/task-runner/commit/6394f0d))
162
+ - Update specs/004-pre-execution-validation/quickstart.md ([4756fbc](https://github.com/thalesraymond/task-runner/commit/4756fbc))
163
+ - Update specs/004-pre-execution-validation/quickstart.md ([9233e8c](https://github.com/thalesraymond/task-runner/commit/9233e8c))
164
+ - Update specs/004-pre-execution-validation/quickstart.md ([1d639d2](https://github.com/thalesraymond/task-runner/commit/1d639d2))
165
+ - Update specs/004-pre-execution-validation/spec.md ([74875de](https://github.com/thalesraymond/task-runner/commit/74875de))
166
+ - Update specs/004-pre-execution-validation/tasks.md ([93ee4a7](https://github.com/thalesraymond/task-runner/commit/93ee4a7))
167
+ - fix: address PR comments on sonar config ([6eab0b5](https://github.com/thalesraymond/task-runner/commit/6eab0b5))
168
+ - fix: address PR comments on sonar config ([156eea0](https://github.com/thalesraymond/task-runner/commit/156eea0))
169
+ - docs: ✏️ fix gemini code review discussion ([a788e47](https://github.com/thalesraymond/task-runner/commit/a788e47))
170
+ - docs: ✏️ fix gemini inconsistent pointed by gemini ([ddc39b7](https://github.com/thalesraymond/task-runner/commit/ddc39b7))
171
+ - docs: ✏️ fix inconsistences pointed in CR ([95acba7](https://github.com/thalesraymond/task-runner/commit/95acba7))
172
+ - docs: ✏️ signal abort spec ([57f1cbf](https://github.com/thalesraymond/task-runner/commit/57f1cbf))
173
+ - docs: ✏️ spec for abort signal ([90340b8](https://github.com/thalesraymond/task-runner/commit/90340b8))
174
+ - docs: ✏️ specs for tree pre validation ([e13f056](https://github.com/thalesraymond/task-runner/commit/e13f056))
175
+ - docs: update constitution and README with latest features ([7b601fc](https://github.com/thalesraymond/task-runner/commit/7b601fc))
176
+ - chore: configure SonarCloud quality gate and coverage ([e08912b](https://github.com/thalesraymond/task-runner/commit/e08912b))
159
177
 
160
178
  ## 1.1.0 (2026-01-18)
161
179
 
162
- * Merge branch 'main' into feat/task-runner-observer-pattern-15088823676344229252 ([d38d6f8](https://github.com/thalesraymond/task-runner/commit/d38d6f8))
163
- * Merge branch 'main' into feat/task-runner-observer-pattern-15088823676344229252 ([2638801](https://github.com/thalesraymond/task-runner/commit/2638801))
164
- * Merge pull request #22 from thalesraymond/feat/task-runner-observer-pattern-15088823676344229252 ([06e0049](https://github.com/thalesraymond/task-runner/commit/06e0049)), closes [#22](https://github.com/thalesraymond/task-runner/issues/22)
165
- * fix: add file extensions and types to test file to fix CI errors ([54b186f](https://github.com/thalesraymond/task-runner/commit/54b186f))
166
- * fix: remove any type usage in TaskRunner to satisfy linter ([b0a21a7](https://github.com/thalesraymond/task-runner/commit/b0a21a7))
167
- * fix: revert unauthorized changes to package.json and tsconfig.test.json ([cd44f9e](https://github.com/thalesraymond/task-runner/commit/cd44f9e))
168
- * test: 💍 force 100% coverage ([2e489f0](https://github.com/thalesraymond/task-runner/commit/2e489f0))
169
- * test: increase coverage to 100% ([5cd1a44](https://github.com/thalesraymond/task-runner/commit/5cd1a44))
170
- * feat: implement Observer Pattern event system in TaskRunner ([d682983](https://github.com/thalesraymond/task-runner/commit/d682983))
171
- * feat: implement Observer Pattern event system in TaskRunner ([48bd3d0](https://github.com/thalesraymond/task-runner/commit/48bd3d0))
172
- * chore: add typescript check for tests ([9b6c5d4](https://github.com/thalesraymond/task-runner/commit/9b6c5d4))
180
+ - Merge branch 'main' into feat/task-runner-observer-pattern-15088823676344229252 ([d38d6f8](https://github.com/thalesraymond/task-runner/commit/d38d6f8))
181
+ - Merge branch 'main' into feat/task-runner-observer-pattern-15088823676344229252 ([2638801](https://github.com/thalesraymond/task-runner/commit/2638801))
182
+ - Merge pull request #22 from thalesraymond/feat/task-runner-observer-pattern-15088823676344229252 ([06e0049](https://github.com/thalesraymond/task-runner/commit/06e0049)), closes [#22](https://github.com/thalesraymond/task-runner/issues/22)
183
+ - fix: add file extensions and types to test file to fix CI errors ([54b186f](https://github.com/thalesraymond/task-runner/commit/54b186f))
184
+ - fix: remove any type usage in TaskRunner to satisfy linter ([b0a21a7](https://github.com/thalesraymond/task-runner/commit/b0a21a7))
185
+ - fix: revert unauthorized changes to package.json and tsconfig.test.json ([cd44f9e](https://github.com/thalesraymond/task-runner/commit/cd44f9e))
186
+ - test: 💍 force 100% coverage ([2e489f0](https://github.com/thalesraymond/task-runner/commit/2e489f0))
187
+ - test: increase coverage to 100% ([5cd1a44](https://github.com/thalesraymond/task-runner/commit/5cd1a44))
188
+ - feat: implement Observer Pattern event system in TaskRunner ([d682983](https://github.com/thalesraymond/task-runner/commit/d682983))
189
+ - feat: implement Observer Pattern event system in TaskRunner ([48bd3d0](https://github.com/thalesraymond/task-runner/commit/48bd3d0))
190
+ - chore: add typescript check for tests ([9b6c5d4](https://github.com/thalesraymond/task-runner/commit/9b6c5d4))
173
191
 
174
192
  ## <small>1.0.1 (2026-01-17)</small>
175
193
 
176
- * fix: 🐛 fixing commit script and adding a fix to test auto relea ([97cedf4](https://github.com/thalesraymond/task-runner/commit/97cedf4))
194
+ - fix: 🐛 fixing commit script and adding a fix to test auto relea ([97cedf4](https://github.com/thalesraymond/task-runner/commit/97cedf4))
177
195
 
178
196
  ## 1.0.0 (2026-01-17)
179
197
 
180
- * Add templates for project documentation and task management ([bb7fb3c](https://github.com/thalesraymond/task-runner/commit/bb7fb3c))
181
- * Initial commit ([c13cd95](https://github.com/thalesraymond/task-runner/commit/c13cd95))
182
- * Remove NPM_TOKEN from release.yml ([0a97d89](https://github.com/thalesraymond/task-runner/commit/0a97d89))
183
- * remove old lock ([b616679](https://github.com/thalesraymond/task-runner/commit/b616679))
184
- * Rename package to @calmo/task-runner ([acdf6f1](https://github.com/thalesraymond/task-runner/commit/acdf6f1))
185
- * Set package ecosystem to 'npm' in dependabot config ([6b2cd5f](https://github.com/thalesraymond/task-runner/commit/6b2cd5f))
186
- * Update specs/001-generic-task-runner/contracts/api.ts ([f0c062f](https://github.com/thalesraymond/task-runner/commit/f0c062f))
187
- * Update specs/001-generic-task-runner/data-model.md ([3ae876b](https://github.com/thalesraymond/task-runner/commit/3ae876b))
188
- * Update specs/003-refactor-file-structure/data-model.md ([9474619](https://github.com/thalesraymond/task-runner/commit/9474619))
189
- * Update specs/003-refactor-file-structure/quickstart.md ([28a4938](https://github.com/thalesraymond/task-runner/commit/28a4938))
190
- * Update src/TaskRunner.ts ([63e396b](https://github.com/thalesraymond/task-runner/commit/63e396b))
191
- * feat: add CI workflow and restore dependabot ([57ae940](https://github.com/thalesraymond/task-runner/commit/57ae940))
192
- * feat: add CI workflow and restore dependabot ([48ec98b](https://github.com/thalesraymond/task-runner/commit/48ec98b))
193
- * feat: add CI workflow and restore dependabot ([9263c43](https://github.com/thalesraymond/task-runner/commit/9263c43))
194
- * feat: add CI workflow for build, lint, and test ([6f97dc0](https://github.com/thalesraymond/task-runner/commit/6f97dc0))
195
- * feat: add CI workflow for build, lint, and test ([a03422e](https://github.com/thalesraymond/task-runner/commit/a03422e))
196
- * feat: configure semantic-release for automated releases ([fa13bf5](https://github.com/thalesraymond/task-runner/commit/fa13bf5))
197
- * feat: Implement generic task runner with dependency management and parallel execution ([e0c8bf9](https://github.com/thalesraymond/task-runner/commit/e0c8bf9))
198
- * feat: initialize project with TypeScript, Vitest, and basic sum function ([02dd759](https://github.com/thalesraymond/task-runner/commit/02dd759))
199
- * feat(implement): complete file structure refactor ([7764e43](https://github.com/thalesraymond/task-runner/commit/7764e43))
200
- * feat(implement): complete file structure refactor and cleanup ([372ca8b](https://github.com/thalesraymond/task-runner/commit/372ca8b))
201
- * feat(plan): create technical plan for file refactor ([29d2a97](https://github.com/thalesraymond/task-runner/commit/29d2a97))
202
- * feat(specs): add spec for file structure refactor ([884c551](https://github.com/thalesraymond/task-runner/commit/884c551))
203
- * feat(tasks): create tasks for file structure refactor ([3b99e22](https://github.com/thalesraymond/task-runner/commit/3b99e22))
204
- * test: add complex scenario integration test ([685399b](https://github.com/thalesraymond/task-runner/commit/685399b))
205
- * test: add complex scenario integration test ([0935b9f](https://github.com/thalesraymond/task-runner/commit/0935b9f))
206
- * test: add complex scenario integration test ([25440db](https://github.com/thalesraymond/task-runner/commit/25440db))
207
- * test: add tests to reach 100% coverage ([a48678c](https://github.com/thalesraymond/task-runner/commit/a48678c))
208
- * chore: enable husky, commitlint and git-cz ([790ae6a](https://github.com/thalesraymond/task-runner/commit/790ae6a))
209
- * ci: add codecov upload step to workflow ([523ebe6](https://github.com/thalesraymond/task-runner/commit/523ebe6))
210
- * build(deps): bump actions/checkout from 4 to 6 ([b092b9a](https://github.com/thalesraymond/task-runner/commit/b092b9a))
211
- * build(deps): bump actions/setup-node from 4 to 6 ([b5cd513](https://github.com/thalesraymond/task-runner/commit/b5cd513))
212
- * fix: change singleQuote option to false in Prettier configuration ([94625a3](https://github.com/thalesraymond/task-runner/commit/94625a3))
213
- * fix: correct syntax errors in README.md examples and improve context hydration explanation ([98e3a5a](https://github.com/thalesraymond/task-runner/commit/98e3a5a))
214
- * fix: standardize quotes and formatting in dependabot configuration ([ab2d7fa](https://github.com/thalesraymond/task-runner/commit/ab2d7fa))
215
- * Docs: Add comprehensive README.md ([f644a6e](https://github.com/thalesraymond/task-runner/commit/f644a6e))
216
- * refactor: standardize import statements and update ESLint configuration ([e1feb6f](https://github.com/thalesraymond/task-runner/commit/e1feb6f))
217
- * style: format .specify/memory/constitution.md ([b021cb3](https://github.com/thalesraymond/task-runner/commit/b021cb3))
218
- * docs: amend constitution to v1.1.0 (principle additions + governance update) ([198ef5d](https://github.com/thalesraymond/task-runner/commit/198ef5d))
198
+ - Add templates for project documentation and task management ([bb7fb3c](https://github.com/thalesraymond/task-runner/commit/bb7fb3c))
199
+ - Initial commit ([c13cd95](https://github.com/thalesraymond/task-runner/commit/c13cd95))
200
+ - Remove NPM_TOKEN from release.yml ([0a97d89](https://github.com/thalesraymond/task-runner/commit/0a97d89))
201
+ - remove old lock ([b616679](https://github.com/thalesraymond/task-runner/commit/b616679))
202
+ - Rename package to @calmo/task-runner ([acdf6f1](https://github.com/thalesraymond/task-runner/commit/acdf6f1))
203
+ - Set package ecosystem to 'npm' in dependabot config ([6b2cd5f](https://github.com/thalesraymond/task-runner/commit/6b2cd5f))
204
+ - Update specs/001-generic-task-runner/contracts/api.ts ([f0c062f](https://github.com/thalesraymond/task-runner/commit/f0c062f))
205
+ - Update specs/001-generic-task-runner/data-model.md ([3ae876b](https://github.com/thalesraymond/task-runner/commit/3ae876b))
206
+ - Update specs/003-refactor-file-structure/data-model.md ([9474619](https://github.com/thalesraymond/task-runner/commit/9474619))
207
+ - Update specs/003-refactor-file-structure/quickstart.md ([28a4938](https://github.com/thalesraymond/task-runner/commit/28a4938))
208
+ - Update src/TaskRunner.ts ([63e396b](https://github.com/thalesraymond/task-runner/commit/63e396b))
209
+ - feat: add CI workflow and restore dependabot ([57ae940](https://github.com/thalesraymond/task-runner/commit/57ae940))
210
+ - feat: add CI workflow and restore dependabot ([48ec98b](https://github.com/thalesraymond/task-runner/commit/48ec98b))
211
+ - feat: add CI workflow and restore dependabot ([9263c43](https://github.com/thalesraymond/task-runner/commit/9263c43))
212
+ - feat: add CI workflow for build, lint, and test ([6f97dc0](https://github.com/thalesraymond/task-runner/commit/6f97dc0))
213
+ - feat: add CI workflow for build, lint, and test ([a03422e](https://github.com/thalesraymond/task-runner/commit/a03422e))
214
+ - feat: configure semantic-release for automated releases ([fa13bf5](https://github.com/thalesraymond/task-runner/commit/fa13bf5))
215
+ - feat: Implement generic task runner with dependency management and parallel execution ([e0c8bf9](https://github.com/thalesraymond/task-runner/commit/e0c8bf9))
216
+ - feat: initialize project with TypeScript, Vitest, and basic sum function ([02dd759](https://github.com/thalesraymond/task-runner/commit/02dd759))
217
+ - feat(implement): complete file structure refactor ([7764e43](https://github.com/thalesraymond/task-runner/commit/7764e43))
218
+ - feat(implement): complete file structure refactor and cleanup ([372ca8b](https://github.com/thalesraymond/task-runner/commit/372ca8b))
219
+ - feat(plan): create technical plan for file refactor ([29d2a97](https://github.com/thalesraymond/task-runner/commit/29d2a97))
220
+ - feat(specs): add spec for file structure refactor ([884c551](https://github.com/thalesraymond/task-runner/commit/884c551))
221
+ - feat(tasks): create tasks for file structure refactor ([3b99e22](https://github.com/thalesraymond/task-runner/commit/3b99e22))
222
+ - test: add complex scenario integration test ([685399b](https://github.com/thalesraymond/task-runner/commit/685399b))
223
+ - test: add complex scenario integration test ([0935b9f](https://github.com/thalesraymond/task-runner/commit/0935b9f))
224
+ - test: add complex scenario integration test ([25440db](https://github.com/thalesraymond/task-runner/commit/25440db))
225
+ - test: add tests to reach 100% coverage ([a48678c](https://github.com/thalesraymond/task-runner/commit/a48678c))
226
+ - chore: enable husky, commitlint and git-cz ([790ae6a](https://github.com/thalesraymond/task-runner/commit/790ae6a))
227
+ - ci: add codecov upload step to workflow ([523ebe6](https://github.com/thalesraymond/task-runner/commit/523ebe6))
228
+ - build(deps): bump actions/checkout from 4 to 6 ([b092b9a](https://github.com/thalesraymond/task-runner/commit/b092b9a))
229
+ - build(deps): bump actions/setup-node from 4 to 6 ([b5cd513](https://github.com/thalesraymond/task-runner/commit/b5cd513))
230
+ - fix: change singleQuote option to false in Prettier configuration ([94625a3](https://github.com/thalesraymond/task-runner/commit/94625a3))
231
+ - fix: correct syntax errors in README.md examples and improve context hydration explanation ([98e3a5a](https://github.com/thalesraymond/task-runner/commit/98e3a5a))
232
+ - fix: standardize quotes and formatting in dependabot configuration ([ab2d7fa](https://github.com/thalesraymond/task-runner/commit/ab2d7fa))
233
+ - Docs: Add comprehensive README.md ([f644a6e](https://github.com/thalesraymond/task-runner/commit/f644a6e))
234
+ - refactor: standardize import statements and update ESLint configuration ([e1feb6f](https://github.com/thalesraymond/task-runner/commit/e1feb6f))
235
+ - style: format .specify/memory/constitution.md ([b021cb3](https://github.com/thalesraymond/task-runner/commit/b021cb3))
236
+ - docs: amend constitution to v1.1.0 (principle additions + governance update) ([198ef5d](https://github.com/thalesraymond/task-runner/commit/198ef5d))