From 2a1a52a6749e4d8fa2f168e5f2256252b00d7cf2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 19:49:43 +0000 Subject: [PATCH 1/2] chore(main): release diffy-explain-ai 1.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dd8fde7..0d1bebe 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.5.0" + ".": "1.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index be3cae4..37075ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to the "diffy-explain-ai" extension will be documented in th Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. +## [1.6.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.5.0...diffy-explain-ai-v1.6.0) (2025-11-07) + + +### ✨ Features + +* **diffy:** add configurable large diff threshold ([324d811](https://github.com/Hi7cl4w/diffy-explain-ai/commit/324d811a10ae78fcd6e2942d9fe3deec68f4b810)) +* **git:** add silent option to getDiffAndWarnUser method ([4edc49a](https://github.com/Hi7cl4w/diffy-explain-ai/commit/4edc49a486782a97e230cc36adb8af86d48b82f0)) + + +### 🐛 Bug Fixes + +* **git:** do not warn message on updateStagedChanges ([6f3813d](https://github.com/Hi7cl4w/diffy-explain-ai/commit/6f3813d9f173e044f74802d41d80f50cc2fa550f)) +* remove unused imports and organize imports ([48975ce](https://github.com/Hi7cl4w/diffy-explain-ai/commit/48975ce595130c238023f43301f43a27c3a78574)) + ## [1.5.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.4.1...diffy-explain-ai-v1.5.0) (2025-11-06) diff --git a/package-lock.json b/package-lock.json index 394845b..912d293 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "diffy-explain-ai", - "version": "1.5.0", + "version": "1.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "diffy-explain-ai", - "version": "1.5.0", + "version": "1.6.0", "dependencies": { "@google/genai": "^1.28.0", "axios": "^1.12.0", diff --git a/package.json b/package.json index 16ff4b1..269aba7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "diffy-explain-ai", "displayName": "Diffy - AI Commit Messages with Context", "description": "Generate Commit Message for You or Explains The Changed Code Using Git Diff And OpenAi In Natural Language", - "version": "1.5.0", + "version": "1.6.0", "publisher": "hitclaw", "engines": { "vscode": "^1.105.0" From 264481dcafaf040ff7d6f77326ae2fd632da3ae4 Mon Sep 17 00:00:00 2001 From: Manu K Date: Sat, 8 Nov 2025 01:23:05 +0530 Subject: [PATCH 2/2] docs(changelog): update and tidy changelog entries for v1.6.0 --- CHANGELOG.md | 128 ++++++++++++++++++++++++--------------------------- 1 file changed, 59 insertions(+), 69 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37075ee..43e479c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,74 +4,64 @@ All notable changes to the "diffy-explain-ai" extension will be documented in th Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -## [1.6.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.5.0...diffy-explain-ai-v1.6.0) (2025-11-07) - - -### ✨ Features - -* **diffy:** add configurable large diff threshold ([324d811](https://github.com/Hi7cl4w/diffy-explain-ai/commit/324d811a10ae78fcd6e2942d9fe3deec68f4b810)) -* **git:** add silent option to getDiffAndWarnUser method ([4edc49a](https://github.com/Hi7cl4w/diffy-explain-ai/commit/4edc49a486782a97e230cc36adb8af86d48b82f0)) - - -### 🐛 Bug Fixes - -* **git:** do not warn message on updateStagedChanges ([6f3813d](https://github.com/Hi7cl4w/diffy-explain-ai/commit/6f3813d9f173e044f74802d41d80f50cc2fa550f)) -* remove unused imports and organize imports ([48975ce](https://github.com/Hi7cl4w/diffy-explain-ai/commit/48975ce595130c238023f43301f43a27c3a78574)) - -## [1.5.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.4.1...diffy-explain-ai-v1.5.0) (2025-11-06) - - -### ✨ Features - -* add Git staging event listeners and diff pre-warming ([228eb08](https://github.com/Hi7cl4w/diffy-explain-ai/commit/228eb08a0fec513bd91bca5557921ba8fbded049)) - -## [1.4.1](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.4.0...diffy-explain-ai-v1.4.1) (2025-11-06) - - -### ⚡ Performance Improvements - -* improve performance with parallel processing, optimized caching, and pre-initialization ([a9a492e](https://github.com/Hi7cl4w/diffy-explain-ai/commit/a9a492e95551c1a95303c29db9bfdc60e00ae215)) - -## [1.4.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.3.0...diffy-explain-ai-v1.4.0) (2025-11-06) - - -### ✨ Features - -* **config:** add codebase indexing strategy setting ([8f27ee7](https://github.com/Hi7cl4w/diffy-explain-ai/commit/8f27ee7f5c6eb801fab8237180a3e20ea8471733)) -* **diff:** integrate DiffAnalyzer with structured mode ([d15fa30](https://github.com/Hi7cl4w/diffy-explain-ai/commit/d15fa30389ed27457a7c6cd9ff555fa8c0cfe4a4)) -* **indexing:** implement multi-strategy codebase indexing ([7210f9e](https://github.com/Hi7cl4w/diffy-explain-ai/commit/7210f9e67ac759605a80e6a995b66796beab8859)) -* **service:** add DiffAnalyzer for analyzing git diffs ([dcb188e](https://github.com/Hi7cl4w/diffy-explain-ai/commit/dcb188edcef78ad17b7216b8e6522f0849a9a6ec)) - - -### ♻️ Code Refactoring - -* **logging:** replace sendToOutput with structured logger ([b03fdde](https://github.com/Hi7cl4w/diffy-explain-ai/commit/b03fddef78ab14616e7c538f98406da3544a8f03)) - -## [1.3.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.2.1...diffy-explain-ai-v1.3.0) (2025-11-04) - - -### ✨ Features - -* add codebase indexing service and improve configuration handling ([b53f132](https://github.com/Hi7cl4w/diffy-explain-ai/commit/b53f1325e2b243d6aab8fc6b9294ac5bac06fed5)) -* add support for Grok Code Fast 1 and GPT-5 mini Copilot models ([869eb03](https://github.com/Hi7cl4w/diffy-explain-ai/commit/869eb036770344a00b3babf30b44ebfd8f30c4cc)) - - -### 📝 Documentation - -* **changelog:** update for version 1.2.0 and unreleased fixes ([e2c0a8d](https://github.com/Hi7cl4w/diffy-explain-ai/commit/e2c0a8d0fc820de94ef2f4a21f90d1bc2daae785)) -* enhance README with comprehensive features, installation, and configuration details ([cce7142](https://github.com/Hi7cl4w/diffy-explain-ai/commit/cce7142bb2337f8864407e76d5f5d32eb82bcb35)) -* update README with new Copilot models and codebase indexing features ([f1dfca5](https://github.com/Hi7cl4w/diffy-explain-ai/commit/f1dfca5bffd3c997a0766d2bf8952573eee5987c)) - - -### 💅 Styles - -* apply code formatting and linting fixes ([4d73066](https://github.com/Hi7cl4w/diffy-explain-ai/commit/4d730665a8d21e72415a88858e566388b4219ac9)) - - -### 🔧 Continuous Integration - -* **release:** update workflow to use dynamic release body and automate changelog commits ([8cedee2](https://github.com/Hi7cl4w/diffy-explain-ai/commit/8cedee2d740b8ff5bfc035927b9d97362330a91e)) - +## [1.6.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.5.0...diffy-explain-ai-v1.6.0) (2025-11-07) + +### ✨ Features + +* **diffy:** add configurable large diff threshold ([324d811](https://github.com/Hi7cl4w/diffy-explain-ai/commit/324d811a10ae78fcd6e2942d9fe3deec68f4b810)) + +### 🐛 Bug Fixes + +* **git:** do not warn message on updateStagedChanges ([4edc49a](https://github.com/Hi7cl4w/diffy-explain-ai/commit/4edc49a486782a97e230cc36adb8af86d48b82f0)) + +* remove unused imports and organize imports ([48975ce](https://github.com/Hi7cl4w/diffy-explain-ai/commit/48975ce595130c238023f43301f43a27c3a78574)) + +## [1.5.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.4.1...diffy-explain-ai-v1.5.0) (2025-11-06) + +### ✨ Features + +* add Git staging event listeners and diff pre-warming ([228eb08](https://github.com/Hi7cl4w/diffy-explain-ai/commit/228eb08a0fec513bd91bca5557921ba8fbded049)) + +## [1.4.1](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.4.0...diffy-explain-ai-v1.4.1) (2025-11-06) + +### ⚡ Performance Improvements + +* improve performance with parallel processing, optimized caching, and pre-initialization ([a9a492e](https://github.com/Hi7cl4w/diffy-explain-ai/commit/a9a492e95551c1a95303c29db9bfdc60e00ae215)) + +## [1.4.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.3.0...diffy-explain-ai-v1.4.0) (2025-11-06) + +### ✨ Features + +* **config:** add codebase indexing strategy setting ([8f27ee7](https://github.com/Hi7cl4w/diffy-explain-ai/commit/8f27ee7f5c6eb801fab8237180a3e20ea8471733)) +* **diff:** integrate DiffAnalyzer with structured mode ([d15fa30](https://github.com/Hi7cl4w/diffy-explain-ai/commit/d15fa30389ed27457a7c6cd9ff555fa8c0cfe4a4)) +* **indexing:** implement multi-strategy codebase indexing ([7210f9e](https://github.com/Hi7cl4w/diffy-explain-ai/commit/7210f9e67ac759605a80e6a995b66796beab8859)) +* **service:** add DiffAnalyzer for analyzing git diffs ([dcb188e](https://github.com/Hi7cl4w/diffy-explain-ai/commit/dcb188edcef78ad17b7216b8e6522f0849a9a6ec)) + +### ♻️ Code Refactoring + +* **logging:** replace sendToOutput with structured logger ([b03fdde](https://github.com/Hi7cl4w/diffy-explain-ai/commit/b03fddef78ab14616e7c538f98406da3544a8f03)) + +## [1.3.0](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.2.1...diffy-explain-ai-v1.3.0) (2025-11-04) + +### ✨ Features + +* add codebase indexing service and improve configuration handling ([b53f132](https://github.com/Hi7cl4w/diffy-explain-ai/commit/b53f1325e2b243d6aab8fc6b9294ac5bac06fed5)) +* add support for Grok Code Fast 1 and GPT-5 mini Copilot models ([869eb03](https://github.com/Hi7cl4w/diffy-explain-ai/commit/869eb036770344a00b3babf30b44ebfd8f30c4cc)) + +### 📝 Documentation + +* **changelog:** update for version 1.2.0 and unreleased fixes ([e2c0a8d](https://github.com/Hi7cl4w/diffy-explain-ai/commit/e2c0a8d0fc820de94ef2f4a21f90d1bc2daae785)) +* enhance README with comprehensive features, installation, and configuration details ([cce7142](https://github.com/Hi7cl4w/diffy-explain-ai/commit/cce7142bb2337f8864407e76d5f5d32eb82bcb35)) +* update README with new Copilot models and codebase indexing features ([f1dfca5](https://github.com/Hi7cl4w/diffy-explain-ai/commit/f1dfca5bffd3c997a0766d2bf8952573eee5987c)) + +### 💅 Styles + +* apply code formatting and linting fixes ([4d73066](https://github.com/Hi7cl4w/diffy-explain-ai/commit/4d730665a8d21e72415a88858e566388b4219ac9)) + +### 🔧 Continuous Integration + +* **release:** update workflow to use dynamic release body and automate changelog commits ([8cedee2](https://github.com/Hi7cl4w/diffy-explain-ai/commit/8cedee2d740b8ff5bfc035927b9d97362330a91e)) + ## [1.2.1](https://github.com/Hi7cl4w/diffy-explain-ai/compare/diffy-explain-ai-v1.2.0...diffy-explain-ai-v1.2.1) (2025-11-03) ### 💅 Styles @@ -238,4 +228,4 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ### Additional Bug Fixes -* Bug Fixes +* Bug Fixes