@backstage/plugin-search-backend 1.5.4-next.1 → 1.5.4
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 +35 -0
- package/alpha/package.json +1 -1
- package/package.json +12 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend
|
|
2
2
|
|
|
3
|
+
## 1.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2bd1410: Removed unused dependencies
|
|
8
|
+
- 744c0cb: Update the router to use the new `auth` services, it now accepts an optional discovery service option to get credentials for the permission service.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-common@0.21.4
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/backend-plugin-api@0.6.14
|
|
14
|
+
- @backstage/plugin-permission-common@0.7.13
|
|
15
|
+
- @backstage/plugin-search-common@1.2.11
|
|
16
|
+
- @backstage/backend-openapi-utils@0.1.7
|
|
17
|
+
- @backstage/plugin-search-backend-node@1.2.18
|
|
18
|
+
- @backstage/plugin-permission-node@0.7.25
|
|
19
|
+
- @backstage/types@1.1.1
|
|
20
|
+
|
|
21
|
+
## 1.5.4-next.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 2bd1410: Removed unused dependencies
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-common@0.21.4-next.2
|
|
28
|
+
- @backstage/backend-openapi-utils@0.1.7-next.2
|
|
29
|
+
- @backstage/backend-plugin-api@0.6.14-next.2
|
|
30
|
+
- @backstage/config@1.2.0-next.1
|
|
31
|
+
- @backstage/errors@1.2.4-next.0
|
|
32
|
+
- @backstage/types@1.1.1
|
|
33
|
+
- @backstage/plugin-permission-common@0.7.13-next.1
|
|
34
|
+
- @backstage/plugin-permission-node@0.7.25-next.2
|
|
35
|
+
- @backstage/plugin-search-backend-node@1.2.18-next.2
|
|
36
|
+
- @backstage/plugin-search-common@1.2.11-next.1
|
|
37
|
+
|
|
3
38
|
## 1.5.4-next.1
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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": "1.5.4
|
|
4
|
+
"version": "1.5.4",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -41,16 +41,15 @@
|
|
|
41
41
|
"generate": "backstage-repo-tools package schema openapi generate --server"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@backstage/backend-common": "^0.21.4
|
|
45
|
-
"@backstage/backend-openapi-utils": "^0.1.7
|
|
46
|
-
"@backstage/backend-plugin-api": "^0.6.14
|
|
47
|
-
"@backstage/config": "^1.2.0
|
|
48
|
-
"@backstage/errors": "^1.2.4
|
|
49
|
-
"@backstage/plugin-
|
|
50
|
-
"@backstage/plugin-permission-
|
|
51
|
-
"@backstage/plugin-
|
|
52
|
-
"@backstage/plugin-search-
|
|
53
|
-
"@backstage/plugin-search-common": "^1.2.11-next.1",
|
|
44
|
+
"@backstage/backend-common": "^0.21.4",
|
|
45
|
+
"@backstage/backend-openapi-utils": "^0.1.7",
|
|
46
|
+
"@backstage/backend-plugin-api": "^0.6.14",
|
|
47
|
+
"@backstage/config": "^1.2.0",
|
|
48
|
+
"@backstage/errors": "^1.2.4",
|
|
49
|
+
"@backstage/plugin-permission-common": "^0.7.13",
|
|
50
|
+
"@backstage/plugin-permission-node": "^0.7.25",
|
|
51
|
+
"@backstage/plugin-search-backend-node": "^1.2.18",
|
|
52
|
+
"@backstage/plugin-search-common": "^1.2.11",
|
|
54
53
|
"@backstage/types": "^1.1.1",
|
|
55
54
|
"@types/express": "^4.17.6",
|
|
56
55
|
"dataloader": "^2.0.0",
|
|
@@ -62,8 +61,8 @@
|
|
|
62
61
|
"zod": "^3.22.4"
|
|
63
62
|
},
|
|
64
63
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-test-utils": "^0.3.4
|
|
66
|
-
"@backstage/cli": "^0.
|
|
64
|
+
"@backstage/backend-test-utils": "^0.3.4",
|
|
65
|
+
"@backstage/cli": "^0.26.0",
|
|
67
66
|
"@types/supertest": "^2.0.8",
|
|
68
67
|
"supertest": "^6.1.3"
|
|
69
68
|
},
|