@backstage/plugin-kubernetes-node 0.2.2 → 0.2.3-next.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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.2.3-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.2.0-next.1
9
+ - @backstage/plugin-kubernetes-common@0.9.3-next.1
10
+ - @backstage/catalog-model@1.7.3
11
+ - @backstage/types@1.2.1
12
+
13
+ ## 0.2.3-next.0
14
+
15
+ ### Patch Changes
16
+
17
+ - ac0e1ac: Fixed the lack of `secrets` to fetch from the kubernetes api by adding option to specify additional Objects which are not part of Default Objects
18
+ - Updated dependencies
19
+ - @backstage/plugin-kubernetes-common@0.9.3-next.0
20
+ - @backstage/backend-plugin-api@1.2.0-next.0
21
+ - @backstage/catalog-model@1.7.3
22
+ - @backstage/types@1.2.1
23
+
3
24
  ## 0.2.2
4
25
 
5
26
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -212,7 +212,7 @@ interface AuthenticationStrategy {
212
212
  *
213
213
  * @public
214
214
  */
215
- type KubernetesObjectTypes = 'pods' | 'services' | 'configmaps' | 'deployments' | 'limitranges' | 'resourcequotas' | 'replicasets' | 'horizontalpodautoscalers' | 'jobs' | 'cronjobs' | 'ingresses' | 'customresources' | 'statefulsets' | 'daemonsets';
215
+ type KubernetesObjectTypes = 'pods' | 'services' | 'configmaps' | 'deployments' | 'limitranges' | 'resourcequotas' | 'replicasets' | 'horizontalpodautoscalers' | 'jobs' | 'cronjobs' | 'ingresses' | 'customresources' | 'statefulsets' | 'daemonsets' | 'secrets';
216
216
  /**
217
217
  *
218
218
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-node",
3
- "version": "0.2.2",
3
+ "version": "0.2.3-next.1",
4
4
  "description": "Node.js library for the kubernetes plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -38,21 +38,21 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "^1.1.1",
42
- "@backstage/catalog-model": "^1.7.3",
43
- "@backstage/plugin-kubernetes-common": "^0.9.2",
44
- "@backstage/types": "^1.2.1",
41
+ "@backstage/backend-plugin-api": "1.2.0-next.1",
42
+ "@backstage/catalog-model": "1.7.3",
43
+ "@backstage/plugin-kubernetes-common": "0.9.3-next.1",
44
+ "@backstage/types": "1.2.1",
45
45
  "@kubernetes/client-node": "1.0.0-rc7",
46
46
  "node-fetch": "^2.7.0",
47
47
  "winston": "^3.2.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@backstage/backend-app-api": "^1.1.1",
50
+ "@backstage/backend-app-api": "1.2.0-next.2",
51
51
  "@backstage/backend-common": "^0.25.0",
52
- "@backstage/backend-defaults": "^0.7.0",
53
- "@backstage/backend-test-utils": "^1.2.1",
54
- "@backstage/cli": "^0.29.5",
55
- "@backstage/plugin-kubernetes-backend": "^0.19.2",
52
+ "@backstage/backend-defaults": "0.8.0-next.2",
53
+ "@backstage/backend-test-utils": "1.3.0-next.2",
54
+ "@backstage/cli": "0.30.0-next.2",
55
+ "@backstage/plugin-kubernetes-backend": "0.19.3-next.2",
56
56
  "msw": "^1.3.1",
57
57
  "supertest": "^7.0.0"
58
58
  },