@backstage/plugin-kubernetes-common 0.2.1 → 0.2.4

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 +30 -0
  2. package/package.json +13 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # @backstage/plugin-kubernetes-common
2
2
 
3
+ ## 0.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix for the previous release with missing type declarations.
8
+ - Updated dependencies
9
+ - @backstage/catalog-model@0.10.1
10
+
11
+ ## 0.2.3
12
+
13
+ ### Patch Changes
14
+
15
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
16
+ - Updated dependencies
17
+ - @backstage/catalog-model@0.10.0
18
+
19
+ ## 0.2.2
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @backstage/catalog-model@0.9.10
25
+
26
+ ## 0.2.2-next.0
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies
31
+ - @backstage/catalog-model@0.9.10-next.0
32
+
3
33
  ## 0.2.1
4
34
 
5
35
  ### Patch Changes
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.2.1",
4
+ "version": "0.2.4",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -11,6 +11,9 @@
11
11
  "module": "dist/index.esm.js",
12
12
  "types": "dist/index.d.ts"
13
13
  },
14
+ "backstage": {
15
+ "role": "common-library"
16
+ },
14
17
  "homepage": "https://backstage.io",
15
18
  "repository": {
16
19
  "type": "git",
@@ -24,28 +27,28 @@
24
27
  "dist"
25
28
  ],
26
29
  "scripts": {
27
- "build": "backstage-cli build",
28
- "lint": "backstage-cli lint",
29
- "test": "backstage-cli test --passWithNoTests",
30
- "prepack": "backstage-cli prepack",
31
- "postpack": "backstage-cli postpack",
32
- "clean": "backstage-cli clean"
30
+ "build": "backstage-cli package build",
31
+ "lint": "backstage-cli package lint",
32
+ "test": "backstage-cli package test",
33
+ "prepack": "backstage-cli package prepack",
34
+ "postpack": "backstage-cli package postpack",
35
+ "clean": "backstage-cli package clean"
33
36
  },
34
37
  "bugs": {
35
38
  "url": "https://github.com/backstage/backstage/issues"
36
39
  },
37
40
  "dependencies": {
38
- "@backstage/catalog-model": "^0.9.7",
41
+ "@backstage/catalog-model": "^0.10.1",
39
42
  "@kubernetes/client-node": "^0.16.0"
40
43
  },
41
44
  "devDependencies": {
42
- "@backstage/cli": "^0.10.5"
45
+ "@backstage/cli": "^0.14.0"
43
46
  },
44
47
  "jest": {
45
48
  "roots": [
46
49
  ".."
47
50
  ]
48
51
  },
49
- "gitHead": "ffdb98aa2973366d48ff1774a7f892bc0c926e7e",
52
+ "gitHead": "e244b348c473700e7d5e5fbcef38bd9f9fd1d0ba",
50
53
  "module": "dist/index.esm.js"
51
54
  }