@backstage/plugin-catalog-backend-module-gcp 0.1.20-next.3 → 0.1.20

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,20 @@
1
1
  # @backstage/plugin-catalog-backend-module-gcp
2
2
 
3
+ ## 0.1.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - d44a20a: Added additional plugin metadata to `package.json`.
9
+ - Updated dependencies
10
+ - @backstage/backend-common@0.23.0
11
+ - @backstage/backend-plugin-api@0.6.19
12
+ - @backstage/backend-tasks@0.5.24
13
+ - @backstage/plugin-catalog-node@1.12.1
14
+ - @backstage/plugin-kubernetes-common@0.8.0
15
+ - @backstage/catalog-model@1.5.0
16
+ - @backstage/config@1.2.0
17
+
3
18
  ## 0.1.20-next.3
4
19
 
5
20
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gcp",
3
- "version": "0.1.20-next.3",
3
+ "version": "0.1.20",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/index.d.ts CHANGED
@@ -42,6 +42,6 @@ declare class GkeEntityProvider implements EntityProvider {
42
42
  *
43
43
  * @public
44
44
  */
45
- declare const catalogModuleGcpGkeEntityProvider: () => _backstage_backend_plugin_api.BackendFeature;
45
+ declare const catalogModuleGcpGkeEntityProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
46
46
 
47
47
  export { GkeEntityProvider, catalogModuleGcpGkeEntityProvider as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gcp",
3
- "version": "0.1.20-next.3",
3
+ "version": "0.1.20",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards GCP",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -50,18 +50,18 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-common": "^0.23.0-next.3",
54
- "@backstage/backend-plugin-api": "^0.6.19-next.3",
55
- "@backstage/backend-tasks": "^0.5.24-next.3",
53
+ "@backstage/backend-common": "^0.23.0",
54
+ "@backstage/backend-plugin-api": "^0.6.19",
55
+ "@backstage/backend-tasks": "^0.5.24",
56
56
  "@backstage/catalog-model": "^1.5.0",
57
57
  "@backstage/config": "^1.2.0",
58
- "@backstage/plugin-catalog-node": "^1.12.1-next.2",
59
- "@backstage/plugin-kubernetes-common": "^0.8.0-next.1",
58
+ "@backstage/plugin-catalog-node": "^1.12.1",
59
+ "@backstage/plugin-kubernetes-common": "^0.8.0",
60
60
  "@google-cloud/container": "^5.0.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@backstage/backend-test-utils": "^0.4.0-next.3",
64
- "@backstage/cli": "^0.26.7-next.3"
63
+ "@backstage/backend-test-utils": "^0.4.0",
64
+ "@backstage/cli": "^0.26.7"
65
65
  },
66
66
  "configSchema": "config.d.ts"
67
67
  }