@hienlh/ppm 0.9.96 → 0.9.97

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.97] - 2026-04-15
4
+
5
+ ### Fixed
6
+ - **Git Graph duplicate stash entries**: Same stash appeared twice — once as `refs/stash` from `git log --all` and once as `stash@{0}` from `git stash list`. Excluded `refs/stash` from log query since stashes have dedicated rendering.
7
+
3
8
  ## [0.9.96] - 2026-04-15
4
9
 
5
10
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hienlh/ppm",
3
- "version": "0.9.96",
3
+ "version": "0.9.97",
4
4
  "description": "Personal Project Manager — mobile-first web IDE with AI assistance",
5
5
  "author": "hienlh",
6
6
  "license": "MIT",
@@ -434,7 +434,8 @@ async function handleRequestCommits(
434
434
  if (branch && branch !== "all") {
435
435
  args.push(branch);
436
436
  } else {
437
- args.push("--all");
437
+ // Exclude stash refs — stashes are loaded separately via handleStashes
438
+ args.push("--exclude=refs/stash", "--all");
438
439
  }
439
440
 
440
441
  const result = await spawnGit(vscode, args, projectPath);