@backstage/plugin-kubernetes-react 0.1.1-next.2 → 0.1.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 +19 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-react
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0f4cad6da0: Internal refactor to avoid a null pointer problem
|
|
8
|
+
- 6c2b872153: Add official support for React 18.
|
|
9
|
+
- b52f576f48: Make sure types exported by other `kubernetes` plugins in the past are exported again after the creation
|
|
10
|
+
of the react package.
|
|
11
|
+
|
|
12
|
+
Some types have been moved to this new package but the export was missing, so they were not available anymore for developers.
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/core-components@0.13.8
|
|
16
|
+
- @backstage/plugin-kubernetes-common@0.7.1
|
|
17
|
+
- @backstage/core-plugin-api@1.8.0
|
|
18
|
+
- @backstage/catalog-model@1.4.3
|
|
19
|
+
- @backstage/errors@1.2.3
|
|
20
|
+
- @backstage/types@1.1.1
|
|
21
|
+
|
|
3
22
|
## 0.1.1-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-react",
|
|
3
3
|
"description": "Web library for the kubernetes-react plugin",
|
|
4
|
-
"version": "0.1.1
|
|
4
|
+
"version": "0.1.1",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@backstage/catalog-model": "^1.4.3",
|
|
28
|
-
"@backstage/core-components": "^0.13.8
|
|
29
|
-
"@backstage/core-plugin-api": "^1.8.0
|
|
28
|
+
"@backstage/core-components": "^0.13.8",
|
|
29
|
+
"@backstage/core-plugin-api": "^1.8.0",
|
|
30
30
|
"@backstage/errors": "^1.2.3",
|
|
31
|
-
"@backstage/plugin-kubernetes-common": "^0.7.1
|
|
31
|
+
"@backstage/plugin-kubernetes-common": "^0.7.1",
|
|
32
32
|
"@backstage/types": "^1.1.1",
|
|
33
33
|
"@kubernetes-models/apimachinery": "^1.1.0",
|
|
34
34
|
"@kubernetes-models/base": "^4.0.1",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.24.0
|
|
55
|
-
"@backstage/core-app-api": "^1.11.1
|
|
56
|
-
"@backstage/test-utils": "^1.4.5
|
|
54
|
+
"@backstage/cli": "^0.24.0",
|
|
55
|
+
"@backstage/core-app-api": "^1.11.1",
|
|
56
|
+
"@backstage/test-utils": "^1.4.5",
|
|
57
57
|
"@testing-library/jest-dom": "^6.0.0",
|
|
58
58
|
"@testing-library/react": "^14.0.0",
|
|
59
59
|
"jest-websocket-mock": "^2.5.0",
|