@backstage/plugin-catalog-backend 0.22.0 → 0.23.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 +52 -0
- package/alpha/package.json +6 -0
- package/dist/index.alpha.d.ts +1506 -0
- package/dist/index.beta.d.ts +1427 -0
- package/dist/index.cjs.js +1525 -1388
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1056 -965
- package/package.json +20 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 0.23.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0c9cf2822d: **Breaking**: Mark permission-related exports as alpha. This means that the exports below should now be imported from `@backstage/plugin-catalog-backend/alpha` instead of `@backstage/plugin-catalog-backend`.
|
|
8
|
+
|
|
9
|
+
- `catalogConditions`
|
|
10
|
+
- `createCatalogPolicyDecision`
|
|
11
|
+
- `permissionRules`
|
|
12
|
+
- `createCatalogPermissionRule`
|
|
13
|
+
|
|
14
|
+
- 862e416239: **Breaking**: Removed `entityRef` from `CatalogProcessorRelationResult`. The field is not used by the catalog and relation information is already available inside the `reation` property.
|
|
15
|
+
- c85292b768: **Breaking**: Removed optional `handleError()` from `CatalogProcessor`. This optional method is never called by the catalog processing engine and can therefore be removed.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 83a83381b0: **DEPRECATED**: The `results` export, and instead adding `processingResult` with the same shape and purpose.
|
|
20
|
+
- 83a83381b0: Internal restructuring to collect the various provider files in a `modules` folder while waiting to be externalized
|
|
21
|
+
- fc6d31b5c3: Deprecated the `BitbucketRepositoryParser` type.
|
|
22
|
+
- 022507c860: A `DefaultCatalogCollatorFactory`, which works with the new stream-based
|
|
23
|
+
search indexing subsystem, is now available. The `DefaultCatalogCollator` will
|
|
24
|
+
continue to be available for those unable to upgrade to the stream-based
|
|
25
|
+
`@backstage/search-backend-node` (and related packages), however it is now
|
|
26
|
+
marked as deprecated and will be removed in a future version.
|
|
27
|
+
|
|
28
|
+
To upgrade this plugin and the search indexing subsystem in one go, check
|
|
29
|
+
[this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
|
|
30
|
+
for necessary changes to your search backend plugin configuration.
|
|
31
|
+
|
|
32
|
+
- ab7b6cb7b1: **DEPRECATION**: Moved the `CatalogEntityDocument` to `@backstage/plugin-catalog-common` and deprecated the export from `@backstage/plugin-catalog-backend`.
|
|
33
|
+
|
|
34
|
+
A new `type` field has also been added to `CatalogEntityDocument` as a replacement for `componentType`, which is now deprecated. Both fields are still present and should be set to the same value in order to avoid issues with indexing.
|
|
35
|
+
|
|
36
|
+
Any search customizations need to be updated to use this new `type` field instead, including any custom frontend filters, custom frontend result components, custom search decorators, or non-default Catalog collator implementations.
|
|
37
|
+
|
|
38
|
+
- cb09096607: Tweaked the wording of the "does not have a location" errors to include the actual missing annotation name, to help users better in fixing their inputs.
|
|
39
|
+
- 36aa63022b: Use `CompoundEntityRef` instead of `EntityName`, and `getCompoundEntityRef` instead of `getEntityName`, from `@backstage/catalog-model`.
|
|
40
|
+
- b753d22a56: **DEPRECATION**: Deprecated the `RefreshIntervalFunction` and `createRandomRefreshInterval` in favour of the `ProcessingIntervalFunction` and `createRandomProcessingInterval` type and method respectively. Please migrate to use the new names.
|
|
41
|
+
|
|
42
|
+
**DEPRECATION**: Deprecated the `setRefreshInterval` and `setRefreshIntervalSeconds` methods on the `CatalogBuilder` for the new `setProcessingInterval` and `setProcessingIntervalSeconds` methods. Please migrate to use the new names.
|
|
43
|
+
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @backstage/catalog-model@0.12.0
|
|
46
|
+
- @backstage/catalog-client@0.8.0
|
|
47
|
+
- @backstage/backend-common@0.12.0
|
|
48
|
+
- @backstage/plugin-catalog-common@0.2.0
|
|
49
|
+
- @backstage/integration@0.8.0
|
|
50
|
+
- @backstage/plugin-permission-common@0.5.2
|
|
51
|
+
- @backstage/plugin-permission-node@0.5.3
|
|
52
|
+
- @backstage/search-common@0.3.0
|
|
53
|
+
- @backstage/plugin-scaffolder-common@0.2.3
|
|
54
|
+
|
|
3
55
|
## 0.22.0
|
|
4
56
|
|
|
5
57
|
### Minor Changes
|