@backstage/plugin-search-backend 1.4.0-next.1 → 1.4.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 CHANGED
@@ -1,5 +1,40 @@
1
1
  # @backstage/plugin-search-backend
2
2
 
3
+ ## 1.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ebeb77586975: Now performs request validation based on OpenAPI schema through `@backstage/backend-openapi-utils`. Error responses for invalid input, like `"a"` instead of a number, may have changed.
8
+
9
+ ### Patch Changes
10
+
11
+ - 629cbd194a87: Use `coreServices.rootConfig` instead of `coreService.config`
12
+ - 12a8c94eda8d: Add package repository and homepage metadata
13
+ - 951ab6c9db58: Add missing `configSchema` to package.json
14
+ - Updated dependencies
15
+ - @backstage/backend-common@0.19.2
16
+ - @backstage/backend-plugin-api@0.6.0
17
+ - @backstage/backend-openapi-utils@0.0.3
18
+ - @backstage/plugin-search-backend-node@1.2.4
19
+ - @backstage/plugin-auth-node@0.2.17
20
+ - @backstage/plugin-permission-node@0.7.11
21
+ - @backstage/config@1.0.8
22
+ - @backstage/errors@1.2.1
23
+ - @backstage/types@1.1.0
24
+ - @backstage/plugin-permission-common@0.7.7
25
+ - @backstage/plugin-search-common@1.2.5
26
+
27
+ ## 1.4.0-next.2
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies
32
+ - @backstage/backend-plugin-api@0.6.0-next.2
33
+ - @backstage/backend-common@0.19.2-next.2
34
+ - @backstage/plugin-permission-node@0.7.11-next.2
35
+ - @backstage/plugin-search-backend-node@1.2.4-next.2
36
+ - @backstage/plugin-auth-node@0.2.17-next.2
37
+
3
38
  ## 1.4.0-next.1
4
39
 
5
40
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-search-backend",
3
- "version": "1.4.0-next.1",
3
+ "version": "1.4.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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.4.0-next.1",
4
+ "version": "1.4.0",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -40,15 +40,15 @@
40
40
  "clean": "backstage-cli package clean"
41
41
  },
42
42
  "dependencies": {
43
- "@backstage/backend-common": "^0.19.2-next.1",
44
- "@backstage/backend-openapi-utils": "^0.0.3-next.1",
45
- "@backstage/backend-plugin-api": "^0.6.0-next.1",
43
+ "@backstage/backend-common": "^0.19.2",
44
+ "@backstage/backend-openapi-utils": "^0.0.3",
45
+ "@backstage/backend-plugin-api": "^0.6.0",
46
46
  "@backstage/config": "^1.0.8",
47
47
  "@backstage/errors": "^1.2.1",
48
- "@backstage/plugin-auth-node": "^0.2.17-next.1",
48
+ "@backstage/plugin-auth-node": "^0.2.17",
49
49
  "@backstage/plugin-permission-common": "^0.7.7",
50
- "@backstage/plugin-permission-node": "^0.7.11-next.1",
51
- "@backstage/plugin-search-backend-node": "^1.2.4-next.1",
50
+ "@backstage/plugin-permission-node": "^0.7.11",
51
+ "@backstage/plugin-search-backend-node": "^1.2.4",
52
52
  "@backstage/plugin-search-common": "^1.2.5",
53
53
  "@backstage/types": "^1.1.0",
54
54
  "@types/express": "^4.17.6",
@@ -62,8 +62,8 @@
62
62
  "zod": "^3.21.4"
63
63
  },
64
64
  "devDependencies": {
65
- "@backstage/backend-test-utils": "^0.2.0-next.1",
66
- "@backstage/cli": "^0.22.10-next.1",
65
+ "@backstage/backend-test-utils": "^0.2.0",
66
+ "@backstage/cli": "^0.22.10",
67
67
  "@types/supertest": "^2.0.8",
68
68
  "supertest": "^6.1.3"
69
69
  },