Skip to content

Conversation

@mrubens
Copy link
Collaborator

@mrubens mrubens commented Aug 15, 2025

🚀 Release v1.51.0

This PR contains the version bump for the SDK release v1.51.0.

Changes

  • Bumped version from previous to v1.51.0
  • Published to npm as @roo-code/[email protected]

Checklist

  • Version bumped
  • Package published to npm
  • Changelog updated (if applicable)
  • Documentation updated (if applicable)

This PR was automatically created by the npm publish script.


Important

Bump SDK version to v1.51.0 and add resumeTask method to task management.

  • Version Update:
    • Bumped version to v1.51.0 in package.metadata.json.
    • Published to npm as @roo-code/[email protected].
  • Task Management:
    • Added resumeTask(taskId: string): void to TaskProviderLike in task.ts.
    • Implemented resumeTask(taskId: string) in ClineProvider in ClineProvider.ts to handle task resumption using showTaskWithId method.

This description was created by Ellipsis for 170ea5d. You can customize this summary. It will automatically update as commits are pushed.

@mrubens mrubens requested review from cte and jr as code owners August 15, 2025 16:26
@dosubot dosubot bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Aug 15, 2025
Copy link
Contributor

@roomote roomote bot left a 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.

@dosubot dosubot bot added size:S This PR changes 10-29 lines, ignoring generated files. and removed size:XS This PR changes 0-9 lines, ignoring generated files. labels Aug 15, 2025
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}`)
Copy link
Contributor

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.

Suggested change
this.log(`Failed to resume task ${taskId}: ${error.message}`)
this.log(`Failed to resume task ${taskId}: ${error instanceof Error ? error.message : String(error)}`)

@mrubens mrubens merged commit 6274273 into main Aug 15, 2025
12 checks passed
@mrubens mrubens deleted the roo-code-types-v1.51.0 branch August 15, 2025 16:42
@github-project-automation github-project-automation bot moved this from New to Done in Roo Code Roadmap Aug 15, 2025
@github-project-automation github-project-automation bot moved this from Triage to Done in Roo Code Roadmap Aug 15, 2025
fxcl added a commit to tameslabs/Roo-Cline that referenced this pull request Aug 16, 2025
* 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)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:S This PR changes 10-29 lines, ignoring generated files.

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

2 participants