@backstage-community/plugin-kafka-backend 0.5.0 → 0.5.1

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,5 +1,12 @@
1
1
  # @backstage-community/plugin-kafka-backend
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 381a2b0: Add link to a [kafkajs](https://kafka.js.org/docs/confiuration#ssl) docs with ssl options
8
+ Update Reference to the kafka-backend plugin in a Readme
9
+
3
10
  ## 0.5.0
4
11
 
5
12
  ### Minor Changes
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Kafka Backend
2
2
 
3
- This is the backend part of the Kafka plugin. It responds to Kafka requests
4
- from the frontend.
3
+ This is the backend part of the Kafka plugin. It responds to Kafka requests from
4
+ the frontend.
5
5
 
6
6
  ## Configuration
7
7
 
@@ -18,8 +18,8 @@ A list of the brokers' host names and ports to connect to.
18
18
  ### `ssl` (optional)
19
19
 
20
20
  Configure TLS connection to the Kafka cluster. The options are passed directly
21
- to [tls.connect] and used to create the TLS secure context. Normally these
22
- would include `key` and `cert`.
21
+ to [tls.connect](https://kafka.js.org/docs/configuration#ssl) and used to create
22
+ the TLS secure context. Normally these would include `key` and `cert`.
23
23
 
24
24
  Example:
25
25
 
@@ -52,4 +52,5 @@ kafka:
52
52
 
53
53
  ### ACLs
54
54
 
55
- If you are using ACLs on Kafka, you will need to have the `DESCRIBE` ACL on both consumer groups and topics.
55
+ If you are using ACLs on Kafka, you will need to have the `DESCRIBE` ACL on both
56
+ consumer groups and topics.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-kafka-backend",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "A Backstage backend plugin that integrates towards Kafka",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",