From 76993e645b22485d5e032e8bfacb279004a7229b Mon Sep 17 00:00:00 2001 From: Pawan Osman Date: Wed, 15 Jul 2026 15:41:03 +0300 Subject: [PATCH] Update CHANGELOG for version 0.0.4 with new features and improvements - Added per-tool hard timeouts and abort-signal support for long-running tools to enhance responsiveness. - Introduced configurable timeout settings in the agent's configuration. - Implemented GPU-accelerated local embeddings with fallback options, along with detailed indexing page information. - Expanded ignored directories for tools and indexing to improve performance and efficiency. --- CHANGELOG.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ed736..210f34e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to the "ocursor" extension will be documented in this file. Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [0.0.4] - 2026-07-15 + +### Added + +- Per-tool hard timeouts so hung Grep/Glob/Shell/etc. cannot block the agent loop forever +- Abort-signal support for long-running tools (walk, grep, shell) so Stop cancels mid-work +- Configurable per-tool timeout seconds in Settings → Agents +- GPU-accelerated local embeddings when available (DirectML / CUDA / CoreML / WebGPU), with CPU fallback +- Indexing page shows GPU/CPU badge plus model and runtime technical details (repo, dtype, ONNX EP, platform) +- Stricter indexable-file filters (source extensions only; skip lockfiles, minified bundles, binaries) + +### Changed + +- Expanded ignored directories for tools and indexing (`node_modules`, build caches, venvs, vendor, etc.) +- Semantic index walk and file watcher skip non-source trees earlier for faster indexing + ## [0.0.3] - 2026-07-15 ### Added diff --git a/package.json b/package.json index 2b2a8df..8e85cc8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ocursor", "displayName": "OpenCursor Agent", "description": "AI coding agent chat inside VS Code", - "version": "0.0.3", + "version": "0.0.4", "publisher": "pkrd", "license": "MIT", "icon": "media/icon.png",