session-steward 0.5.0 → 0.5.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.
- package/CHANGELOG.md +27 -0
- package/dist/assets/{index-B6C5qvGV.js → index-6OPqaZRp.js} +1 -1
- package/dist/assets/index-Cn_JrqDr.css +2 -0
- package/dist/index.html +2 -2
- package/lib/providers/claude-code/store.mjs +6 -1
- package/lib/providers/codex/database-families.mjs +2 -2
- package/lib/providers/codex/events.mjs +48 -0
- package/lib/providers/codex/store.mjs +82 -4
- package/package.json +4 -6
- package/dist/assets/index-B8U6eLCA.css +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.2] - 2026-08-13
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Reduced fresh installation size by avoiding redundant downloads of UI libraries already included in the bundled interface.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Provider overview metrics now fill the available row evenly without leaving an unused column.
|
|
12
|
+
|
|
13
|
+
## [0.5.1] - 2026-08-12
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Verified and recorded support for Codex CLI 0.147.0, ChatGPT 26.803.61601, Claude Code 2.1.228, and Claude Desktop 1.28929.0.
|
|
18
|
+
- Codex timelines now recognize current compaction, rewind, interrupted-turn, lifecycle, and tool-discovery records.
|
|
19
|
+
- Session attachments that cannot be assigned safely are disclosed and kept unchanged.
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Cleanup now stops when a selected Codex session has an active writer lock, including a second check immediately before session data changes.
|
|
24
|
+
- Codex cleanup explicitly removes and verifies session-owned dynamic tool records.
|
|
25
|
+
- Claude Desktop's shared scheduled-task file is no longer reported as an unrecognized session.
|
|
26
|
+
|
|
3
27
|
## [0.5.0] - 2026-08-10
|
|
4
28
|
|
|
5
29
|
### Added
|
|
@@ -81,6 +105,9 @@
|
|
|
81
105
|
- Support for custom Codex home folders and a saved folder preference.
|
|
82
106
|
- Streaming and bounded-memory discovery for large session collections and transcripts.
|
|
83
107
|
|
|
108
|
+
[0.5.2]: https://github.com/mallikcheripally/session-steward/compare/v0.5.1...v0.5.2
|
|
109
|
+
[0.5.1]: https://github.com/mallikcheripally/session-steward/compare/v0.5.0...v0.5.1
|
|
110
|
+
[0.5.0]: https://github.com/mallikcheripally/session-steward/compare/v0.4.0...v0.5.0
|
|
84
111
|
[0.4.0]: https://github.com/mallikcheripally/session-steward/compare/v0.3.0...v0.4.0
|
|
85
112
|
[0.3.0]: https://github.com/mallikcheripally/session-steward/compare/v0.2.0...v0.3.0
|
|
86
113
|
[0.2.0]: https://github.com/mallikcheripally/session-steward/compare/v0.1.1...v0.2.0
|