pi-edit-session-in-place 0.1.12 → 0.1.13
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 +9 -0
- package/README.md +3 -3
- package/package.json +13 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## [0.1.13] - 2026-05-28
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-tui` `0.77.0` and regenerated the npm lockfile
|
|
11
|
+
- kept pi runtime packages as optional wildcard peers and removed the Node.js engine upper bound so future pi releases are not blocked at install time
|
|
12
|
+
|
|
13
|
+
### Compatibility
|
|
14
|
+
- reviewed the pi `0.77.0` changelog and package guidance; the extension still uses supported command, shortcut, and session APIs
|
|
15
|
+
|
|
7
16
|
## [0.1.12] - 2026-05-27
|
|
8
17
|
|
|
9
18
|
### 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.
|
|
10
|
-
- `@earendil-works/pi-tui` `0.
|
|
9
|
+
- `@earendil-works/pi-coding-agent` `0.77.0`
|
|
10
|
+
- `@earendil-works/pi-tui` `0.77.0`
|
|
11
11
|
- Node.js `>=22.19.0`
|
|
12
12
|
|
|
13
|
-
Local development and verification in this repo target pi `0.
|
|
13
|
+
Local development and verification in this repo target pi `0.77.0`. `@earendil-works/pi-coding-agent` and `@earendil-works/pi-tui` stay in `devDependencies` for local typechecking and tests, while pi core packages are declared as optional wildcard peers and the extension relies on pi's bundled runtime packages at execution time. That keeps installs forward-open for future pi releases: npm peer ranges should not block users from trying a newer pi, though runtime behavior is only verified against the tested baseline until a follow-up package release confirms it.
|
|
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.
|
|
3
|
+
"version": "0.1.13",
|
|
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",
|
|
@@ -42,11 +42,11 @@
|
|
|
42
42
|
"@earendil-works/pi-tui": "*"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
|
-
"node": ">=22
|
|
45
|
+
"node": ">=22.19.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@earendil-works/pi-coding-agent": "^0.
|
|
49
|
-
"@earendil-works/pi-tui": "^0.
|
|
48
|
+
"@earendil-works/pi-coding-agent": "^0.77.0",
|
|
49
|
+
"@earendil-works/pi-tui": "^0.77.0",
|
|
50
50
|
"@types/node": "^25.9.1",
|
|
51
51
|
"typescript": "^6.0.3"
|
|
52
52
|
},
|
|
@@ -58,5 +58,13 @@
|
|
|
58
58
|
"./extensions"
|
|
59
59
|
]
|
|
60
60
|
},
|
|
61
|
-
"packageManager": "npm@11.
|
|
61
|
+
"packageManager": "npm@11.16.0",
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"@earendil-works/pi-coding-agent": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"@earendil-works/pi-tui": {
|
|
67
|
+
"optional": true
|
|
68
|
+
}
|
|
69
|
+
}
|
|
62
70
|
}
|