Skip to content

Commit 4cae299

Browse files
Version Packages (#1154)
* Version Packages * chore: fix changelog --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
1 parent 0d7ff62 commit 4cae299

File tree

7 files changed

+49
-25
lines changed

7 files changed

+49
-25
lines changed

.changeset/quiet-owls-fix-cli-sdk.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.changeset/rich-emus-say.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# task-master-ai
22

3+
## 0.25.1
4+
5+
### Patch Changes
6+
7+
- [#1152](https://github.com/eyaltoledano/claude-task-master/pull/1152) [`8933557`](https://github.com/eyaltoledano/claude-task-master/commit/89335578ffffc65504b2055c0c85aa7521e5e79b) Thanks [@ben-vargas](https://github.com/ben-vargas)! - fix(claude-code): prevent crash/hang when the optional `@anthropic-ai/claude-code` SDK is missing by guarding `AbortError instanceof` checks and adding explicit SDK presence checks in `doGenerate`/`doStream`. Also bump the optional dependency to `^1.0.88` for improved export consistency.
8+
9+
Related to JSON truncation handling in #920; this change addresses a separate error-path crash reported in #1142.
10+
11+
- [#1151](https://github.com/eyaltoledano/claude-task-master/pull/1151) [`db720a9`](https://github.com/eyaltoledano/claude-task-master/commit/db720a954d390bb44838cd021b8813dde8f3d8de) Thanks [@Crunchyman-ralph](https://github.com/Crunchyman-ralph)! - Temporarily disable streaming for improved model compatibility - will be re-enabled in upcoming release
12+
313
## 0.25.0
414

515
### Minor Changes

apps/extension/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 0.24.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8933557`](https://github.com/eyaltoledano/claude-task-master/commit/89335578ffffc65504b2055c0c85aa7521e5e79b), [`db720a9`](https://github.com/eyaltoledano/claude-task-master/commit/db720a954d390bb44838cd021b8813dde8f3d8de)]:
8+
- task-master-ai@0.25.1
9+
310
## 0.24.0
411

512
### Minor Changes

apps/extension/package.json

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,23 @@
33
"private": true,
44
"displayName": "TaskMaster",
55
"description": "A visual Kanban board interface for TaskMaster projects in VS Code",
6-
"version": "0.24.0",
6+
"version": "0.24.1",
77
"publisher": "Hamster",
88
"icon": "assets/icon.png",
99
"engines": {
1010
"vscode": "^1.93.0"
1111
},
12-
"categories": ["AI", "Visualization", "Education", "Other"],
12+
"categories": [
13+
"AI",
14+
"Visualization",
15+
"Education",
16+
"Other"
17+
],
1318
"main": "./dist/extension.js",
14-
"activationEvents": ["onStartupFinished", "workspaceContains:.taskmaster/**"],
19+
"activationEvents": [
20+
"onStartupFinished",
21+
"workspaceContains:.taskmaster/**"
22+
],
1523
"contributes": {
1624
"viewsContainers": {
1725
"activitybar": [
@@ -139,7 +147,11 @@
139147
},
140148
"taskmaster.ui.theme": {
141149
"type": "string",
142-
"enum": ["auto", "light", "dark"],
150+
"enum": [
151+
"auto",
152+
"light",
153+
"dark"
154+
],
143155
"default": "auto",
144156
"description": "UI theme preference"
145157
},
@@ -200,7 +212,12 @@
200212
},
201213
"taskmaster.debug.logLevel": {
202214
"type": "string",
203-
"enum": ["error", "warn", "info", "debug"],
215+
"enum": [
216+
"error",
217+
"warn",
218+
"info",
219+
"debug"
220+
],
204221
"default": "info",
205222
"description": "Logging level"
206223
},
@@ -239,7 +256,7 @@
239256
"check-types": "tsc --noEmit"
240257
},
241258
"dependencies": {
242-
"task-master-ai": "0.25.0"
259+
"task-master-ai": "0.25.1"
243260
},
244261
"devDependencies": {
245262
"@dnd-kit/core": "^6.3.1",

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "task-master-ai",
3-
"version": "0.25.0",
3+
"version": "0.25.1",
44
"description": "A task management system for ambitious AI-driven development that doesn't overwhelm and confuse Cursor.",
55
"main": "index.js",
66
"type": "module",
@@ -9,7 +9,10 @@
99
"task-master-mcp": "mcp-server/server.js",
1010
"task-master-ai": "mcp-server/server.js"
1111
},
12-
"workspaces": ["apps/*", "."],
12+
"workspaces": [
13+
"apps/*",
14+
"."
15+
],
1316
"scripts": {
1417
"test": "node --experimental-vm-modules node_modules/.bin/jest",
1518
"test:fails": "node --experimental-vm-modules node_modules/.bin/jest --onlyFailures",

0 commit comments

Comments
 (0)