From 4e591c572491c8d9b7308a1f8bcd249478d32b40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 11:24:36 +0000 Subject: [PATCH] chore: version packages --- .changeset/open-ocpp-trace-export.md | 5 ----- .changeset/open-ocpp-trace-input.md | 5 ----- packages/toolkit/CHANGELOG.md | 7 +++++++ packages/toolkit/package.json | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 .changeset/open-ocpp-trace-export.md delete mode 100644 .changeset/open-ocpp-trace-input.md diff --git a/.changeset/open-ocpp-trace-export.md b/.changeset/open-ocpp-trace-export.md deleted file mode 100644 index a70ebc1..0000000 --- a/.changeset/open-ocpp-trace-export.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@ocpp-debugkit/toolkit': minor ---- - -Write the Open OCPP Trace interchange format. `toOpenOcppTraceRecords()` / `toOpenOcppTraceJsonl()` export any parsed trace as v1.1 records, with `raw` serialized from the stored frame, response `action` back-filled by messageId correlation, and skip-and-flag warnings for events the format cannot represent. A new `ocpp-debugkit convert ` CLI command emits the JSONL, carrying trace-level metadata over from JSON Object inputs. Every exported record is validated against the specification's published JSON Schema in CI, and round-trip tests prove export-then-reparse preserves the consumer view and the events. diff --git a/.changeset/open-ocpp-trace-input.md b/.changeset/open-ocpp-trace-input.md deleted file mode 100644 index 713af49..0000000 --- a/.changeset/open-ocpp-trace-input.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@ocpp-debugkit/toolkit': minor ---- - -Read the Open OCPP Trace interchange format. `parseTrace()` auto-detects it and `parseOpenOcppTrace()` parses it directly, mapping records onto the internal event model with raw-frame precedence, messageId-based action derivation, and unknown-field tolerance. `deriveOpenOcppTraceView()` exposes the format's consumer view, checked in CI against the specification's 15 conformance fixtures. diff --git a/packages/toolkit/CHANGELOG.md b/packages/toolkit/CHANGELOG.md index 13bb67a..edcb452 100644 --- a/packages/toolkit/CHANGELOG.md +++ b/packages/toolkit/CHANGELOG.md @@ -1,5 +1,12 @@ # @ocpp-debugkit/toolkit +## 0.4.0 + +### Minor Changes + +- 0115e85: Write the Open OCPP Trace interchange format. `toOpenOcppTraceRecords()` / `toOpenOcppTraceJsonl()` export any parsed trace as v1.1 records, with `raw` serialized from the stored frame, response `action` back-filled by messageId correlation, and skip-and-flag warnings for events the format cannot represent. A new `ocpp-debugkit convert ` CLI command emits the JSONL, carrying trace-level metadata over from JSON Object inputs. Every exported record is validated against the specification's published JSON Schema in CI, and round-trip tests prove export-then-reparse preserves the consumer view and the events. +- 32e48f0: Read the Open OCPP Trace interchange format. `parseTrace()` auto-detects it and `parseOpenOcppTrace()` parses it directly, mapping records onto the internal event model with raw-frame precedence, messageId-based action derivation, and unknown-field tolerance. `deriveOpenOcppTraceView()` exposes the format's consumer view, checked in CI against the specification's 15 conformance fixtures. + ## 0.3.2 ### Patch Changes diff --git a/packages/toolkit/package.json b/packages/toolkit/package.json index 758cf55..e1c31ae 100644 --- a/packages/toolkit/package.json +++ b/packages/toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@ocpp-debugkit/toolkit", - "version": "0.3.2", + "version": "0.4.0", "description": "Open-source DevTools for debugging OCPP charging sessions — parser, normalizer, timeline, failure detection, scenarios, replay, reports, CLI, and React components.", "license": "Apache-2.0", "type": "module",