@backstage/plugin-catalog-backend 0.17.0 → 0.17.4
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 +53 -0
- package/dist/index.cjs.js +394 -240
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +172 -136
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 0.17.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5d2a7303bd: This fixes a bug where locations couldn't be added unless the processing engine is started.
|
|
8
|
+
It's now possible to run the catalog backend without starting the processing engine and still allowing locations registrations.
|
|
9
|
+
|
|
10
|
+
This is done by refactor the `EntityProvider.connect` to happen outside the engine.
|
|
11
|
+
|
|
12
|
+
- 06934f2f52: Adjust entity query construction to ensure sub-queries are always isolated from one another.
|
|
13
|
+
- b90fc74d70: adds getDefaultProcessor method to CatalogBuilder
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/catalog-client@0.5.2
|
|
16
|
+
- @backstage/catalog-model@0.9.7
|
|
17
|
+
- @backstage/backend-common@0.9.10
|
|
18
|
+
|
|
19
|
+
## 0.17.3
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 86bef79ad1: Allow singleton and flexibly nested EntityFilters
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/backend-common@0.9.9
|
|
26
|
+
- @backstage/catalog-client@0.5.1
|
|
27
|
+
|
|
28
|
+
## 0.17.2
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- b9ce1ce2c1: Allow custom LocationAnalyzer in NextCatalogBuilder
|
|
33
|
+
- 10615525f3: Switch to use the json and observable types from `@backstage/types`
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/config@0.1.11
|
|
36
|
+
- @backstage/errors@0.1.4
|
|
37
|
+
- @backstage/integration@0.6.9
|
|
38
|
+
- @backstage/backend-common@0.9.8
|
|
39
|
+
- @backstage/catalog-model@0.9.6
|
|
40
|
+
- @backstage/search-common@0.2.1
|
|
41
|
+
|
|
42
|
+
## 0.17.1
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- 3adaf88db2: Take CatalogParser in account when processing file locations.
|
|
47
|
+
- 1f62d1cbe9: Minor rearrangement of `Stitcher` to clarify the scope of one stitch round
|
|
48
|
+
- 3ba87f514e: Add a `GitHubOrgEntityProvider` that can be used instead of the `GithubOrgReaderProcessor`.
|
|
49
|
+
- 36e67d2f24: Internal updates to apply more strict checks to throw errors.
|
|
50
|
+
- 177401b571: Use entity title (if defined) as title of documents indexed by `DefaultCatalogCollator`
|
|
51
|
+
- Updated dependencies
|
|
52
|
+
- @backstage/backend-common@0.9.7
|
|
53
|
+
- @backstage/errors@0.1.3
|
|
54
|
+
- @backstage/catalog-model@0.9.5
|
|
55
|
+
|
|
3
56
|
## 0.17.0
|
|
4
57
|
|
|
5
58
|
### Minor Changes
|