pi-edit-session-in-place 0.1.7 → 0.1.8

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
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## [0.1.8] - 2026-05-01
8
+
9
+ ### Changed
10
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` / `@mariozechner/pi-tui` `0.72.0`
11
+ - regenerated the npm lockfile against the current stable dependency graph
12
+ - aligned pi core peer metadata with current pi package guidance
13
+
14
+ ### Compatibility
15
+ - reviewed the pi `0.72.0` changelog and confirmed the extension still uses supported command, shortcut, and session APIs without relying on provider thinking metadata
16
+
17
+
7
18
  ## [0.1.7] - 2026-05-01
8
19
 
9
20
  ### Changed
package/README.md CHANGED
@@ -6,11 +6,11 @@ A [pi](https://github.com/badlogic/pi-mono) extension that lets you rewind to an
6
6
 
7
7
  Tested with:
8
8
 
9
- - `@mariozechner/pi-coding-agent` `0.71.1`
10
- - `@mariozechner/pi-tui` `0.71.1`
9
+ - `@mariozechner/pi-coding-agent` `0.72.0`
10
+ - `@mariozechner/pi-tui` `0.72.0`
11
11
  - Node.js `>=20.6.0`
12
12
 
13
- Local development and verification in this repo target pi `0.71.1`. `@mariozechner/pi-coding-agent` stays in `devDependencies` for local typechecking and tests, while the extension relies on pi's bundled runtime packages at execution time.
13
+ Local development and verification in this repo target pi `0.72.0`. `@mariozechner/pi-coding-agent` stays in `devDependencies` for local typechecking and tests, while pi core packages are declared as wildcard peers and the extension relies on pi's bundled runtime packages at execution time.
14
14
 
15
15
  ## What it does
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-edit-session-in-place",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "pi extension that lets you re-edit or delete an earlier user message in the current session branch",
5
5
  "author": "Mitch Fultz (https://github.com/fitchmultz)",
6
6
  "license": "MIT",
@@ -38,14 +38,15 @@
38
38
  "LICENSE"
39
39
  ],
40
40
  "peerDependencies": {
41
- "@mariozechner/pi-tui": "*"
41
+ "@mariozechner/pi-tui": "*",
42
+ "@mariozechner/pi-coding-agent": "*"
42
43
  },
43
44
  "engines": {
44
45
  "node": ">=20.6.0"
45
46
  },
46
47
  "devDependencies": {
47
- "@mariozechner/pi-coding-agent": "^0.71.1",
48
- "@mariozechner/pi-tui": "^0.71.1",
48
+ "@mariozechner/pi-coding-agent": "^0.72.0",
49
+ "@mariozechner/pi-tui": "^0.72.0",
49
50
  "@types/node": "^25.6.0",
50
51
  "typescript": "^6.0.3"
51
52
  },