@itentialopensource/adapter-kafkav2 0.9.0 → 0.11.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
@@ -1,4 +1,20 @@
1
1
 
2
+ ## 0.11.0 [08-01-2023]
3
+
4
+ * Add seperate sasl props for consumer and producer
5
+
6
+ See merge request itentialopensource/adapters/notification-messaging/adapter-kafkav2!10
7
+
8
+ ---
9
+
10
+ ## 0.10.0 [07-19-2023]
11
+
12
+ * Add seperate sasl props for consumer and producer
13
+
14
+ See merge request itentialopensource/adapters/notification-messaging/adapter-kafkav2!10
15
+
16
+ ---
17
+
2
18
  ## 0.9.0 [07-18-2023]
3
19
 
4
20
  * Add seperate sasl props for consumer and producer
package/README.md CHANGED
@@ -90,6 +90,7 @@ This section defines **all** the properties that are available for the adapter,
90
90
  "check_iap_apps": true,
91
91
  "check_wfe_status": true,
92
92
  "check_ops_manager_status": false,
93
+ "fromBeginning": false,
93
94
  "iap_apps_check_interval": 15000,
94
95
  "client": {
95
96
  "brokers": [
@@ -323,13 +324,13 @@ The `parseMessage` property allows the user to define how they want the Kafka me
323
324
  ## Send message sample payload
324
325
 
325
326
  ```json
326
- {
327
- topic: 'topic-name',
328
- messages: [
329
- { value: 'hello world' },
330
- { value: 'hey hey!' }
331
- ],
332
- }
327
+ [{
328
+ "topic": "topic-name",
329
+ "messages": [
330
+ { "value": "hello world" },
331
+ { "value": "hey hey!" }
332
+ ]
333
+ }]
333
334
  ```
334
335
  For all options of messages array please follow [kafkajs documentation](https://kafka.js.org/docs/producing#producing-messages)
335
336
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-kafkav2",
3
- "version": "0.9.0",
3
+ "version": "0.11.0",
4
4
  "description": "Itential adapter to connect to kafka",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.35.0",
Binary file