@backstage/plugin-catalog-backend 1.7.2 → 1.8.0-next.1
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 +50 -0
- package/alpha/package.json +3 -3
- package/dist/alpha.cjs.js +5035 -0
- package/dist/alpha.cjs.js.map +1 -0
- package/dist/alpha.d.ts +144 -0
- package/dist/index.cjs.js +517 -278
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +289 -374
- package/package.json +38 -28
- package/dist/index.alpha.d.ts +0 -758
- package/dist/index.beta.d.ts +0 -645
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend
|
|
2
2
|
|
|
3
|
+
## 1.8.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
|
|
8
|
+
- f093ce83d58: Fix a bug where the batch fetch by ref endpoint did not work in conjunction with filtering (e.g. if authorization was enabled).
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-permission-node@0.7.6-next.1
|
|
11
|
+
- @backstage/errors@1.1.5-next.0
|
|
12
|
+
- @backstage/backend-common@0.18.3-next.1
|
|
13
|
+
- @backstage/catalog-client@1.4.0-next.1
|
|
14
|
+
- @backstage/integration@1.4.3-next.0
|
|
15
|
+
- @backstage/plugin-permission-common@0.7.4-next.0
|
|
16
|
+
- @backstage/backend-plugin-api@0.4.1-next.1
|
|
17
|
+
- @backstage/config@1.0.7-next.0
|
|
18
|
+
- @backstage/catalog-model@1.2.1-next.1
|
|
19
|
+
- @backstage/types@1.0.2
|
|
20
|
+
- @backstage/plugin-catalog-common@1.0.12-next.1
|
|
21
|
+
- @backstage/plugin-catalog-node@1.3.4-next.1
|
|
22
|
+
- @backstage/plugin-scaffolder-common@1.2.6-next.1
|
|
23
|
+
- @backstage/plugin-search-common@1.2.2-next.0
|
|
24
|
+
|
|
25
|
+
## 1.8.0-next.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 7f4ea3d360: Add /entities/by-query endpoint returning paginated entities.
|
|
30
|
+
|
|
31
|
+
The endpoint supports cursor base pagination and server side sorting of the entities
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- ac8929f2f3: Fix export of `defaultCatalogCollatorEntityTransformer`.
|
|
36
|
+
- 928a12a9b3: Internal refactor of `/alpha` exports.
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/catalog-client@1.4.0-next.0
|
|
39
|
+
- @backstage/backend-plugin-api@0.4.1-next.0
|
|
40
|
+
- @backstage/backend-common@0.18.3-next.0
|
|
41
|
+
- @backstage/catalog-model@1.2.1-next.0
|
|
42
|
+
- @backstage/plugin-catalog-common@1.0.12-next.0
|
|
43
|
+
- @backstage/plugin-catalog-node@1.3.4-next.0
|
|
44
|
+
- @backstage/config@1.0.6
|
|
45
|
+
- @backstage/errors@1.1.4
|
|
46
|
+
- @backstage/integration@1.4.2
|
|
47
|
+
- @backstage/types@1.0.2
|
|
48
|
+
- @backstage/plugin-permission-common@0.7.3
|
|
49
|
+
- @backstage/plugin-permission-node@0.7.6-next.0
|
|
50
|
+
- @backstage/plugin-scaffolder-common@1.2.6-next.0
|
|
51
|
+
- @backstage/plugin-search-common@1.2.1
|
|
52
|
+
|
|
3
53
|
## 1.7.2
|
|
4
54
|
|
|
5
55
|
### Patch Changes
|
package/alpha/package.json
CHANGED