@backstage/plugin-catalog-backend 1.13.0-next.2 → 1.13.0-next.3
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 +41 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 1.13.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
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
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/plugin-search-backend-module-catalog@0.1.7-next.3
|
|
25
|
+
- @backstage/catalog-client@1.4.4-next.2
|
|
26
|
+
- @backstage/catalog-model@1.4.2-next.2
|
|
27
|
+
- @backstage/config@1.1.0-next.2
|
|
28
|
+
- @backstage/errors@1.2.2-next.0
|
|
29
|
+
- @backstage/integration@1.7.0-next.3
|
|
30
|
+
- @backstage/plugin-catalog-common@1.0.16-next.2
|
|
31
|
+
- @backstage/plugin-permission-common@0.7.8-next.2
|
|
32
|
+
- @backstage/plugin-scaffolder-common@1.4.1-next.2
|
|
33
|
+
- @backstage/plugin-search-common@1.2.6-next.2
|
|
34
|
+
- @backstage/types@1.1.1-next.0
|
|
35
|
+
- @backstage/plugin-permission-node@0.7.14-next.3
|
|
36
|
+
- @backstage/backend-plugin-api@0.6.3-next.3
|
|
37
|
+
- @backstage/backend-common@0.19.5-next.3
|
|
38
|
+
- @backstage/backend-openapi-utils@0.0.4-next.0
|
|
39
|
+
- @backstage/backend-tasks@0.5.8-next.3
|
|
40
|
+
- @backstage/plugin-auth-node@0.3.0-next.3
|
|
41
|
+
- @backstage/plugin-catalog-node@1.4.4-next.3
|
|
42
|
+
- @backstage/plugin-events-node@0.2.12-next.3
|
|
43
|
+
|
|
3
44
|
## 1.13.0-next.2
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
|
@@ -148,6 +148,6 @@ const catalogPlugin = backendPluginApi.createBackendPlugin({
|
|
|
148
148
|
exports.createCatalogPermissionRule = CatalogBuilder.createCatalogPermissionRule;
|
|
149
149
|
exports.permissionRules = CatalogBuilder.permissionRules;
|
|
150
150
|
exports.catalogConditions = catalogConditions;
|
|
151
|
-
exports.catalogPlugin = catalogPlugin;
|
|
152
151
|
exports.createCatalogConditionalDecision = createCatalogConditionalDecision;
|
|
152
|
+
exports["default"] = catalogPlugin;
|
|
153
153
|
//# sourceMappingURL=alpha.cjs.js.map
|
package/dist/alpha.d.ts
CHANGED
|
@@ -123,4 +123,4 @@ declare const permissionRules: {
|
|
|
123
123
|
*/
|
|
124
124
|
declare const catalogPlugin: () => _backstage_backend_plugin_api.BackendFeature;
|
|
125
125
|
|
|
126
|
-
export { CatalogPermissionRule, catalogConditions,
|
|
126
|
+
export { CatalogPermissionRule, catalogConditions, createCatalogConditionalDecision, createCatalogPermissionRule, catalogPlugin as default, permissionRules };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
4
|
-
"version": "1.13.0-next.
|
|
4
|
+
"version": "1.13.0-next.3",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,25 +43,25 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.19.5-next.
|
|
47
|
-
"@backstage/backend-openapi-utils": "^0.0.
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.6.3-next.
|
|
49
|
-
"@backstage/backend-tasks": "^0.5.8-next.
|
|
50
|
-
"@backstage/catalog-client": "^1.4.4-next.
|
|
51
|
-
"@backstage/catalog-model": "^1.4.2-next.
|
|
52
|
-
"@backstage/config": "^1.1.0-next.
|
|
53
|
-
"@backstage/errors": "^1.2.
|
|
54
|
-
"@backstage/integration": "^1.7.0-next.
|
|
55
|
-
"@backstage/plugin-auth-node": "^0.3.0-next.
|
|
56
|
-
"@backstage/plugin-catalog-common": "^1.0.16-next.
|
|
57
|
-
"@backstage/plugin-catalog-node": "^1.4.4-next.
|
|
58
|
-
"@backstage/plugin-events-node": "^0.2.12-next.
|
|
59
|
-
"@backstage/plugin-permission-common": "^0.7.8-next.
|
|
60
|
-
"@backstage/plugin-permission-node": "^0.7.14-next.
|
|
61
|
-
"@backstage/plugin-scaffolder-common": "^1.4.1-next.
|
|
62
|
-
"@backstage/plugin-search-backend-module-catalog": "^0.1.7-next.
|
|
63
|
-
"@backstage/plugin-search-common": "^1.2.6-next.
|
|
64
|
-
"@backstage/types": "^1.1.0",
|
|
46
|
+
"@backstage/backend-common": "^0.19.5-next.3",
|
|
47
|
+
"@backstage/backend-openapi-utils": "^0.0.4-next.0",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.6.3-next.3",
|
|
49
|
+
"@backstage/backend-tasks": "^0.5.8-next.3",
|
|
50
|
+
"@backstage/catalog-client": "^1.4.4-next.2",
|
|
51
|
+
"@backstage/catalog-model": "^1.4.2-next.2",
|
|
52
|
+
"@backstage/config": "^1.1.0-next.2",
|
|
53
|
+
"@backstage/errors": "^1.2.2-next.0",
|
|
54
|
+
"@backstage/integration": "^1.7.0-next.3",
|
|
55
|
+
"@backstage/plugin-auth-node": "^0.3.0-next.3",
|
|
56
|
+
"@backstage/plugin-catalog-common": "^1.0.16-next.2",
|
|
57
|
+
"@backstage/plugin-catalog-node": "^1.4.4-next.3",
|
|
58
|
+
"@backstage/plugin-events-node": "^0.2.12-next.3",
|
|
59
|
+
"@backstage/plugin-permission-common": "^0.7.8-next.2",
|
|
60
|
+
"@backstage/plugin-permission-node": "^0.7.14-next.3",
|
|
61
|
+
"@backstage/plugin-scaffolder-common": "^1.4.1-next.2",
|
|
62
|
+
"@backstage/plugin-search-backend-module-catalog": "^0.1.7-next.3",
|
|
63
|
+
"@backstage/plugin-search-common": "^1.2.6-next.2",
|
|
64
|
+
"@backstage/types": "^1.1.1-next.0",
|
|
65
65
|
"@opentelemetry/api": "^1.3.0",
|
|
66
66
|
"@types/express": "^4.17.6",
|
|
67
67
|
"codeowners-utils": "^1.0.2",
|
|
@@ -86,10 +86,10 @@
|
|
|
86
86
|
"zod": "^3.21.4"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
|
-
"@backstage/backend-test-utils": "^0.2.3-next.
|
|
90
|
-
"@backstage/cli": "^0.22.13-next.
|
|
91
|
-
"@backstage/plugin-permission-common": "^0.7.8-next.
|
|
92
|
-
"@backstage/plugin-search-backend-node": "^1.2.7-next.
|
|
89
|
+
"@backstage/backend-test-utils": "^0.2.3-next.3",
|
|
90
|
+
"@backstage/cli": "^0.22.13-next.3",
|
|
91
|
+
"@backstage/plugin-permission-common": "^0.7.8-next.2",
|
|
92
|
+
"@backstage/plugin-search-backend-node": "^1.2.7-next.3",
|
|
93
93
|
"@types/core-js": "^2.5.4",
|
|
94
94
|
"@types/git-url-parse": "^9.0.0",
|
|
95
95
|
"@types/lodash": "^4.14.151",
|