@itentialopensource/adapter-kafkav2 0.6.5 → 0.6.6

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,12 @@
1
1
 
2
+ ## 0.6.6 [05-19-2023]
3
+
4
+ * added support for separate topics files per adapter
5
+
6
+ See merge request itentialopensource/adapters/notification-messaging/adapter-kafkav2!5
7
+
8
+ ---
9
+
2
10
  ## 0.6.5 [05-19-2023]
3
11
 
4
12
  * added support for separate topics files per adapter
package/README.md CHANGED
@@ -124,6 +124,20 @@ This section defines **all** the properties that are available for the adapter,
124
124
  }
125
125
  }
126
126
  ```
127
+ Sample SSL and SASL properties. In the below example ssl is enabled and needs a CA file, SASL is set to scram-sha-512.
128
+
129
+ ```json
130
+ "ssl": {
131
+ "enableTrace": true,
132
+ "ca": "/path/to/crt.pem",
133
+ "rejectUnauthorized": true
134
+ },
135
+ "sasl": {
136
+ "username": "my-user",
137
+ "password": "my-password",
138
+ "mechanism": "scram-sha-512"
139
+ }
140
+ ```
127
141
 
128
142
  ### Topic Properties
129
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-kafkav2",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "description": "Itential adapter to connect to kafka",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.35.0",
Binary file