@backstage/plugin-catalog-node 1.12.5-next.0 → 1.12.5-next.2
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 +29 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-node
|
|
2
2
|
|
|
3
|
+
## 1.12.5-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7c5f3b0: Explicit declare if the service ref accepts `single` or `multiple` implementations.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@0.8.0-next.2
|
|
10
|
+
- @backstage/plugin-permission-common@0.8.1-next.1
|
|
11
|
+
- @backstage/plugin-permission-node@0.8.1-next.2
|
|
12
|
+
- @backstage/plugin-catalog-common@1.0.26-next.1
|
|
13
|
+
- @backstage/catalog-client@1.6.5
|
|
14
|
+
- @backstage/catalog-model@1.5.0
|
|
15
|
+
- @backstage/errors@1.2.4
|
|
16
|
+
- @backstage/types@1.1.1
|
|
17
|
+
|
|
18
|
+
## 1.12.5-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-permission-common@0.8.1-next.0
|
|
24
|
+
- @backstage/plugin-permission-node@0.8.1-next.1
|
|
25
|
+
- @backstage/backend-plugin-api@0.7.1-next.1
|
|
26
|
+
- @backstage/plugin-catalog-common@1.0.26-next.0
|
|
27
|
+
- @backstage/catalog-client@1.6.5
|
|
28
|
+
- @backstage/catalog-model@1.5.0
|
|
29
|
+
- @backstage/errors@1.2.4
|
|
30
|
+
- @backstage/types@1.1.1
|
|
31
|
+
|
|
3
32
|
## 1.12.5-next.0
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { PermissionRule } from '@backstage/plugin-permission-node';
|
|
|
9
9
|
* The catalogService provides the catalog API.
|
|
10
10
|
* @alpha
|
|
11
11
|
*/
|
|
12
|
-
declare const catalogServiceRef: _backstage_backend_plugin_api.ServiceRef<CatalogApi, "plugin">;
|
|
12
|
+
declare const catalogServiceRef: _backstage_backend_plugin_api.ServiceRef<CatalogApi, "plugin", "singleton">;
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* @alpha
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-node",
|
|
3
|
-
"version": "1.12.5-next.
|
|
3
|
+
"version": "1.12.5-next.2",
|
|
4
4
|
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -52,17 +52,17 @@
|
|
|
52
52
|
"test": "backstage-cli package test"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@backstage/backend-plugin-api": "^0.
|
|
55
|
+
"@backstage/backend-plugin-api": "^0.8.0-next.2",
|
|
56
56
|
"@backstage/catalog-client": "^1.6.5",
|
|
57
57
|
"@backstage/catalog-model": "^1.5.0",
|
|
58
58
|
"@backstage/errors": "^1.2.4",
|
|
59
|
-
"@backstage/plugin-catalog-common": "^1.0.
|
|
60
|
-
"@backstage/plugin-permission-common": "^0.8.
|
|
61
|
-
"@backstage/plugin-permission-node": "^0.8.1-next.
|
|
59
|
+
"@backstage/plugin-catalog-common": "^1.0.26-next.1",
|
|
60
|
+
"@backstage/plugin-permission-common": "^0.8.1-next.1",
|
|
61
|
+
"@backstage/plugin-permission-node": "^0.8.1-next.2",
|
|
62
62
|
"@backstage/types": "^1.1.1"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-test-utils": "^0.4.5-next.
|
|
66
|
-
"@backstage/cli": "^0.27.0-next.
|
|
65
|
+
"@backstage/backend-test-utils": "^0.4.5-next.2",
|
|
66
|
+
"@backstage/cli": "^0.27.0-next.3"
|
|
67
67
|
}
|
|
68
68
|
}
|