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

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.10] - 2026-05-18
8
+
9
+ ### Changed
10
+ - updated the local pi development baseline to `@earendil-works/pi-coding-agent` / `@earendil-works/pi-tui` `0.75.3` and refreshed the npm lockfile
11
+ - raised the documented Node.js tooling floor to `>=22.19.0`
12
+ - removed legacy Ralph task metadata and ignored local `.cueloop/` runtime state
13
+
14
+ ### Compatibility
15
+ - reviewed current pi `0.75.3` package and extension guidance; the extension continues to use supported command, shortcut, and session APIs
16
+
17
+
18
+ ## [0.1.9] - 2026-05-07
19
+
20
+ ### Changed
21
+ - migrated the local pi development baseline and peer metadata from deprecated `@mariozechner/*` packages to maintained `@earendil-works/*` `0.74.0`
22
+ - regenerated the npm lockfile against the current stable dependency graph
23
+
24
+ ### Compatibility
25
+ - reviewed the pi `0.74.0` changelog and confirmed the extension still uses supported command, shortcut, and session APIs
26
+
7
27
  ## [0.1.8] - 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.72.0`
10
- - `@mariozechner/pi-tui` `0.72.0`
11
- - Node.js `>=20.6.0`
9
+ - `@earendil-works/pi-coding-agent` `0.75.3`
10
+ - `@earendil-works/pi-tui` `0.75.3`
11
+ - Node.js `>=22.19.0`
12
12
 
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.
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.
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.8",
3
+ "version": "0.1.10",
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,25 +38,25 @@
38
38
  "LICENSE"
39
39
  ],
40
40
  "peerDependencies": {
41
- "@mariozechner/pi-tui": "*",
42
- "@mariozechner/pi-coding-agent": "*"
41
+ "@earendil-works/pi-coding-agent": "*",
42
+ "@earendil-works/pi-tui": "*"
43
43
  },
44
44
  "engines": {
45
- "node": ">=20.6.0"
45
+ "node": ">=22.19.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@mariozechner/pi-coding-agent": "^0.72.0",
49
- "@mariozechner/pi-tui": "^0.72.0",
50
- "@types/node": "^25.6.0",
48
+ "@earendil-works/pi-coding-agent": "^0.75.3",
49
+ "@earendil-works/pi-tui": "^0.75.3",
50
+ "@types/node": "^25.6.1",
51
51
  "typescript": "^6.0.3"
52
52
  },
53
53
  "overrides": {
54
- "basic-ftp": "5.3.0"
54
+ "basic-ftp": "6.0.1"
55
55
  },
56
56
  "pi": {
57
57
  "extensions": [
58
58
  "./extensions"
59
59
  ]
60
60
  },
61
- "packageManager": "npm@10.9.8"
61
+ "packageManager": "npm@11.14.0"
62
62
  }