@backstage/plugin-catalog-backend 1.15.0-next.2 → 1.15.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 +41 -0
- package/alpha/package.json +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 1.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e5bf3749ad: Support adding location analyzers in new catalog analysis extension point and move `AnalyzeOptions` and `ScmLocationAnalyzer` types to `@backstage/plugin-catalog-node`
|
|
8
|
+
- 8d756968f9: Introduce a new optional config parameter `catalog.stitchingStrategy.mode`,
|
|
9
|
+
which can have the values `'immediate'` (default) and `'deferred'`. The default
|
|
10
|
+
is for stitching to work as it did before this change, which means that it
|
|
11
|
+
happens "in-band" (blocking) immediately when each processing task finishes.
|
|
12
|
+
When set to `'deferred'`, stitching is instead deferred to happen on a separate
|
|
13
|
+
asynchronous worker queue just like processing.
|
|
14
|
+
|
|
15
|
+
Deferred stitching should make performance smoother when ingesting large amounts
|
|
16
|
+
of entities, and reduce p99 processing times and repeated over-stitching of
|
|
17
|
+
hot spot entities when fan-out/fan-in in terms of relations is very large. It
|
|
18
|
+
does however also come with some performance cost due to the queuing with how
|
|
19
|
+
much wall-clock time some types of task take.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 6694b369a3: Update the OpenAPI spec with more complete error responses and request bodies using Optic. Also, updates the test cases to use the new `supertest` pass through from `@backstage/backend-openapi-utils`.
|
|
24
|
+
- 013611b42e: `knex` has been bumped to major version 3 and `better-sqlite3` to major version 9, which deprecate node 16 support.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/plugin-catalog-node@1.5.0
|
|
27
|
+
- @backstage/integration@1.7.2
|
|
28
|
+
- @backstage/backend-common@0.19.9
|
|
29
|
+
- @backstage/backend-plugin-api@0.6.7
|
|
30
|
+
- @backstage/backend-tasks@0.5.12
|
|
31
|
+
- @backstage/catalog-client@1.4.6
|
|
32
|
+
- @backstage/plugin-permission-common@0.7.10
|
|
33
|
+
- @backstage/backend-openapi-utils@0.1.0
|
|
34
|
+
- @backstage/plugin-search-backend-module-catalog@0.1.11
|
|
35
|
+
- @backstage/catalog-model@1.4.3
|
|
36
|
+
- @backstage/config@1.1.1
|
|
37
|
+
- @backstage/errors@1.2.3
|
|
38
|
+
- @backstage/types@1.1.1
|
|
39
|
+
- @backstage/plugin-auth-node@0.4.1
|
|
40
|
+
- @backstage/plugin-catalog-common@1.0.18
|
|
41
|
+
- @backstage/plugin-events-node@0.2.16
|
|
42
|
+
- @backstage/plugin-permission-node@0.7.18
|
|
43
|
+
|
|
3
44
|
## 1.15.0-next.2
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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.15.0
|
|
4
|
+
"version": "1.15.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,22 +43,22 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.19.9
|
|
47
|
-
"@backstage/backend-openapi-utils": "^0.1.0
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.6.7
|
|
49
|
-
"@backstage/backend-tasks": "^0.5.12
|
|
50
|
-
"@backstage/catalog-client": "^1.4.
|
|
46
|
+
"@backstage/backend-common": "^0.19.9",
|
|
47
|
+
"@backstage/backend-openapi-utils": "^0.1.0",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.6.7",
|
|
49
|
+
"@backstage/backend-tasks": "^0.5.12",
|
|
50
|
+
"@backstage/catalog-client": "^1.4.6",
|
|
51
51
|
"@backstage/catalog-model": "^1.4.3",
|
|
52
52
|
"@backstage/config": "^1.1.1",
|
|
53
53
|
"@backstage/errors": "^1.2.3",
|
|
54
|
-
"@backstage/integration": "^1.7.2
|
|
55
|
-
"@backstage/plugin-auth-node": "^0.4.1
|
|
56
|
-
"@backstage/plugin-catalog-common": "^1.0.
|
|
57
|
-
"@backstage/plugin-catalog-node": "^1.5.0
|
|
58
|
-
"@backstage/plugin-events-node": "^0.2.16
|
|
59
|
-
"@backstage/plugin-permission-common": "^0.7.
|
|
60
|
-
"@backstage/plugin-permission-node": "^0.7.18
|
|
61
|
-
"@backstage/plugin-search-backend-module-catalog": "^0.1.11
|
|
54
|
+
"@backstage/integration": "^1.7.2",
|
|
55
|
+
"@backstage/plugin-auth-node": "^0.4.1",
|
|
56
|
+
"@backstage/plugin-catalog-common": "^1.0.18",
|
|
57
|
+
"@backstage/plugin-catalog-node": "^1.5.0",
|
|
58
|
+
"@backstage/plugin-events-node": "^0.2.16",
|
|
59
|
+
"@backstage/plugin-permission-common": "^0.7.10",
|
|
60
|
+
"@backstage/plugin-permission-node": "^0.7.18",
|
|
61
|
+
"@backstage/plugin-search-backend-module-catalog": "^0.1.11",
|
|
62
62
|
"@backstage/types": "^1.1.1",
|
|
63
63
|
"@opentelemetry/api": "^1.3.0",
|
|
64
64
|
"@types/express": "^4.17.6",
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"zod": "^3.21.4"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@backstage/backend-test-utils": "^0.2.8
|
|
87
|
-
"@backstage/cli": "^0.24.0
|
|
88
|
-
"@backstage/plugin-permission-common": "^0.7.
|
|
86
|
+
"@backstage/backend-test-utils": "^0.2.8",
|
|
87
|
+
"@backstage/cli": "^0.24.0",
|
|
88
|
+
"@backstage/plugin-permission-common": "^0.7.10",
|
|
89
89
|
"@types/core-js": "^2.5.4",
|
|
90
90
|
"@types/git-url-parse": "^9.0.0",
|
|
91
91
|
"@types/lodash": "^4.14.151",
|