@itentialopensource/adapter-kafkav2 0.6.1 → 0.6.2
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 +8 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.6.2 [05-16-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.1 [05-04-2023]
|
|
3
11
|
|
|
4
12
|
* added support for separate topics files per adapter
|
package/README.md
CHANGED
|
@@ -99,7 +99,7 @@ This section defines **all** the properties that are available for the adapter,
|
|
|
99
99
|
"idleConnection": 300000,
|
|
100
100
|
"reconnectOnIdle": true,
|
|
101
101
|
"maxAsyncRequests": 10,
|
|
102
|
-
"
|
|
102
|
+
"ssl": {},
|
|
103
103
|
"sasl": {}
|
|
104
104
|
},
|
|
105
105
|
"producer": {
|
|
@@ -243,7 +243,7 @@ The following properties are used to define the Kafka Client. These properties a
|
|
|
243
243
|
| idleConnection | ms before allowing the broker to disconnect an idle connection from a client. |
|
|
244
244
|
| reconnectOnIdle | when the connection is closed due to client idling, client will attempt to auto-reconnect.|
|
|
245
245
|
| maxAsyncRequests | maximum async operations at a time toward the kafka cluster..|
|
|
246
|
-
|
|
|
246
|
+
| ssl | Object, options to be passed to the tls broker sockets, ex. { rejectUnauthorized: false }.|
|
|
247
247
|
| sasl | Object, SASL authentication configuration (only SASL/PLAIN is currently supported), ex. { mechanism: 'plain', username: 'foo', password: 'bar' }.|
|
|
248
248
|
|
|
249
249
|
### Producer Properties
|
package/package.json
CHANGED
|
Binary file
|