Compare commits
2 Commits
v0.17.0
...
fix.bedroc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
636fb3f680 | ||
|
|
8cde6c2708 |
5
.changeset/rotten-months-brake.md
Normal file
5
.changeset/rotten-months-brake.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
"task-master-ai": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix contextGatherer bug when adding a task `Cannot read properties of undefined (reading 'forEach')`
|
||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
Taskmaster uses two primary methods for configuration:
|
Taskmaster uses two primary methods for configuration:
|
||||||
|
|
||||||
1. **`.taskmaster/config.json` File (Recommended - New Structure)**
|
|
||||||
1. **`.taskmaster/config.json` File (Recommended - New Structure)**
|
1. **`.taskmaster/config.json` File (Recommended - New Structure)**
|
||||||
|
|
||||||
- This JSON file stores most configuration settings, including AI model selections, parameters, logging levels, and project defaults.
|
- This JSON file stores most configuration settings, including AI model selections, parameters, logging levels, and project defaults.
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ export class ContextGatherer {
|
|||||||
|
|
||||||
// Dependency Graph Analysis
|
// Dependency Graph Analysis
|
||||||
if (dependencyTasks.length > 0) {
|
if (dependencyTasks.length > 0) {
|
||||||
const dependencyResults = this._buildDependencyContext(dependencyTasks);
|
const dependencyResults = this._buildDependencyGraphs(dependencyTasks);
|
||||||
dependencyResults.allRelatedTaskIds.forEach((id) =>
|
dependencyResults.allRelatedTaskIds.forEach((id) =>
|
||||||
finalTaskIds.add(String(id))
|
finalTaskIds.add(String(id))
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user