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

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +6 -5
  3. package/package.json +10 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage-community/plugin-kafka-backend
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0749afd: Backstage version bump to v1.37.0
8
+
9
+ ## 0.5.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 381a2b0: Add link to a [kafkajs](https://kafka.js.org/docs/confiuration#ssl) docs with ssl options
14
+ Update Reference to the kafka-backend plugin in a Readme
15
+
3
16
  ## 0.5.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
- 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.6.0",
4
4
  "description": "A Backstage backend plugin that integrates towards Kafka",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -8,7 +8,10 @@
8
8
  "pluginPackages": [
9
9
  "@backstage-community/plugin-kafka",
10
10
  "@backstage-community/plugin-kafka-backend"
11
- ]
11
+ ],
12
+ "features": {
13
+ "./alpha": "@backstage/BackendFeature"
14
+ }
12
15
  },
13
16
  "publishConfig": {
14
17
  "access": "public"
@@ -42,7 +45,7 @@
42
45
  "types": "./dist/index.d.ts",
43
46
  "typesVersions": {
44
47
  "*": {
45
- "index": [
48
+ "*": [
46
49
  "dist/index.d.ts"
47
50
  ],
48
51
  "alpha": [
@@ -65,8 +68,8 @@
65
68
  "test": "backstage-cli package test"
66
69
  },
67
70
  "dependencies": {
68
- "@backstage/backend-defaults": "^0.7.0",
69
- "@backstage/backend-plugin-api": "^1.1.1",
71
+ "@backstage/backend-defaults": "^0.8.2",
72
+ "@backstage/backend-plugin-api": "^1.2.1",
70
73
  "@backstage/config": "^1.3.2",
71
74
  "@backstage/errors": "^1.2.7",
72
75
  "@types/express": "^4.17.6",
@@ -76,8 +79,8 @@
76
79
  "lodash": "^4.17.21"
77
80
  },
78
81
  "devDependencies": {
79
- "@backstage/backend-test-utils": "^1.2.1",
80
- "@backstage/cli": "^0.29.6",
82
+ "@backstage/backend-test-utils": "^1.3.1",
83
+ "@backstage/cli": "^0.31.0",
81
84
  "@types/jest-when": "^3.5.0",
82
85
  "@types/lodash": "^4.14.151",
83
86
  "@types/supertest": "^6.0.0",