@backstage/plugin-search-backend 0.4.2 → 0.4.5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +22 -19
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @backstage/plugin-search-backend
2
2
 
3
+ ## 0.4.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.11.0
9
+ - @backstage/plugin-permission-node@0.5.2
10
+ - @backstage/plugin-auth-node@0.1.3
11
+
12
+ ## 0.4.4
13
+
14
+ ### Patch Changes
15
+
16
+ - Fix for the previous release with missing type declarations.
17
+ - Updated dependencies
18
+ - @backstage/backend-common@0.10.9
19
+ - @backstage/config@0.1.15
20
+ - @backstage/errors@0.2.2
21
+ - @backstage/search-common@0.2.4
22
+ - @backstage/types@0.1.3
23
+ - @backstage/plugin-auth-node@0.1.2
24
+ - @backstage/plugin-permission-common@0.5.1
25
+ - @backstage/plugin-permission-node@0.5.1
26
+ - @backstage/plugin-search-backend-node@0.4.7
27
+
28
+ ## 0.4.3
29
+
30
+ ### Patch Changes
31
+
32
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
33
+ - Updated dependencies
34
+ - @backstage/backend-common@0.10.8
35
+ - @backstage/errors@0.2.1
36
+ - @backstage/plugin-auth-node@0.1.1
37
+ - @backstage/plugin-permission-common@0.5.0
38
+ - @backstage/config@0.1.14
39
+ - @backstage/search-common@0.2.3
40
+ - @backstage/types@0.1.2
41
+ - @backstage/plugin-permission-node@0.5.0
42
+ - @backstage/plugin-search-backend-node@0.4.6
43
+
3
44
  ## 0.4.2
4
45
 
5
46
  ### 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.4.2",
4
+ "version": "0.4.5",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -10,25 +10,28 @@
10
10
  "main": "dist/index.cjs.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "backend-plugin"
15
+ },
13
16
  "scripts": {
14
- "start": "backstage-cli backend:dev",
15
- "build": "backstage-cli backend:build",
16
- "lint": "backstage-cli lint",
17
- "test": "backstage-cli test",
18
- "prepack": "backstage-cli prepack",
19
- "postpack": "backstage-cli postpack",
20
- "clean": "backstage-cli clean"
17
+ "start": "backstage-cli package start",
18
+ "build": "backstage-cli package build",
19
+ "lint": "backstage-cli package lint",
20
+ "test": "backstage-cli package test",
21
+ "prepack": "backstage-cli package prepack",
22
+ "postpack": "backstage-cli package postpack",
23
+ "clean": "backstage-cli package clean"
21
24
  },
22
25
  "dependencies": {
23
- "@backstage/backend-common": "^0.10.7",
24
- "@backstage/config": "^0.1.13",
25
- "@backstage/errors": "^0.2.0",
26
- "@backstage/plugin-auth-node": "^0.1.0",
27
- "@backstage/plugin-permission-common": "^0.4.0-next.0",
28
- "@backstage/plugin-permission-node": "^0.4.3",
29
- "@backstage/plugin-search-backend-node": "^0.4.5",
30
- "@backstage/search-common": "^0.2.2",
31
- "@backstage/types": "^0.1.1",
26
+ "@backstage/backend-common": "^0.11.0",
27
+ "@backstage/config": "^0.1.15",
28
+ "@backstage/errors": "^0.2.2",
29
+ "@backstage/plugin-auth-node": "^0.1.3",
30
+ "@backstage/plugin-permission-common": "^0.5.1",
31
+ "@backstage/plugin-permission-node": "^0.5.2",
32
+ "@backstage/plugin-search-backend-node": "^0.4.7",
33
+ "@backstage/search-common": "^0.2.4",
34
+ "@backstage/types": "^0.1.3",
32
35
  "@types/express": "^4.17.6",
33
36
  "dataloader": "^2.0.0",
34
37
  "express": "^4.17.1",
@@ -40,12 +43,12 @@
40
43
  "zod": "^3.11.6"
41
44
  },
42
45
  "devDependencies": {
43
- "@backstage/cli": "^0.13.2",
46
+ "@backstage/cli": "^0.14.1",
44
47
  "@types/supertest": "^2.0.8",
45
48
  "supertest": "^6.1.3"
46
49
  },
47
50
  "files": [
48
51
  "dist"
49
52
  ],
50
- "gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
53
+ "gitHead": "a15da6ea1e3e8adc37be98be064071c8b5279b4a"
51
54
  }