autotel-eventcatalog 4.0.0 → 4.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 4ce86fc: Refresh package dependencies across the workspace and keep generated lockfile state in sync.
8
+
9
+ Add OTLP/protobuf ingestion support to `autotel-devtools` for traces, logs, and metrics. The devtools HTTP receiver now accepts both OTLP/JSON and OTLP/protobuf payloads on the existing `/v1/traces`, `/v1/logs`, and `/v1/metrics` endpoints, decodes protobuf payloads with embedded OTLP schemas, and includes interop coverage using the OpenTelemetry protobuf serializers.
10
+
11
+ - Updated dependencies [4ce86fc]
12
+ - autotel-subscribers@34.1.1
13
+
3
14
  ## 4.0.0
4
15
 
5
16
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autotel-eventcatalog",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Diff your autotel architecture snapshot against an EventCatalog and report drift. Same model as Pact, for event architectures.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -51,15 +51,15 @@
51
51
  "autotel-subscribers": "*"
52
52
  },
53
53
  "devDependencies": {
54
- "@types/node": "^25.7.0",
55
- "rimraf": "^6.0.1",
54
+ "@types/node": "^25.9.1",
55
+ "rimraf": "^6.1.3",
56
56
  "tsup": "^8.5.1",
57
57
  "typescript": "^6.0.3",
58
- "vitest": "^4.1.6",
59
- "autotel-subscribers": "34.1.0"
58
+ "vitest": "^4.1.7",
59
+ "autotel-subscribers": "34.1.1"
60
60
  },
61
61
  "dependencies": {
62
- "@eventcatalog/sdk": "^2.21.2"
62
+ "@eventcatalog/sdk": "^2.24.1"
63
63
  },
64
64
  "scripts": {
65
65
  "build": "tsup",