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

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 ADDED
@@ -0,0 +1,79 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## Unreleased
6
+
7
+ ## [0.1.7] - 2026-05-01
8
+
9
+ ### Changed
10
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` / `@mariozechner/pi-tui` `0.71.1`
11
+ - regenerated the npm lockfile against the current stable dependency graph
12
+
13
+ ### Compatibility
14
+ - reviewed the pi `0.71.1` changelog and confirmed the extension still uses supported command, shortcut, and session APIs without relying on removed providers or stale session-replacement objects
15
+
16
+
17
+ ## [0.1.6] - 2026-04-23
18
+
19
+ ### Changed
20
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` `0.70.0`
21
+ - regenerated the npm lockfile against the current stable dependency graph
22
+
23
+ ### Compatibility
24
+ - reviewed the pi `0.70.0` changelog and confirmed the extension still relies on supported extension APIs without needing the TypeBox migration surface at runtime or the changed terminal progress defaults
25
+
26
+
27
+ ## [0.1.5] - 2026-04-21
28
+
29
+ ### Changed
30
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` `0.68.0`
31
+ - regenerated the npm lockfile against the current stable dependency graph
32
+
33
+ ### Compatibility
34
+ - reviewed the pi `0.68.0` changelog and confirmed the extension already relies on current extension APIs rather than removed cwd-bound tool exports
35
+
36
+ ## [0.1.4] - 2026-04-18
37
+
38
+ ### Changed
39
+ - bumped the local pi development baseline to `@mariozechner/pi-coding-agent` / `@mariozechner/pi-tui` `0.67.68` and `typescript` `6.0.3`
40
+ - refreshed the release lockfile against the current stable pi patch line
41
+
42
+ ### Fixed
43
+ - pinned the transitive `basic-ftp` dependency to `5.3.0` to clear the current audit finding during verification and publish checks
44
+
45
+ ## [0.1.3] - 2026-04-16
46
+
47
+ ### Changed
48
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` / `@mariozechner/pi-tui` `0.67.4`
49
+ - aligned `packageManager` metadata to `npm@10.9.8`, the latest stable npm line compatible with the declared Node runtime floor
50
+ - removed the published `@mariozechner/pi-coding-agent` peer dependency so installs rely on pi's bundled runtime while local development keeps the package in `devDependencies`
51
+
52
+ ## [0.1.2] - 2026-04-15
53
+
54
+ ### Changed
55
+ - refreshed the local development and release baseline to pi `0.67.2`, `typescript` `6.0.2`, and `@types/node` `25.6.0`
56
+ - pinned `packageManager` to `npm@11.12.1` and updated the README compatibility notes to match the verified pi baseline
57
+ - refreshed the compatible transitive development dependency set in the lockfile without changing the published `/edit-turn` runtime behavior
58
+
59
+ ## [0.1.1] - 2026-04-11
60
+
61
+ ### Changed
62
+ - tightened local release verification with `npm run verify`, including clean test builds, typechecking, and package dry-run validation
63
+ - documented tested runtime compatibility and local development/release workflow in `README.md`
64
+ - aligned published pi core package peer dependencies with current official pi package guidance
65
+
66
+ ### Fixed
67
+ - hardened external editor handling for `Ctrl+G` by parsing quoted editor commands more reliably and preserving Windows-style paths
68
+ - moved temporary editor files into a private temporary directory with safer cleanup
69
+ - kept `Ctrl+Shift+E` hotkey behavior working while also registering the shortcut for pi shortcut discovery/diagnostics
70
+ - added regression coverage for editor command parsing, environment resolution, and newline trimming
71
+ - patched the transitive `basic-ftp` vulnerability via `overrides`
72
+
73
+ ## [0.1.0] - 2026-04-11
74
+
75
+ ### Added
76
+ - initial public release of `pi-edit-session-in-place`
77
+ - `/edit-turn` command and `Ctrl+Shift+E` hotkey for rewinding and editing or deleting earlier user messages in the current session branch
78
+ - picker/editor UI for choosing and editing previous user messages
79
+ - regression tests for editable-message extraction and ordering
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.67.4`
10
- - `@mariozechner/pi-tui` `0.67.4`
9
+ - `@mariozechner/pi-coding-agent` `0.71.1`
10
+ - `@mariozechner/pi-tui` `0.71.1`
11
11
  - Node.js `>=20.6.0`
12
12
 
13
- Local development and verification in this repo target pi `0.67.4`. `@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.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.
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.5",
3
+ "version": "0.1.7",
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",
@@ -34,6 +34,7 @@
34
34
  "files": [
35
35
  "extensions",
36
36
  "README.md",
37
+ "CHANGELOG.md",
37
38
  "LICENSE"
38
39
  ],
39
40
  "peerDependencies": {
@@ -43,7 +44,8 @@
43
44
  "node": ">=20.6.0"
44
45
  },
45
46
  "devDependencies": {
46
- "@mariozechner/pi-coding-agent": "^0.69.0",
47
+ "@mariozechner/pi-coding-agent": "^0.71.1",
48
+ "@mariozechner/pi-tui": "^0.71.1",
47
49
  "@types/node": "^25.6.0",
48
50
  "typescript": "^6.0.3"
49
51
  },