@backstage/plugin-kubernetes-common 0.6.6-next.1 → 0.6.6
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 +20 -0
- package/dist/index.d.ts +1 -7
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-kubernetes-common
|
|
2
2
|
|
|
3
|
+
## 0.6.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0ad36158d980: Loosened the type of the `auth` field in the body of requests to the `retrieveObjectsByServiceId` endpoint. Now any JSON object is allowed, which should make it easier for integrators to write their own custom auth strategies for Kubernetes.
|
|
8
|
+
- ccf00accb408: Add AWS Annotations to Kubernetes Cluster Resource
|
|
9
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/catalog-model@1.4.2
|
|
12
|
+
- @backstage/plugin-permission-common@0.7.8
|
|
13
|
+
|
|
14
|
+
## 0.6.6-next.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/catalog-model@1.4.2-next.2
|
|
21
|
+
- @backstage/plugin-permission-common@0.7.8-next.2
|
|
22
|
+
|
|
3
23
|
## 0.6.6-next.1
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -4,13 +4,7 @@ import { Entity } from '@backstage/catalog-model';
|
|
|
4
4
|
import * as _backstage_plugin_permission_common from '@backstage/plugin-permission-common';
|
|
5
5
|
|
|
6
6
|
/** @public */
|
|
7
|
-
|
|
8
|
-
google?: string;
|
|
9
|
-
aks?: string;
|
|
10
|
-
oidc?: {
|
|
11
|
-
[key: string]: string;
|
|
12
|
-
};
|
|
13
|
-
}
|
|
7
|
+
type KubernetesRequestAuth = JsonObject;
|
|
14
8
|
/** @public */
|
|
15
9
|
interface CustomResourceMatcher {
|
|
16
10
|
group: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-kubernetes-common",
|
|
3
3
|
"description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin",
|
|
4
|
-
"version": "0.6.6
|
|
4
|
+
"version": "0.6.6",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"files": [
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
|
+
"sideEffects": false,
|
|
29
30
|
"scripts": {
|
|
30
31
|
"build": "backstage-cli package build",
|
|
31
32
|
"lint": "backstage-cli package lint",
|
|
@@ -38,12 +39,12 @@
|
|
|
38
39
|
"url": "https://github.com/backstage/backstage/issues"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
|
-
"@backstage/catalog-model": "^1.4.2
|
|
42
|
-
"@backstage/plugin-permission-common": "^0.7.8
|
|
42
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
43
|
+
"@backstage/plugin-permission-common": "^0.7.8",
|
|
43
44
|
"@kubernetes/client-node": "0.18.1"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
|
-
"@backstage/cli": "^0.22.13
|
|
47
|
+
"@backstage/cli": "^0.22.13"
|
|
47
48
|
},
|
|
48
49
|
"jest": {
|
|
49
50
|
"roots": [
|