diff --git a/packages/docs/content/docs/developer-updates/2026-08-16-weekly-update-37.mdx b/packages/docs/content/docs/developer-updates/2026-08-16-weekly-update-37.mdx new file mode 100644 index 0000000000..dc92df2438 --- /dev/null +++ b/packages/docs/content/docs/developer-updates/2026-08-16-weekly-update-37.mdx @@ -0,0 +1,24 @@ +--- +title: 'Weekly Update #37' +--- +# Weekly Update #37 + +### TL;DR + +Pochi 0.66 is expected on August 19. It is shaping up to make long-running commands easier to leave in the background without losing momentum, while keeping the changed-files summary focused by showing each edited file only once. + +More below! + +### 🚀 Features + +- **Background jobs will report back automatically:** In Pochi 0.66, long-running commands will be able to continue in the background while Pochi moves on to other work. When a job finishes, Pochi will receive a completion notification, and the job and its output will remain attached to the task so it can inspect the result without repeatedly checking whether the command is done. + + Today, a completed background job can sit unnoticed until Pochi polls it again, slowing down workflows built around development servers, test suites, and other long-running commands. + + This will be most useful on tasks where several steps can continue while a command runs. + +
![Background Job Notification](/images/developer-updates/background-job.png)
+ +### 🐛 Bug Fixes + +- **Each changed file will appear only once:** The task's changed-files summary will recognize absolute and workspace-relative paths as the same file, preventing duplicate entries for a single edit. Diff and undo actions will continue to work from the one remaining entry. [**#1889**](https://github.com/TabbyML/pochi/pull/1889) diff --git a/packages/docs/content/docs/developer-updates/index.mdx b/packages/docs/content/docs/developer-updates/index.mdx index 4640942621..3a65a95f32 100644 --- a/packages/docs/content/docs/developer-updates/index.mdx +++ b/packages/docs/content/docs/developer-updates/index.mdx @@ -16,6 +16,14 @@ Here you will find highlights on features, enhancements, and bug fixes, plus ins --- */} +## [Weekly Update #37](./2026-08-16-weekly-update-37) + +#### August 16, 2026 + +./2026-08-16-weekly-update-37.mdx + +--- + ## [Weekly Update #36](./2026-07-30-weekly-update-36) #### July 30, 2026 diff --git a/packages/docs/public/images/developer-updates/background-job.png b/packages/docs/public/images/developer-updates/background-job.png new file mode 100644 index 0000000000..7dd3f9ecf0 Binary files /dev/null and b/packages/docs/public/images/developer-updates/background-job.png differ