@backstage/plugin-kubernetes 0.11.11-next.2 → 0.11.11

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 (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +38 -30
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @backstage/plugin-kubernetes
2
2
 
3
+ ## 0.11.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 4f92394: Migrate from identityApi to fetchApi in frontend plugins.
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
9
+ - Updated dependencies
10
+ - @backstage/core-components@0.14.8
11
+ - @backstage/plugin-kubernetes-react@0.4.0
12
+ - @backstage/core-plugin-api@1.9.3
13
+ - @backstage/plugin-kubernetes-common@0.8.0
14
+ - @backstage/plugin-catalog-react@1.12.1
15
+ - @backstage/catalog-model@1.5.0
16
+
17
+ ## 0.11.11-next.3
18
+
19
+ ### Patch Changes
20
+
21
+ - d44a20a: Added additional plugin metadata to `package.json`.
22
+ - Updated dependencies
23
+ - @backstage/core-components@0.14.8-next.2
24
+ - @backstage/plugin-kubernetes-common@0.8.0-next.1
25
+ - @backstage/plugin-kubernetes-react@0.4.0-next.3
26
+ - @backstage/plugin-catalog-react@1.12.1-next.2
27
+ - @backstage/catalog-model@1.5.0
28
+ - @backstage/core-plugin-api@1.9.3-next.0
29
+
3
30
  ## 0.11.11-next.2
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,45 +1,56 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes",
3
+ "version": "0.11.11",
3
4
  "description": "A Backstage plugin that integrates towards Kubernetes",
4
- "version": "0.11.11-next.2",
5
- "main": "dist/index.esm.js",
6
- "types": "dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "frontend-plugin",
7
+ "pluginId": "kubernetes",
8
+ "pluginPackages": [
9
+ "@backstage/plugin-kubernetes",
10
+ "@backstage/plugin-kubernetes-backend",
11
+ "@backstage/plugin-kubernetes-common",
12
+ "@backstage/plugin-kubernetes-node",
13
+ "@backstage/plugin-kubernetes-react"
14
+ ]
15
+ },
8
16
  "publishConfig": {
9
17
  "access": "public",
10
18
  "main": "dist/index.esm.js",
11
19
  "types": "dist/index.d.ts"
12
20
  },
13
- "backstage": {
14
- "role": "frontend-plugin"
15
- },
21
+ "keywords": [
22
+ "backstage",
23
+ "kubernetes"
24
+ ],
16
25
  "homepage": "https://backstage.io",
17
26
  "repository": {
18
27
  "type": "git",
19
28
  "url": "https://github.com/backstage/backstage",
20
29
  "directory": "plugins/kubernetes"
21
30
  },
22
- "keywords": [
23
- "backstage",
24
- "kubernetes"
25
- ],
31
+ "license": "Apache-2.0",
26
32
  "sideEffects": false,
33
+ "main": "dist/index.esm.js",
34
+ "types": "dist/index.d.ts",
35
+ "files": [
36
+ "dist"
37
+ ],
27
38
  "scripts": {
28
39
  "build": "backstage-cli package build",
29
- "start": "backstage-cli package start",
40
+ "clean": "backstage-cli package clean",
30
41
  "lint": "backstage-cli package lint",
31
- "test": "backstage-cli package test",
32
42
  "prepack": "backstage-cli package prepack",
33
43
  "postpack": "backstage-cli package postpack",
34
- "clean": "backstage-cli package clean"
44
+ "start": "backstage-cli package start",
45
+ "test": "backstage-cli package test"
35
46
  },
36
47
  "dependencies": {
37
48
  "@backstage/catalog-model": "^1.5.0",
38
- "@backstage/core-components": "^0.14.8-next.1",
39
- "@backstage/core-plugin-api": "^1.9.3-next.0",
40
- "@backstage/plugin-catalog-react": "^1.12.1-next.1",
41
- "@backstage/plugin-kubernetes-common": "^0.8.0-next.0",
42
- "@backstage/plugin-kubernetes-react": "^0.4.0-next.2",
49
+ "@backstage/core-components": "^0.14.8",
50
+ "@backstage/core-plugin-api": "^1.9.3",
51
+ "@backstage/plugin-catalog-react": "^1.12.1",
52
+ "@backstage/plugin-kubernetes-common": "^0.8.0",
53
+ "@backstage/plugin-kubernetes-react": "^0.4.0",
43
54
  "@kubernetes-models/apimachinery": "^1.1.0",
44
55
  "@kubernetes-models/base": "^4.0.1",
45
56
  "@kubernetes/client-node": "0.20.0",
@@ -54,21 +65,18 @@
54
65
  "xterm-addon-attach": "^0.9.0",
55
66
  "xterm-addon-fit": "^0.8.0"
56
67
  },
57
- "peerDependencies": {
58
- "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
59
- "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
60
- "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
61
- },
62
68
  "devDependencies": {
63
- "@backstage/cli": "^0.26.7-next.2",
64
- "@backstage/dev-utils": "^1.0.33-next.1",
65
- "@backstage/test-utils": "^1.5.6-next.1",
69
+ "@backstage/cli": "^0.26.7",
70
+ "@backstage/dev-utils": "^1.0.33",
71
+ "@backstage/test-utils": "^1.5.6",
66
72
  "@testing-library/dom": "^10.0.0",
67
73
  "@testing-library/jest-dom": "^6.0.0",
68
74
  "@testing-library/react": "^15.0.0"
69
75
  },
70
- "files": [
71
- "dist"
72
- ],
76
+ "peerDependencies": {
77
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
78
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
79
+ "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
80
+ },
73
81
  "module": "./dist/index.esm.js"
74
82
  }