pi-model-profiles 0.3.1 → 0.3.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +53 -48
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,48 +1,53 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ## [0.3.1] - 2026-05-22
11
-
12
- ### Changed
13
- - Reworked debug logging to redact sensitive values and use asynchronous buffered file writes with safe shutdown.
14
- - Updated Pi peer dependencies and runtime imports to the `@earendil-works` scope.
15
-
16
- ### Fixed
17
- - Improved debug log writer lifecycle handling so buffered events flush reliably without opening logs when debug is disabled.
18
-
19
- ## [0.3.0] - 2026-04-30
20
-
21
- ### Changed
22
- - Refined the model profiles modal layout with wider sizing, a single bordered grid, and clearer model table columns.
23
- - Updated the public README screenshot and usage details.
24
- - Bumped Pi peer dependency ranges to `^0.70.6`.
25
-
26
- ## [0.2.0] - 2026-04-26
27
-
28
- ### Added
29
- - Phase 6: Git & publishing preparation.
30
- - NPM package metadata, README, CHANGELOG, LICENSE, and package ignore rules.
31
- - Profile update, removal, persisted sorting, configuration, and file-gated debug logging.
32
-
33
- ### Fixed
34
- - Confirmation prompts now accept typed input before update or removal actions run.
35
- - Sort menu keyboard handling now works consistently and closes without exiting the modal.
36
- - Profile update and removal command handlers now avoid duplicate scans and duplicate removal events.
37
-
38
- ## [0.1.0] - 2026-04-25
39
-
40
- ### Added
41
- - Initial extension structure
42
- - Core profile management functionality
43
- - Frontmatter parser implementation
44
- - Profile store with atomic writes
45
- - Import service for external profiles
46
- - Agent writer for profile application
47
- - Type definitions and error handling
48
- - Test suite for core functionality
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.3.2] - 2026-05-26
11
+
12
+ ### Changed
13
+ - Widened peer dependency ranges to `^0.74.0 || ^0.75.0`.
14
+
15
+ ## [0.3.1] - 2026-05-22
16
+
17
+ ### Changed
18
+ - Reworked debug logging to redact sensitive values and use asynchronous buffered file writes with safe shutdown.
19
+ - Updated Pi peer dependencies and runtime imports to the `@earendil-works` scope.
20
+
21
+ ### Fixed
22
+ - Improved debug log writer lifecycle handling so buffered events flush reliably without opening logs when debug is disabled.
23
+
24
+ ## [0.3.0] - 2026-04-30
25
+
26
+ ### Changed
27
+ - Refined the model profiles modal layout with wider sizing, a single bordered grid, and clearer model table columns.
28
+ - Updated the public README screenshot and usage details.
29
+ - Bumped Pi peer dependency ranges to `^0.70.6`.
30
+
31
+ ## [0.2.0] - 2026-04-26
32
+
33
+ ### Added
34
+ - Phase 6: Git & publishing preparation.
35
+ - NPM package metadata, README, CHANGELOG, LICENSE, and package ignore rules.
36
+ - Profile update, removal, persisted sorting, configuration, and file-gated debug logging.
37
+
38
+ ### Fixed
39
+ - Confirmation prompts now accept typed input before update or removal actions run.
40
+ - Sort menu keyboard handling now works consistently and closes without exiting the modal.
41
+ - Profile update and removal command handlers now avoid duplicate scans and duplicate removal events.
42
+
43
+ ## [0.1.0] - 2026-04-25
44
+
45
+ ### Added
46
+ - Initial extension structure
47
+ - Core profile management functionality
48
+ - Frontmatter parser implementation
49
+ - Profile store with atomic writes
50
+ - Import service for external profiles
51
+ - Agent writer for profile application
52
+ - Type definitions and error handling
53
+ - Test suite for core functionality
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-model-profiles",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "private": false,
5
5
  "description": "Pi extension for saving, importing, and applying agent model frontmatter profiles.",
6
6
  "type": "module",
@@ -57,8 +57,8 @@
57
57
  ]
58
58
  },
59
59
  "peerDependencies": {
60
- "@earendil-works/pi-coding-agent": "^0.75.4",
61
- "@earendil-works/pi-tui": "^0.75.4"
60
+ "@earendil-works/pi-coding-agent": "^0.74.0 || ^0.75.0",
61
+ "@earendil-works/pi-tui": "^0.74.0 || ^0.75.0"
62
62
  },
63
63
  "publishConfig": {
64
64
  "access": "public"