pi-edit-session-in-place 0.1.10 → 0.1.11

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,14 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## [0.1.11] - 2026-05-23
8
+
9
+ ### Changed
10
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-tui` `0.75.5`, refreshed Node tooling, and regenerated the npm lockfile
11
+
12
+ ### Compatibility
13
+ - reviewed the pi `0.75.5` changelog and package guidance; the extension still uses supported command, shortcut, and session APIs
14
+
7
15
  ## [0.1.10] - 2026-05-18
8
16
 
9
17
  ### 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
- - `@earendil-works/pi-coding-agent` `0.75.3`
10
- - `@earendil-works/pi-tui` `0.75.3`
9
+ - `@earendil-works/pi-coding-agent` `0.75.4`
10
+ - `@earendil-works/pi-tui` `0.75.4`
11
11
  - Node.js `>=22.19.0`
12
12
 
13
- Local development and verification in this repo target pi `0.75.3`. `@earendil-works/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.
13
+ Local development and verification in this repo target pi `0.75.4`. `@earendil-works/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.10",
3
+ "version": "0.1.11",
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",
@@ -45,9 +45,9 @@
45
45
  "node": ">=22.19.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@earendil-works/pi-coding-agent": "^0.75.3",
49
- "@earendil-works/pi-tui": "^0.75.3",
50
- "@types/node": "^25.6.1",
48
+ "@earendil-works/pi-coding-agent": "^0.75.5",
49
+ "@earendil-works/pi-tui": "^0.75.5",
50
+ "@types/node": "^25.9.1",
51
51
  "typescript": "^6.0.3"
52
52
  },
53
53
  "overrides": {
@@ -58,5 +58,5 @@
58
58
  "./extensions"
59
59
  ]
60
60
  },
61
- "packageManager": "npm@11.14.0"
61
+ "packageManager": "npm@11.15.0"
62
62
  }