@backstage/plugin-search-backend 0.5.0-next.2 → 0.5.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 +20 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 94ccd772d4: **BREAKING**: The `authorization` property is no longer returned on search results when queried. Note: this will only result in a breaking change if you have custom code in your frontend that relies on the `authorization.resourceRef` property on documents.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 30f9884359: Check for non-resource permissions when authorizing result-by-result in AuthorizedSearchEngine.
|
|
12
|
+
- 3c8cfaaa80: Use `PermissionEvaluator` instead of `PermissionAuthorizer`, which is now deprecated.
|
|
13
|
+
- 62ee65422c: Use new `IndexableResultSet` type as return type of query method in `SearchEngine` implementation.
|
|
14
|
+
- c98d271466: Use updated types from `@backstage/plugin-permission-common`
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/plugin-permission-common@0.6.0
|
|
17
|
+
- @backstage/plugin-permission-node@0.6.0
|
|
18
|
+
- @backstage/plugin-auth-node@0.2.0
|
|
19
|
+
- @backstage/plugin-search-common@0.3.3
|
|
20
|
+
- @backstage/backend-common@0.13.2
|
|
21
|
+
- @backstage/plugin-search-backend-node@0.6.0
|
|
22
|
+
|
|
3
23
|
## 0.5.0-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-search-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that provides your backstage app with search",
|
|
4
|
-
"version": "0.5.0
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"clean": "backstage-cli package clean"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@backstage/backend-common": "^0.13.2
|
|
26
|
+
"@backstage/backend-common": "^0.13.2",
|
|
27
27
|
"@backstage/config": "^1.0.0",
|
|
28
28
|
"@backstage/errors": "^1.0.0",
|
|
29
|
-
"@backstage/plugin-auth-node": "^0.2.0
|
|
30
|
-
"@backstage/plugin-permission-common": "^0.6.0
|
|
31
|
-
"@backstage/plugin-permission-node": "^0.6.0
|
|
32
|
-
"@backstage/plugin-search-backend-node": "^0.6.0
|
|
33
|
-
"@backstage/plugin-search-common": "^0.3.3
|
|
29
|
+
"@backstage/plugin-auth-node": "^0.2.0",
|
|
30
|
+
"@backstage/plugin-permission-common": "^0.6.0",
|
|
31
|
+
"@backstage/plugin-permission-node": "^0.6.0",
|
|
32
|
+
"@backstage/plugin-search-backend-node": "^0.6.0",
|
|
33
|
+
"@backstage/plugin-search-common": "^0.3.3",
|
|
34
34
|
"@backstage/types": "^1.0.0",
|
|
35
35
|
"@types/express": "^4.17.6",
|
|
36
36
|
"dataloader": "^2.0.0",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"zod": "^3.11.6"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@backstage/cli": "^0.17.0
|
|
46
|
+
"@backstage/cli": "^0.17.0",
|
|
47
47
|
"@types/supertest": "^2.0.8",
|
|
48
48
|
"supertest": "^6.1.3"
|
|
49
49
|
},
|
|
50
50
|
"files": [
|
|
51
51
|
"dist"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "e0e44c433319711c2fb8b175db411a621f7aaec2"
|
|
54
54
|
}
|