@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 +23 -7
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gcp
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
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-
|
|
9
|
-
- @backstage/config@0.0.0-nightly-
|
|
10
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
11
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
12
|
-
- @backstage/backend-tasks@0.0.0-nightly-
|
|
13
|
-
- @backstage/plugin-catalog-node@0.0.0-nightly-
|
|
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
|
|
package/alpha/package.json
CHANGED
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
|
|
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-
|
|
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-
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
48
|
-
"@backstage/backend-tasks": "^0.0.0-nightly-
|
|
49
|
-
"@backstage/config": "^0.0.0-nightly-
|
|
50
|
-
"@backstage/plugin-catalog-node": "^0.0.0-nightly-
|
|
51
|
-
"@backstage/plugin-kubernetes-common": "^0.0.0-nightly-
|
|
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-
|
|
57
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
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",
|