@pinta-ai/pinta-opencode 0.1.0 → 0.2.1
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 +18 -1
- package/dist/core/otlp.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
- Fix `package-lock.json` so CI `npm ci` resolves (regenerated with a full
|
|
6
|
+
install to include rollup's cross-platform optional binaries).
|
|
7
|
+
- Add the publish-to-npm GitHub workflow.
|
|
8
|
+
|
|
9
|
+
## 0.2.0
|
|
10
|
+
|
|
11
|
+
- Unify env var names under the `PINTA_OPENCODE_*` namespace so the adapter,
|
|
12
|
+
Pinta Manager enroll, and the catalog manifest share identical keys
|
|
13
|
+
(`PINTA_OPENCODE_ENDPOINT` / `_GUARD` / `_TOKEN` / `_HEADERS` /
|
|
14
|
+
`_GUARD_TIMEOUT_MS` / `_GUARD_DISABLED`). `OTEL_EXPORTER_OTLP_*` remain as
|
|
15
|
+
vendor-neutral fallbacks.
|
|
16
|
+
- Downstream wiring (separate repos): aware-backend `opencode` ingest slice,
|
|
17
|
+
Manager `opencode-plugin` enroll, catalog entry.
|
|
18
|
+
- Repository org moved `awarecorp` → `pinta-ai`.
|
|
19
|
+
|
|
20
|
+
## 0.1.0
|
|
4
21
|
|
|
5
22
|
Initial implementation — OTLP forwarder + guard for opencode, as an in-process plugin.
|
|
6
23
|
|
package/dist/core/otlp.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import crypto from "crypto";
|
|
2
2
|
import os from "os";
|
|
3
3
|
import { redact, truncate } from "./redact.js";
|
|
4
|
-
const SDK_VERSION = "0.1
|
|
4
|
+
const SDK_VERSION = "0.2.1"; // keep in sync with package.json
|
|
5
5
|
const CROCKFORD = "0123456789ABCDEFGHJKMNPQRSTVWXYZ";
|
|
6
6
|
/** Convert a 26-char Crockford ULID into 32 lowercase hex chars for an OTLP traceId. */
|
|
7
7
|
export function ulidToTraceId(ulid) {
|