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

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,26 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## [0.1.9] - 2026-05-07
8
+
9
+ ### Changed
10
+ - migrated the local pi development baseline and peer metadata from deprecated `@mariozechner/*` packages to maintained `@earendil-works/*` `0.74.0`
11
+ - regenerated the npm lockfile against the current stable dependency graph
12
+
13
+ ### Compatibility
14
+ - reviewed the pi `0.74.0` changelog and confirmed the extension still uses supported command, shortcut, and session APIs
15
+
16
+ ## [0.1.8] - 2026-05-01
17
+
18
+ ### Changed
19
+ - updated the local pi development baseline to `@mariozechner/pi-coding-agent` / `@mariozechner/pi-tui` `0.72.0`
20
+ - regenerated the npm lockfile against the current stable dependency graph
21
+ - aligned pi core peer metadata with current pi package guidance
22
+
23
+ ### Compatibility
24
+ - 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
25
+
26
+
7
27
  ## [0.1.7] - 2026-05-01
8
28
 
9
29
  ### 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
+ - `@earendil-works/pi-coding-agent` `0.74.0`
10
+ - `@earendil-works/pi-tui` `0.74.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.74.0`. `@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
 
@@ -20,7 +20,7 @@ import {
20
20
  type KeybindingsManager,
21
21
  type SessionEntry,
22
22
  type Theme,
23
- } from "@mariozechner/pi-coding-agent";
23
+ } from "@earendil-works/pi-coding-agent";
24
24
  import {
25
25
  Container,
26
26
  Editor,
@@ -32,7 +32,7 @@ import {
32
32
  type EditorTheme,
33
33
  type Focusable,
34
34
  type TUI,
35
- } from "@mariozechner/pi-tui";
35
+ } from "@earendil-works/pi-tui";
36
36
 
37
37
  const HOTKEY = Key.ctrlShift("e");
38
38
  const HOTKEY_LABEL = "Ctrl+Shift+E";
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.9",
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,24 +38,25 @@
38
38
  "LICENSE"
39
39
  ],
40
40
  "peerDependencies": {
41
- "@mariozechner/pi-tui": "*"
41
+ "@earendil-works/pi-coding-agent": "*",
42
+ "@earendil-works/pi-tui": "*"
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",
49
- "@types/node": "^25.6.0",
48
+ "@earendil-works/pi-coding-agent": "^0.74.0",
49
+ "@earendil-works/pi-tui": "^0.74.0",
50
+ "@types/node": "^25.6.1",
50
51
  "typescript": "^6.0.3"
51
52
  },
52
53
  "overrides": {
53
- "basic-ftp": "5.3.0"
54
+ "basic-ftp": "6.0.1"
54
55
  },
55
56
  "pi": {
56
57
  "extensions": [
57
58
  "./extensions"
58
59
  ]
59
60
  },
60
- "packageManager": "npm@10.9.8"
61
+ "packageManager": "npm@11.14.0"
61
62
  }