@backstage/plugin-catalog-backend 1.7.0-next.2 → 1.7.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 +28 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f75bf76330: Implemented server side ordering in the entities endpoint
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e23f13a573: Enable the `by-refs` endpoint to receive `fields` through the POST body as well as through query parameters.
|
|
12
|
+
- f23eef3aa2: Updated dependency `better-sqlite3` to `^8.0.0`.
|
|
13
|
+
- d136793ff0: Fixed an issue where internal references in the catalog would stick around for longer than expected, causing entities to not be deleted or orphaned as expected.
|
|
14
|
+
- 8e06f3cf00: Switched imports of `loggerToWinstonLogger` to `@backstage/backend-common`.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-plugin-api@0.3.0
|
|
17
|
+
- @backstage/backend-common@0.18.0
|
|
18
|
+
- @backstage/catalog-model@1.1.5
|
|
19
|
+
- @backstage/plugin-scaffolder-common@1.2.4
|
|
20
|
+
- @backstage/catalog-client@1.3.0
|
|
21
|
+
- @backstage/plugin-catalog-node@1.3.1
|
|
22
|
+
- @backstage/config@1.0.6
|
|
23
|
+
- @backstage/errors@1.1.4
|
|
24
|
+
- @backstage/integration@1.4.2
|
|
25
|
+
- @backstage/types@1.0.2
|
|
26
|
+
- @backstage/plugin-catalog-common@1.0.10
|
|
27
|
+
- @backstage/plugin-permission-common@0.7.3
|
|
28
|
+
- @backstage/plugin-permission-node@0.7.3
|
|
29
|
+
- @backstage/plugin-search-common@1.2.1
|
|
30
|
+
|
|
3
31
|
## 1.7.0-next.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -390,7 +390,7 @@ export declare type CatalogPermissionRule<TParams extends PermissionRuleParams =
|
|
|
390
390
|
* Catalog plugin
|
|
391
391
|
* @alpha
|
|
392
392
|
*/
|
|
393
|
-
export declare const catalogPlugin: (
|
|
393
|
+
export declare const catalogPlugin: () => BackendFeature;
|
|
394
394
|
|
|
395
395
|
/**
|
|
396
396
|
* Represents the engine that drives the processing loops. Some backend
|
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.7.0
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,19 +33,19 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.18.0
|
|
37
|
-
"@backstage/backend-plugin-api": "^0.3.0
|
|
38
|
-
"@backstage/catalog-client": "^1.3.0
|
|
39
|
-
"@backstage/catalog-model": "^1.1.5
|
|
40
|
-
"@backstage/config": "^1.0.6
|
|
36
|
+
"@backstage/backend-common": "^0.18.0",
|
|
37
|
+
"@backstage/backend-plugin-api": "^0.3.0",
|
|
38
|
+
"@backstage/catalog-client": "^1.3.0",
|
|
39
|
+
"@backstage/catalog-model": "^1.1.5",
|
|
40
|
+
"@backstage/config": "^1.0.6",
|
|
41
41
|
"@backstage/errors": "^1.1.4",
|
|
42
|
-
"@backstage/integration": "^1.4.2
|
|
43
|
-
"@backstage/plugin-catalog-common": "^1.0.10
|
|
44
|
-
"@backstage/plugin-catalog-node": "^1.3.1
|
|
45
|
-
"@backstage/plugin-permission-common": "^0.7.3
|
|
46
|
-
"@backstage/plugin-permission-node": "^0.7.3
|
|
47
|
-
"@backstage/plugin-scaffolder-common": "^1.2.4
|
|
48
|
-
"@backstage/plugin-search-common": "^1.2.1
|
|
42
|
+
"@backstage/integration": "^1.4.2",
|
|
43
|
+
"@backstage/plugin-catalog-common": "^1.0.10",
|
|
44
|
+
"@backstage/plugin-catalog-node": "^1.3.1",
|
|
45
|
+
"@backstage/plugin-permission-common": "^0.7.3",
|
|
46
|
+
"@backstage/plugin-permission-node": "^0.7.3",
|
|
47
|
+
"@backstage/plugin-scaffolder-common": "^1.2.4",
|
|
48
|
+
"@backstage/plugin-search-common": "^1.2.1",
|
|
49
49
|
"@backstage/types": "^1.0.2",
|
|
50
50
|
"@opentelemetry/api": "^1.3.0",
|
|
51
51
|
"@types/express": "^4.17.6",
|
|
@@ -71,10 +71,10 @@
|
|
|
71
71
|
"zod": "~3.18.0"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
|
-
"@backstage/backend-test-utils": "^0.1.32
|
|
75
|
-
"@backstage/cli": "^0.22.1
|
|
76
|
-
"@backstage/plugin-permission-common": "^0.7.3
|
|
77
|
-
"@backstage/plugin-search-backend-node": "^1.1.1
|
|
74
|
+
"@backstage/backend-test-utils": "^0.1.32",
|
|
75
|
+
"@backstage/cli": "^0.22.1",
|
|
76
|
+
"@backstage/plugin-permission-common": "^0.7.3",
|
|
77
|
+
"@backstage/plugin-search-backend-node": "^1.1.1",
|
|
78
78
|
"@types/core-js": "^2.5.4",
|
|
79
79
|
"@types/git-url-parse": "^9.0.0",
|
|
80
80
|
"@types/lodash": "^4.14.151",
|