@itentialopensource/adapter-kafkav2 0.6.5 → 0.6.7
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 +16 -0
- package/README.md +14 -0
- package/package.json +1 -1
- package/refs?service=git-upload-pack +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
## 0.6.7 [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
|
+
|
|
10
|
+
## 0.6.6 [05-19-2023]
|
|
11
|
+
|
|
12
|
+
* added support for separate topics files per adapter
|
|
13
|
+
|
|
14
|
+
See merge request itentialopensource/adapters/notification-messaging/adapter-kafkav2!5
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
2
18
|
## 0.6.5 [05-19-2023]
|
|
3
19
|
|
|
4
20
|
* 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
|
Binary file
|