@backstage-community/plugin-kafka 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 +2 -2
  3. package/package.json +7 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @backstage-community/plugin-kafka
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
@@ -59,7 +59,7 @@ const serviceEntityPage = (
59
59
  ```
60
60
 
61
61
  4. Add broker configs for the backend in your `app-config.yaml` (see
62
- [kafka-backend](https://github.com/backstage/backstage/blob/master/plugins/kafka-backend/README.md)
62
+ [kafka-backend](https://github.com/backstage/community-plugins/tree/main/workspaces/kafka/plugins/kafka-backend/README.md)
63
63
  for more options):
64
64
 
65
65
  ```yaml
@@ -88,7 +88,7 @@ spec:
88
88
 
89
89
  6. Configure dashboard urls:
90
90
 
91
- You have two options.
91
+ You have two options.\
92
92
  Either configure it with an annotation called `kafka.apache.org/dashboard-urls`
93
93
 
94
94
  ```yaml
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-kafka",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "A Backstage plugin that integrates towards Kafka",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -40,18 +40,18 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@backstage/catalog-model": "^1.7.3",
43
- "@backstage/core-components": "^0.16.3",
44
- "@backstage/core-plugin-api": "^1.10.3",
45
- "@backstage/plugin-catalog-react": "^1.15.1",
43
+ "@backstage/core-components": "^0.17.0",
44
+ "@backstage/core-plugin-api": "^1.10.5",
45
+ "@backstage/plugin-catalog-react": "^1.16.0",
46
46
  "@material-ui/core": "^4.12.2",
47
47
  "@material-ui/icons": "^4.9.1",
48
48
  "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
49
49
  "react-use": "^17.2.4"
50
50
  },
51
51
  "devDependencies": {
52
- "@backstage/cli": "^0.29.6",
53
- "@backstage/dev-utils": "^1.1.6",
54
- "@backstage/test-utils": "^1.7.4",
52
+ "@backstage/cli": "^0.31.0",
53
+ "@backstage/dev-utils": "^1.1.8",
54
+ "@backstage/test-utils": "^1.7.6",
55
55
  "@testing-library/dom": "^10.0.0",
56
56
  "@testing-library/jest-dom": "^6.0.0",
57
57
  "@testing-library/react": "^15.0.0",
@@ -68,12 +68,5 @@
68
68
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
69
69
  },
70
70
  "configSchema": "config.d.ts",
71
- "typesVersions": {
72
- "*": {
73
- "index": [
74
- "dist/index.d.ts"
75
- ]
76
- }
77
- },
78
71
  "module": "./dist/index.esm.js"
79
72
  }