@backstage/plugin-kubernetes-node 0.2.0-next.2 → 0.2.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @backstage/plugin-kubernetes-node
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 71b8704: Bumping @kubernetes/client-node to 1.0.0-rc7 to mitigate CVEs related to the request and tough-cookie packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/types@1.2.0
13
+ - @backstage/plugin-kubernetes-common@0.9.0
14
+ - @backstage/backend-plugin-api@1.0.2
15
+ - @backstage/catalog-model@1.7.1
16
+
3
17
  ## 0.2.0-next.2
4
18
 
5
19
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
2
2
  import { BackstageCredentials } from '@backstage/backend-plugin-api';
3
3
  import { KubernetesObjectsProvider as KubernetesObjectsProvider$1, KubernetesClustersSupplier as KubernetesClustersSupplier$1, AuthenticationStrategy as AuthenticationStrategy$1, KubernetesFetcher as KubernetesFetcher$1, KubernetesServiceLocator as KubernetesServiceLocator$1, ClusterDetails as ClusterDetails$1 } from '@backstage/plugin-kubernetes-node';
4
4
  import { Entity } from '@backstage/catalog-model';
5
- import { ObjectsByEntityResponse, KubernetesRequestAuth, CustomResourceMatcher, KubernetesFetchError, FetchResponse } from '@backstage/plugin-kubernetes-common';
5
+ import { KubernetesRequestAuth, ObjectsByEntityResponse, CustomResourceMatcher, KubernetesFetchError, FetchResponse } from '@backstage/plugin-kubernetes-common';
6
6
  import { JsonObject } from '@backstage/types';
7
7
  import { Logger } from 'winston';
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-kubernetes-node",
3
- "version": "0.2.0-next.2",
3
+ "version": "0.2.0",
4
4
  "description": "Node.js library for the kubernetes plugin",
5
5
  "backstage": {
6
6
  "role": "node-library",
@@ -38,22 +38,29 @@
38
38
  "test": "backstage-cli package test"
39
39
  },
40
40
  "dependencies": {
41
- "@backstage/backend-plugin-api": "1.0.2-next.2",
42
- "@backstage/catalog-model": "1.7.0",
43
- "@backstage/plugin-kubernetes-common": "0.9.0-next.0",
44
- "@backstage/types": "1.1.1",
41
+ "@backstage/backend-plugin-api": "^1.0.2",
42
+ "@backstage/catalog-model": "^1.7.1",
43
+ "@backstage/plugin-kubernetes-common": "^0.9.0",
44
+ "@backstage/types": "^1.2.0",
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.0.2-next.2",
50
+ "@backstage/backend-app-api": "^1.0.2",
51
51
  "@backstage/backend-common": "^0.25.0",
52
- "@backstage/backend-defaults": "0.5.3-next.2",
53
- "@backstage/backend-test-utils": "1.1.0-next.2",
54
- "@backstage/cli": "0.29.0-next.2",
55
- "@backstage/plugin-kubernetes-backend": "0.19.0-next.2",
52
+ "@backstage/backend-defaults": "^0.5.3",
53
+ "@backstage/backend-test-utils": "^1.1.0",
54
+ "@backstage/cli": "^0.29.0",
55
+ "@backstage/plugin-kubernetes-backend": "^0.19.0",
56
56
  "msw": "^1.3.1",
57
57
  "supertest": "^7.0.0"
58
+ },
59
+ "typesVersions": {
60
+ "*": {
61
+ "index": [
62
+ "dist/index.d.ts"
63
+ ]
64
+ }
58
65
  }
59
66
  }