@backstage/plugin-kubernetes-node 0.1.0-next.0 → 0.1.1-next.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 (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.6.7-next.0
9
+ - @backstage/catalog-model@1.4.3
10
+ - @backstage/plugin-kubernetes-common@0.7.1-next.0
11
+
12
+ ## 0.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 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.
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/catalog-model@1.4.3
22
+ - @backstage/plugin-kubernetes-common@0.7.0
23
+ - @backstage/backend-plugin-api@0.6.6
24
+
3
25
  ## 0.1.0-next.0
4
26
 
5
27
  ### 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-next.0",
4
+ "version": "0.1.1-next.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-next.2"
25
+ "@backstage/cli": "^0.24.0-next.0"
26
26
  },
27
27
  "files": [
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@backstage/backend-plugin-api": "^0.6.6-next.2",
32
- "@backstage/catalog-model": "^1.4.3-next.0",
33
- "@backstage/plugin-kubernetes-common": "^0.7.0-next.1"
31
+ "@backstage/backend-plugin-api": "^0.6.7-next.0",
32
+ "@backstage/catalog-model": "^1.4.3",
33
+ "@backstage/plugin-kubernetes-common": "^0.7.1-next.0"
34
34
  }
35
35
  }