@backstage-community/plugin-kafka-backend 0.4.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 +13 -0
- package/README.md +6 -5
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
10
|
+
## 0.5.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- b47c7a8: Backstage version bump to v1.35.1
|
|
15
|
+
|
|
3
16
|
## 0.4.0
|
|
4
17
|
|
|
5
18
|
### 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
|
-
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "A Backstage backend plugin that integrates towards Kafka",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/backend-defaults": "^0.
|
|
69
|
-
"@backstage/backend-plugin-api": "^1.1.
|
|
70
|
-
"@backstage/config": "^1.3.
|
|
71
|
-
"@backstage/errors": "^1.2.
|
|
68
|
+
"@backstage/backend-defaults": "^0.7.0",
|
|
69
|
+
"@backstage/backend-plugin-api": "^1.1.1",
|
|
70
|
+
"@backstage/config": "^1.3.2",
|
|
71
|
+
"@backstage/errors": "^1.2.7",
|
|
72
72
|
"@types/express": "^4.17.6",
|
|
73
73
|
"express": "^4.17.1",
|
|
74
74
|
"express-promise-router": "^4.1.0",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"lodash": "^4.17.21"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/backend-test-utils": "^1.2.
|
|
80
|
-
"@backstage/cli": "^0.29.
|
|
79
|
+
"@backstage/backend-test-utils": "^1.2.1",
|
|
80
|
+
"@backstage/cli": "^0.29.6",
|
|
81
81
|
"@types/jest-when": "^3.5.0",
|
|
82
82
|
"@types/lodash": "^4.14.151",
|
|
83
83
|
"@types/supertest": "^6.0.0",
|