@rsdk/kafka.common 5.0.0-next.1 → 5.0.0-next.3

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
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.0-next.3](https://github.com/R-Vision/rsdk/compare/v5.0.0-next.2...v5.0.0-next.3) (2024-07-11)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * generalize tracing headers (#247)
11
+
12
+ ### Features
13
+
14
+ * generalize tracing headers ([#247](https://github.com/R-Vision/rsdk/issues/247)) ([cee2ea6](https://github.com/R-Vision/rsdk/commit/cee2ea65c964705faf133397e285c051672c7512)), closes [#2](https://github.com/R-Vision/rsdk/issues/2) [#3](https://github.com/R-Vision/rsdk/issues/3) [#4](https://github.com/R-Vision/rsdk/issues/4) [#5](https://github.com/R-Vision/rsdk/issues/5)
15
+
16
+ ## [5.0.0-next.2](https://github.com/R-Vision/rsdk/compare/v5.0.0-next.1...v5.0.0-next.2) (2024-07-10)
17
+
18
+ **Note:** Version bump only for package @rsdk/kafka.common
19
+
6
20
  ## [5.0.0-next.1](https://github.com/R-Vision/rsdk/compare/v5.0.0-next.0...v5.0.0-next.1) (2024-07-10)
7
21
 
8
22
  **Note:** Version bump only for package @rsdk/kafka.common
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import type { EventPayload, EventType } from '../event.type';
3
2
  export interface EventCodec<E extends EventType> {
4
3
  decode<P extends EventPayload<E> = EventPayload<E>>(buffer: Buffer): P;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/kafka.common",
3
- "version": "5.0.0-next.1",
3
+ "version": "5.0.0-next.3",
4
4
  "description": "Common functionality for kafka consumers and producers",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -20,11 +20,11 @@
20
20
  "@rsdk/metadata": "*",
21
21
  "kafkajs": "^2.2.4",
22
22
  "reflect-metadata": "^0.1.12 || ^0.2.0",
23
- "rxjs": "^7.0.0"
23
+ "rxjs": "^7.8.1"
24
24
  },
25
25
  "dependencies": {
26
26
  "lodash": "^4.17.21",
27
27
  "protobufjs": "^7.2.3"
28
28
  },
29
- "gitHead": "782da71b758d4e477d970b285774a435580b4dc2"
29
+ "gitHead": "c75ce1d8983ba69a6f855ba19536d28be0a9c519"
30
30
  }