@backstage/plugin-catalog-backend-module-gcp 0.0.0-nightly-20230908021043 → 0.0.0-nightly-20230910021151

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,16 +1,32 @@
1
1
  # @backstage/plugin-catalog-backend-module-gcp
2
2
 
3
- ## 0.0.0-nightly-20230908021043
3
+ ## 0.0.0-nightly-20230910021151
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
8
+
9
+ For example, if you are currently importing the plugin using the following pattern:
10
+
11
+ ```ts
12
+ import { examplePlugin } from '@backstage/plugin-example-backend';
13
+
14
+ backend.add(examplePlugin);
15
+ ```
16
+
17
+ It should be migrated to this:
18
+
19
+ ```ts
20
+ backend.add(import('@backstage/plugin-example-backend'));
21
+ ```
22
+
7
23
  - Updated dependencies
8
- - @backstage/plugin-kubernetes-common@0.0.0-nightly-20230908021043
9
- - @backstage/config@0.0.0-nightly-20230908021043
10
- - @backstage/backend-common@0.0.0-nightly-20230908021043
11
- - @backstage/backend-plugin-api@0.0.0-nightly-20230908021043
12
- - @backstage/backend-tasks@0.0.0-nightly-20230908021043
13
- - @backstage/plugin-catalog-node@0.0.0-nightly-20230908021043
24
+ - @backstage/plugin-kubernetes-common@0.0.0-nightly-20230910021151
25
+ - @backstage/config@0.0.0-nightly-20230910021151
26
+ - @backstage/backend-common@0.0.0-nightly-20230910021151
27
+ - @backstage/backend-plugin-api@0.0.0-nightly-20230910021151
28
+ - @backstage/backend-tasks@0.0.0-nightly-20230910021151
29
+ - @backstage/plugin-catalog-node@0.0.0-nightly-20230910021151
14
30
 
15
31
  ## 0.1.3-next.2
16
32
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gcp",
3
- "version": "0.0.0-nightly-20230908021043",
3
+ "version": "0.0.0-nightly-20230910021151",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/index.cjs.js CHANGED
@@ -200,5 +200,5 @@ const catalogModuleGcpGkeEntityProvider = backendPluginApi.createBackendModule({
200
200
  });
201
201
 
202
202
  exports.GkeEntityProvider = GkeEntityProvider;
203
- exports.catalogModuleGcpGkeEntityProvider = catalogModuleGcpGkeEntityProvider;
203
+ exports["default"] = catalogModuleGcpGkeEntityProvider;
204
204
  //# sourceMappingURL=index.cjs.js.map
package/dist/index.d.ts CHANGED
@@ -45,4 +45,4 @@ declare class GkeEntityProvider implements EntityProvider {
45
45
  */
46
46
  declare const catalogModuleGcpGkeEntityProvider: () => _backstage_backend_plugin_api.BackendFeature;
47
47
 
48
- export { GkeEntityProvider, catalogModuleGcpGkeEntityProvider };
48
+ export { GkeEntityProvider, catalogModuleGcpGkeEntityProvider as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gcp",
3
3
  "description": "A Backstage catalog backend module that helps integrate towards GCP",
4
- "version": "0.0.0-nightly-20230908021043",
4
+ "version": "0.0.0-nightly-20230910021151",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -43,18 +43,18 @@
43
43
  "clean": "backstage-cli package clean"
44
44
  },
45
45
  "dependencies": {
46
- "@backstage/backend-common": "^0.0.0-nightly-20230908021043",
47
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20230908021043",
48
- "@backstage/backend-tasks": "^0.0.0-nightly-20230908021043",
49
- "@backstage/config": "^0.0.0-nightly-20230908021043",
50
- "@backstage/plugin-catalog-node": "^0.0.0-nightly-20230908021043",
51
- "@backstage/plugin-kubernetes-common": "^0.0.0-nightly-20230908021043",
46
+ "@backstage/backend-common": "^0.0.0-nightly-20230910021151",
47
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20230910021151",
48
+ "@backstage/backend-tasks": "^0.0.0-nightly-20230910021151",
49
+ "@backstage/config": "^0.0.0-nightly-20230910021151",
50
+ "@backstage/plugin-catalog-node": "^0.0.0-nightly-20230910021151",
51
+ "@backstage/plugin-kubernetes-common": "^0.0.0-nightly-20230910021151",
52
52
  "@google-cloud/container": "^4.15.0",
53
53
  "winston": "^3.2.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@backstage/backend-test-utils": "^0.0.0-nightly-20230908021043",
57
- "@backstage/cli": "^0.0.0-nightly-20230908021043"
56
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20230910021151",
57
+ "@backstage/cli": "^0.0.0-nightly-20230910021151"
58
58
  },
59
59
  "files": [
60
60
  "config.d.ts",