@backstage/plugin-kubernetes-node 0.1.0-next.0 → 0.1.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.
- package/CHANGELOG.md +13 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-node
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- cbb0e3c3f4: A new plugin has been introduced to house the extension points for Kubernetes backend plugin; at the moment only the `KubernetesObjectsProviderExtensionPoint` is present. The `kubernetes-backend` plugin was modified to use this new extension point.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/catalog-model@1.4.3
|
|
13
|
+
- @backstage/plugin-kubernetes-common@0.7.0
|
|
14
|
+
- @backstage/backend-plugin-api@0.6.6
|
|
15
|
+
|
|
3
16
|
## 0.1.0-next.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-node",
|
|
3
3
|
"description": "Node.js library for the kubernetes plugin",
|
|
4
|
-
"version": "0.1.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"postpack": "backstage-cli package postpack"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@backstage/cli": "^0.23.0
|
|
25
|
+
"@backstage/cli": "^0.23.0"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/backend-plugin-api": "^0.6.6
|
|
32
|
-
"@backstage/catalog-model": "^1.4.3
|
|
33
|
-
"@backstage/plugin-kubernetes-common": "^0.7.0
|
|
31
|
+
"@backstage/backend-plugin-api": "^0.6.6",
|
|
32
|
+
"@backstage/catalog-model": "^1.4.3",
|
|
33
|
+
"@backstage/plugin-kubernetes-common": "^0.7.0"
|
|
34
34
|
}
|
|
35
35
|
}
|