From ee4532221aba3d19b56d60ddd1849a9ccdbb130c Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sun, 31 Aug 2025 08:08:27 +0000 Subject: [PATCH] feat(core): Add core TypeScript TSPM implementation: CLI, daemon, client, process management and tests --- changelog.md | 10 ++++++++++ ts/00_commitinfo_data.ts | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index c7c8e29..4be5b27 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,15 @@ # Changelog +## 2025-08-31 - 5.8.0 - feat(core) +Add core TypeScript TSPM implementation: CLI, daemon, client, process management and tests + +- Add CLI entrypoint and command set (start/stop/add/list/logs/daemon/service/stats/reset and batch ops) +- Add daemon implementation with ProcessManager, ProcessMonitor, ProcessWrapper, LogPersistence and config storage +- Add IPC client (tspmIpcClient) and TspmServiceManager for systemd integration using smartipc/smartdaemon +- Introduce shared protocol types, process ID helpers and standardized error codes for stable IPC +- Include tests and test assets for daemon, integration and IPC client scenarios +- Add README and package metadata (package.json, npmextra.json, commitinfo) + ## 2025-08-31 - 5.7.0 - feat(cli) Add 'stats' CLI command and daemon stats aggregation; fix process manager & wrapper state handling diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0552694..c9e6b48 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tspm', - version: '5.7.0', + version: '5.8.0', description: 'a no fuzz process manager' }