@dyyz1993/pi-coding-agent 0.74.31 → 0.74.33

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.74.32] - 2026-05-16
4
+
5
+ ### Added
6
+ - Edge case tests for `_buildIndex()` leaf resolution: multiple side branches, custom-only sessions, production bug simulation, 3-way branch, leaf stability across reloads, compaction entries, broken chain handling.
7
+ - `countUserMessagesOnPath()` tests: compaction entries, non-existent entry, root navigation.
8
+
9
+ ### Fixed
10
+ - Case 11 test now expects `navigateTree` to reject rollback-to-root (safety guard prevents message loss).
11
+ - Corrected "leaf stays stable" test: side branch must be shallower than main chain for correct deepest-terminal resolution.
12
+ - Corrected "custom-only session" test expectation: `_persist()` defers writes until an assistant message exists, so reload yields `null` leafId by design.
13
+
3
14
  ## [0.74.31] - 2026-05-15
4
15
 
5
16
  ## [0.74.27] - 2026-05-15
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider",
3
- "version": "0.74.18",
3
+ "version": "0.74.20",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-custom-provider",
9
- "version": "0.74.18",
9
+ "version": "0.74.20",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.52.0"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.74.18",
4
+ "version": "0.74.20",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.74.18",
4
+ "version": "0.74.20",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-sandbox",
3
- "version": "1.4.18",
3
+ "version": "1.4.20",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-sandbox",
9
- "version": "1.4.18",
9
+ "version": "1.4.20",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sandbox-runtime": "^0.0.26"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-sandbox",
3
3
  "private": true,
4
- "version": "1.4.18",
4
+ "version": "1.4.20",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pi-extension-with-deps",
3
- "version": "0.74.18",
3
+ "version": "0.74.20",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pi-extension-with-deps",
9
- "version": "0.74.18",
9
+ "version": "0.74.20",
10
10
  "dependencies": {
11
11
  "ms": "^2.1.3"
12
12
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.74.18",
4
+ "version": "0.74.20",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dyyz1993/pi-coding-agent",
3
- "version": "0.74.31",
3
+ "version": "0.74.33",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "piConfig": {
@@ -39,9 +39,9 @@
39
39
  "prepublishOnly": "npm run clean && npm run build"
40
40
  },
41
41
  "dependencies": {
42
- "@dyyz1993/pi-agent-core": "^0.74.31",
43
- "@dyyz1993/pi-ai": "^0.74.31",
44
- "@dyyz1993/pi-tui": "^0.74.31",
42
+ "@dyyz1993/pi-agent-core": "^0.74.33",
43
+ "@dyyz1993/pi-ai": "^0.74.33",
44
+ "@dyyz1993/pi-tui": "^0.74.33",
45
45
  "@modelcontextprotocol/sdk": "^1.29.0",
46
46
  "@silvia-odwyer/photon-node": "^0.3.4",
47
47
  "chalk": "^5.5.0",