-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Release: v1.51.0 #7130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release: v1.51.0 #7130
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution! I've reviewed the changes and found critical issues that need attention before this can be merged.
| resumeTask(taskId: string): void { | ||
| // Use the existing showTaskWithId method which handles both current and historical tasks | ||
| this.showTaskWithId(taskId).catch((error) => { | ||
| this.log(`Failed to resume task ${taskId}: ${error.message}`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new resumeTask() method correctly reuses showTaskWithId to resume tasks. Consider checking if the caught error is an instance of Error (e.g., using error instanceof Error ? error.message : String(error)) for more robust error logging.
| this.log(`Failed to resume task ${taskId}: ${error.message}`) | |
| this.log(`Failed to resume task ${taskId}: ${error instanceof Error ? error.message : String(error)}`) |
* main: (70 commits) fix: use native Ollama API instead of OpenAI compatibility layer (RooCodeInc#7137) feat: add support for OpenAI gpt-5-chat-latest model (RooCodeInc#7058) Make enhance with task history default to true (RooCodeInc#7140) Bump cloud version to 0.16.0 (RooCodeInc#7135) Release: v1.51.0 (RooCodeInc#7130) Add an API for resuming tasks by ID (RooCodeInc#7122) Add support for task page event population (RooCodeInc#7117) fix: add type check before calling .match() on diffItem.content (RooCodeInc#6905) (RooCodeInc#6906) Fix: Enable save button for provider dropdown and checkbox changes (RooCodeInc#7113) fix: Use cline.cwd as primary source for workspace path in codebaseSearchTool (RooCodeInc#6902) Hotfix multiple folder workspace checkpoint (RooCodeInc#6903) fix: prevent XML entity decoding in diff tools (RooCodeInc#7107) (RooCodeInc#7108) Refactor task execution system: improve call stack management (RooCodeInc#7035) Changeset version bump (RooCodeInc#7104) feat(web): fill missing SEO-related values (RooCodeInc#7096) Update contributors list (RooCodeInc#6883) Release v3.25.15 (RooCodeInc#7103) fix: add /evals page to sitemap generation (RooCodeInc#7102) feat: implement sitemap generation in TypeScript and remove XML file (RooCodeInc#6206) fix: reset condensing state when switching tasks (RooCodeInc#6922) ...
🚀 Release v1.51.0
This PR contains the version bump for the SDK release v1.51.0.
Changes
Checklist
This PR was automatically created by the npm publish script.
Important
Bump SDK version to v1.51.0 and add
resumeTaskmethod to task management.v1.51.0inpackage.metadata.json.@roo-code/[email protected].resumeTask(taskId: string): voidtoTaskProviderLikeintask.ts.resumeTask(taskId: string)inClineProviderinClineProvider.tsto handle task resumption usingshowTaskWithIdmethod.This description was created by
for 170ea5d. You can customize this summary. It will automatically update as commits are pushed.