@backstage/plugin-catalog-backend 0.18.0 → 0.19.3

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 CHANGED
@@ -1,5 +1,68 @@
1
1
  # @backstage/plugin-catalog-backend
2
2
 
3
+ ## 0.19.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.10.0
9
+ - @backstage/catalog-client@0.5.3
10
+
11
+ ## 0.19.2
12
+
13
+ ### Patch Changes
14
+
15
+ - 3368f27aef: Fixed the handling of optional locations so that the catalog no longer logs `NotFoundError`s for missing optional locations.
16
+ - Updated dependencies
17
+ - @backstage/backend-common@0.9.14
18
+ - @backstage/catalog-model@0.9.8
19
+
20
+ ## 0.19.1
21
+
22
+ ### Patch Changes
23
+
24
+ - dcd1a0c3f4: Minor improvement to the API reports, by not unpacking arguments directly
25
+ - 6bccc7d794: The `pagedRequest` method in the GitLab ingestion client is now public for re-use and may be used to make other calls to the GitLab API. Developers can now pass in a type into the GitLab `paginated` and `pagedRequest` functions as generics instead of forcing `any` (defaults to `any` to maintain compatibility). The `GitLabClient` now provides a `isSelfManaged` convenience method.
26
+ - 0e4daaa753: Reject catalog entities that have duplicate fields that vary only in casing.
27
+ - 98a9c35f0c: Honor database migration configuration
28
+ - Updated dependencies
29
+ - @backstage/backend-common@0.9.13
30
+
31
+ ## 0.19.0
32
+
33
+ ### Minor Changes
34
+
35
+ - 905dd952ac: **BREAKING** `DefaultCatalogCollator` has a new required option `tokenManager`. See the create-app changelog for how to create a `tokenManager` and add it to the `PluginEnvironment`. It can then be passed to the collator in `createPlugin`:
36
+
37
+ ```diff
38
+ // packages/backend/src/plugins/search.ts
39
+
40
+ ...
41
+ export default async function createPlugin({
42
+ ...
43
+ + tokenManager,
44
+ }: PluginEnvironment) {
45
+ ...
46
+
47
+ indexBuilder.addCollator({
48
+ defaultRefreshIntervalSeconds: 600,
49
+ collator: DefaultCatalogCollator.fromConfig(config, {
50
+ discovery,
51
+ + tokenManager,
52
+ }),
53
+ });
54
+
55
+ ...
56
+ }
57
+ ```
58
+
59
+ ### Patch Changes
60
+
61
+ - b055a6addc: Align on usage of `cross-fetch` vs `node-fetch` in frontend vs backend packages, and remove some unnecessary imports of either one of them
62
+ - Updated dependencies
63
+ - @backstage/integration@0.6.10
64
+ - @backstage/backend-common@0.9.12
65
+
3
66
  ## 0.18.0
4
67
 
5
68
  ### Minor Changes