@backstage/plugin-catalog-backend 1.7.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 +28 -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 +505 -274
- 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,33 @@
|
|
|
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
|
+
|
|
3
31
|
## 1.7.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/alpha/package.json
CHANGED