Release 0.17.1 (#790)
* fix(contextGatherer): cannot read properties of undefined reading forEach (#789) * docs: Update configuration.md (#782) --------- Co-authored-by: Bartu OZEL <bartuozel@gmail.com>
This commit is contained in:
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:
|
||||
|
||||
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.
|
||||
|
||||
@@ -123,7 +123,7 @@ export class ContextGatherer {
|
||||
|
||||
// Dependency Graph Analysis
|
||||
if (dependencyTasks.length > 0) {
|
||||
const dependencyResults = this._buildDependencyContext(dependencyTasks);
|
||||
const dependencyResults = this._buildDependencyGraphs(dependencyTasks);
|
||||
dependencyResults.allRelatedTaskIds.forEach((id) =>
|
||||
finalTaskIds.add(String(id))
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user