@backstage/plugin-catalog-backend 1.25.2 → 1.25.3-next.0
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 +18 -14
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
-
## 1.25.
|
|
3
|
+
## 1.25.3-next.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
|
8
|
+
- 53cce86: Fixed an issue with the by-query call, where ordering by a field that does not exist on all entities led to not all results being returned
|
|
7
9
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-
|
|
9
|
-
- @backstage/plugin-
|
|
10
|
-
- @backstage/plugin-permission-node@0.8.
|
|
11
|
-
- @backstage/
|
|
12
|
-
- @backstage/
|
|
13
|
-
- @backstage/
|
|
14
|
-
- @backstage/
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
-
|
|
10
|
+
- @backstage/backend-plugin-api@0.9.0-next.0
|
|
11
|
+
- @backstage/plugin-search-backend-module-catalog@0.2.2-next.0
|
|
12
|
+
- @backstage/plugin-permission-node@0.8.3-next.0
|
|
13
|
+
- @backstage/backend-common@0.25.0-next.0
|
|
14
|
+
- @backstage/plugin-events-node@0.4.0-next.0
|
|
15
|
+
- @backstage/backend-openapi-utils@0.1.18-next.0
|
|
16
|
+
- @backstage/plugin-catalog-node@1.12.7-next.0
|
|
17
|
+
- @backstage/catalog-client@1.6.6
|
|
18
|
+
- @backstage/catalog-model@1.6.0
|
|
19
|
+
- @backstage/config@1.2.0
|
|
20
|
+
- @backstage/errors@1.2.4
|
|
21
|
+
- @backstage/integration@1.14.0
|
|
22
|
+
- @backstage/types@1.1.1
|
|
23
|
+
- @backstage/plugin-catalog-common@1.0.26
|
|
24
|
+
- @backstage/plugin-permission-common@0.8.1
|
|
21
25
|
|
|
22
26
|
## 1.25.0
|
|
23
27
|
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -121,6 +121,6 @@ declare const permissionRules: {
|
|
|
121
121
|
* Catalog plugin
|
|
122
122
|
* @alpha
|
|
123
123
|
*/
|
|
124
|
-
declare const catalogPlugin: _backstage_backend_plugin_api.
|
|
124
|
+
declare const catalogPlugin: _backstage_backend_plugin_api.BackendFeature;
|
|
125
125
|
|
|
126
126
|
export { type CatalogPermissionRule, catalogConditions, createCatalogConditionalDecision, createCatalogPermissionRule, catalogPlugin as default, permissionRules };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend",
|
|
3
|
-
"version": "1.25.
|
|
3
|
+
"version": "1.25.3-next.0",
|
|
4
4
|
"description": "The Backstage backend plugin that provides the Backstage catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -60,20 +60,20 @@
|
|
|
60
60
|
"test": "backstage-cli package test"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@backstage/backend-common": "^0.
|
|
64
|
-
"@backstage/backend-openapi-utils": "^0.1.
|
|
65
|
-
"@backstage/backend-plugin-api": "^0.
|
|
63
|
+
"@backstage/backend-common": "^0.25.0-next.0",
|
|
64
|
+
"@backstage/backend-openapi-utils": "^0.1.18-next.0",
|
|
65
|
+
"@backstage/backend-plugin-api": "^0.9.0-next.0",
|
|
66
66
|
"@backstage/catalog-client": "^1.6.6",
|
|
67
67
|
"@backstage/catalog-model": "^1.6.0",
|
|
68
68
|
"@backstage/config": "^1.2.0",
|
|
69
69
|
"@backstage/errors": "^1.2.4",
|
|
70
70
|
"@backstage/integration": "^1.14.0",
|
|
71
71
|
"@backstage/plugin-catalog-common": "^1.0.26",
|
|
72
|
-
"@backstage/plugin-catalog-node": "^1.12.
|
|
73
|
-
"@backstage/plugin-events-node": "^0.
|
|
72
|
+
"@backstage/plugin-catalog-node": "^1.12.7-next.0",
|
|
73
|
+
"@backstage/plugin-events-node": "^0.4.0-next.0",
|
|
74
74
|
"@backstage/plugin-permission-common": "^0.8.1",
|
|
75
|
-
"@backstage/plugin-permission-node": "^0.8.
|
|
76
|
-
"@backstage/plugin-search-backend-module-catalog": "^0.2.
|
|
75
|
+
"@backstage/plugin-permission-node": "^0.8.3-next.0",
|
|
76
|
+
"@backstage/plugin-search-backend-module-catalog": "^0.2.2-next.0",
|
|
77
77
|
"@backstage/types": "^1.1.1",
|
|
78
78
|
"@opentelemetry/api": "^1.3.0",
|
|
79
79
|
"@types/express": "^4.17.6",
|
|
@@ -97,11 +97,11 @@
|
|
|
97
97
|
"zod": "^3.22.4"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
|
-
"@backstage/backend-defaults": "^0.
|
|
101
|
-
"@backstage/backend-test-utils": "^0.
|
|
102
|
-
"@backstage/cli": "^0.27.0",
|
|
100
|
+
"@backstage/backend-defaults": "^0.5.0-next.0",
|
|
101
|
+
"@backstage/backend-test-utils": "^0.6.0-next.0",
|
|
102
|
+
"@backstage/cli": "^0.27.1-next.0",
|
|
103
103
|
"@backstage/plugin-permission-common": "^0.8.1",
|
|
104
|
-
"@backstage/repo-tools": "^0.9.
|
|
104
|
+
"@backstage/repo-tools": "^0.9.7-next.0",
|
|
105
105
|
"@types/core-js": "^2.5.4",
|
|
106
106
|
"@types/git-url-parse": "^9.0.0",
|
|
107
107
|
"@types/glob": "^8.0.0",
|