@backstage/plugin-kubernetes-common 0.2.2 → 0.2.5

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 +23 -0
  2. package/package.json +13 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @backstage/plugin-kubernetes-common
2
2
 
3
+ ## 0.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/catalog-model@0.11.0
9
+
10
+ ## 0.2.4
11
+
12
+ ### Patch Changes
13
+
14
+ - Fix for the previous release with missing type declarations.
15
+ - Updated dependencies
16
+ - @backstage/catalog-model@0.10.1
17
+
18
+ ## 0.2.3
19
+
20
+ ### Patch Changes
21
+
22
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
23
+ - Updated dependencies
24
+ - @backstage/catalog-model@0.10.0
25
+
3
26
  ## 0.2.2
4
27
 
5
28
  ### 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.2",
4
+ "version": "0.2.5",
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.10",
41
+ "@backstage/catalog-model": "^0.11.0",
39
42
  "@kubernetes/client-node": "^0.16.0"
40
43
  },
41
44
  "devDependencies": {
42
- "@backstage/cli": "^0.12.0"
45
+ "@backstage/cli": "^0.14.1"
43
46
  },
44
47
  "jest": {
45
48
  "roots": [
46
49
  ".."
47
50
  ]
48
51
  },
49
- "gitHead": "600d6e3c854bbfb12a0078ca6f726d1c0d1fea0b",
52
+ "gitHead": "a15da6ea1e3e8adc37be98be064071c8b5279b4a",
50
53
  "module": "dist/index.esm.js"
51
54
  }