@contrail/documents 1.4.0-alpha-otel-logs-1 → 1.4.0

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 CHANGED
@@ -7,6 +7,12 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.4.0] - 2026-03-27
11
+
12
+ ### Added
13
+
14
+ - Structured logging via `@contrail/telemetry`. Requires Node.js 20+.
15
+
10
16
  ## [1.3.25] - (initial changelog entry)
11
17
 
12
18
  - Initial changelog. Prior releases did not include a changelog.
package/lib/index.d.ts CHANGED
@@ -10,4 +10,3 @@ export * from './util/curved-line/point';
10
10
  export * from './util/curved-line/curved-line';
11
11
  export * from './util/callout/callout';
12
12
  export * from './document-frame.service';
13
- export * from './log-something';
package/lib/index.js CHANGED
@@ -26,4 +26,3 @@ __exportStar(require("./util/curved-line/point"), exports);
26
26
  __exportStar(require("./util/curved-line/curved-line"), exports);
27
27
  __exportStar(require("./util/callout/callout"), exports);
28
28
  __exportStar(require("./document-frame.service"), exports);
29
- __exportStar(require("./log-something"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/documents",
3
- "version": "1.4.0-alpha-otel-logs-1",
3
+ "version": "1.4.0",
4
4
  "description": "Documents library for contrail platform",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -1 +0,0 @@
1
- export declare function logSomething(): void;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.logSomething = logSomething;
4
- const telemetry_1 = require("@contrail/telemetry");
5
- function logSomething() {
6
- telemetry_1.logger.info('logSomething from @contrail/documents');
7
- }