@backstage/plugin-catalog-backend 1.7.2-next.2 → 1.8.0-next.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 +57 -0
- package/alpha/package.json +3 -3
- package/dist/alpha.cjs.js +5027 -0
- package/dist/alpha.cjs.js.map +1 -0
- package/dist/alpha.d.ts +144 -0
- package/dist/index.cjs.js +569 -314
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +289 -374
- package/package.json +31 -21
- package/dist/index.alpha.d.ts +0 -758
- package/dist/index.beta.d.ts +0 -645
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 1.8.0-next.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7f4ea3d360: Add /entities/by-query endpoint returning paginated entities.
|
|
8
|
+
|
|
9
|
+
The endpoint supports cursor base pagination and server side sorting of the entities
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ac8929f2f3: Fix export of `defaultCatalogCollatorEntityTransformer`.
|
|
14
|
+
- 928a12a9b3: Internal refactor of `/alpha` exports.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/catalog-client@1.4.0-next.0
|
|
17
|
+
- @backstage/backend-plugin-api@0.4.1-next.0
|
|
18
|
+
- @backstage/backend-common@0.18.3-next.0
|
|
19
|
+
- @backstage/catalog-model@1.2.1-next.0
|
|
20
|
+
- @backstage/plugin-catalog-common@1.0.12-next.0
|
|
21
|
+
- @backstage/plugin-catalog-node@1.3.4-next.0
|
|
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-permission-common@0.7.3
|
|
27
|
+
- @backstage/plugin-permission-node@0.7.6-next.0
|
|
28
|
+
- @backstage/plugin-scaffolder-common@1.2.6-next.0
|
|
29
|
+
- @backstage/plugin-search-common@1.2.1
|
|
30
|
+
|
|
31
|
+
## 1.7.2
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- 071354eb7d: Add additional validation as security precations for output entities.
|
|
36
|
+
- b977c2e69f: Minor improvements to the descriptions provided with permission rules schemas
|
|
37
|
+
- 2380506364: The process of adding or modifying fields in the software-catalog search index has been simplified. For more details, see [how to customize fields in the Software Catalog index](https://backstage.io/docs/features/search/how-to-guides#how-to-customize-fields-in-the-software-catalog-index).
|
|
38
|
+
- 9573651919: The previous migration that adds the `search.original_value` column may leave some of the entities not updated. Add a migration script to trigger a reprocessing of the entities.
|
|
39
|
+
- 9f71a2fd20: Location rule target patterns now also match hidden files, i.e. path components with a leading dot.
|
|
40
|
+
- e716946103: Updated usage of the lifecycle service.
|
|
41
|
+
- 1aec041c34: Fixed an issue where entities sometimes were not properly deleted during a full mutation.
|
|
42
|
+
- 0ff03319be: Updated usage of `createBackendPlugin`.
|
|
43
|
+
- fc73f6aae5: Switched the order of reprocessing statements retroactively in migrations. This only improves the experience for those who at a later time perform a large upgrade of an old Backstage installation.
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @backstage/backend-plugin-api@0.4.0
|
|
46
|
+
- @backstage/backend-common@0.18.2
|
|
47
|
+
- @backstage/catalog-model@1.2.0
|
|
48
|
+
- @backstage/plugin-catalog-node@1.3.3
|
|
49
|
+
- @backstage/catalog-client@1.3.1
|
|
50
|
+
- @backstage/config@1.0.6
|
|
51
|
+
- @backstage/errors@1.1.4
|
|
52
|
+
- @backstage/integration@1.4.2
|
|
53
|
+
- @backstage/types@1.0.2
|
|
54
|
+
- @backstage/plugin-catalog-common@1.0.11
|
|
55
|
+
- @backstage/plugin-permission-common@0.7.3
|
|
56
|
+
- @backstage/plugin-permission-node@0.7.5
|
|
57
|
+
- @backstage/plugin-scaffolder-common@1.2.5
|
|
58
|
+
- @backstage/plugin-search-common@1.2.1
|
|
59
|
+
|
|
3
60
|
## 1.7.2-next.2
|
|
4
61
|
|
|
5
62
|
### Patch Changes
|
package/alpha/package.json
CHANGED