@backstage/plugin-search-backend 1.3.0-next.2 → 1.3.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 +21 -0
- package/alpha/package.json +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1469daa409e: Exports search plugin that can be used with the new backend system. For documentation on how to migrate, check out the [how to migrate to the new backend system guide](https://backstage.io/docs/features/search/how-to-guides/#how-to-migrate-your-backend-installation-to-use-search-together-with-the-new-backend-system).
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 1e4f5e91b8e: Bump `zod` and `zod-to-json-schema` dependencies.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-common@0.18.4
|
|
14
|
+
- @backstage/plugin-permission-node@0.7.7
|
|
15
|
+
- @backstage/plugin-permission-common@0.7.5
|
|
16
|
+
- @backstage/plugin-search-backend-node@1.2.0
|
|
17
|
+
- @backstage/plugin-auth-node@0.2.13
|
|
18
|
+
- @backstage/backend-plugin-api@0.5.1
|
|
19
|
+
- @backstage/config@1.0.7
|
|
20
|
+
- @backstage/errors@1.1.5
|
|
21
|
+
- @backstage/types@1.0.2
|
|
22
|
+
- @backstage/plugin-search-common@1.2.3
|
|
23
|
+
|
|
3
24
|
## 1.3.0-next.2
|
|
4
25
|
|
|
5
26
|
### 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.3.0
|
|
4
|
+
"version": "1.3.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"clean": "backstage-cli package clean"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.18.4
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.5.1
|
|
37
|
+
"@backstage/backend-common": "^0.18.4",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.5.1",
|
|
39
39
|
"@backstage/config": "^1.0.7",
|
|
40
40
|
"@backstage/errors": "^1.1.5",
|
|
41
|
-
"@backstage/plugin-auth-node": "^0.2.13
|
|
42
|
-
"@backstage/plugin-permission-common": "^0.7.5
|
|
43
|
-
"@backstage/plugin-permission-node": "^0.7.7
|
|
44
|
-
"@backstage/plugin-search-backend-node": "^1.2.0
|
|
45
|
-
"@backstage/plugin-search-common": "^1.2.3
|
|
41
|
+
"@backstage/plugin-auth-node": "^0.2.13",
|
|
42
|
+
"@backstage/plugin-permission-common": "^0.7.5",
|
|
43
|
+
"@backstage/plugin-permission-node": "^0.7.7",
|
|
44
|
+
"@backstage/plugin-search-backend-node": "^1.2.0",
|
|
45
|
+
"@backstage/plugin-search-common": "^1.2.3",
|
|
46
46
|
"@backstage/types": "^1.0.2",
|
|
47
47
|
"@types/express": "^4.17.6",
|
|
48
48
|
"dataloader": "^2.0.0",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"zod": "^3.21.4"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@backstage/backend-test-utils": "^0.1.36
|
|
59
|
-
"@backstage/cli": "^0.22.6
|
|
58
|
+
"@backstage/backend-test-utils": "^0.1.36",
|
|
59
|
+
"@backstage/cli": "^0.22.6",
|
|
60
60
|
"@types/supertest": "^2.0.8",
|
|
61
61
|
"supertest": "^6.1.3"
|
|
62
62
|
},
|