@rsdk/kafka.producer 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.producer
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.producer
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import type { EventPayload, EventType } from '@rsdk/kafka.common';
3
2
  import type { EventMetadata, ProducerOptions, PublishOptions } from './interfaces';
4
3
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/kafka.producer",
3
- "version": "5.0.0-next.1",
3
+ "version": "5.0.0-next.3",
4
4
  "description": "Publishers for kafka (different direct and outbox strategies)",
5
5
  "license": "Apache License 2.0",
6
6
  "publishConfig": {
@@ -20,7 +20,7 @@
20
20
  "@rsdk/logging": "*",
21
21
  "lodash": "^4.17.21",
22
22
  "reflect-metadata": "^0.1.12 || ^0.2.0",
23
- "rxjs": "^7.0.0"
23
+ "rxjs": "^7.8.1"
24
24
  },
25
- "gitHead": "782da71b758d4e477d970b285774a435580b4dc2"
25
+ "gitHead": "c75ce1d8983ba69a6f855ba19536d28be0a9c519"
26
26
  }