@backstage/plugin-search-backend 0.2.6 → 0.2.7
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/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/plugin-search-backend
|
|
2
2
|
|
|
3
|
+
## 0.2.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bab752e2b3: Change default port of backend from 7000 to 7007.
|
|
8
|
+
|
|
9
|
+
This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
|
|
10
|
+
|
|
11
|
+
You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
backend:
|
|
15
|
+
listen: 0.0.0.0:7123
|
|
16
|
+
baseUrl: http://localhost:7123
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
More information can be found here: https://backstage.io/docs/conf/writing
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/backend-common@0.9.11
|
|
23
|
+
|
|
3
24
|
## 0.2.6
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +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.2.7",
|
|
4
5
|
"main": "dist/index.cjs.js",
|
|
5
6
|
"types": "dist/index.d.ts",
|
|
6
7
|
"license": "Apache-2.0",
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
"clean": "backstage-cli clean"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@backstage/backend-common": "^0.9.
|
|
23
|
+
"@backstage/backend-common": "^0.9.11",
|
|
23
24
|
"@backstage/plugin-search-backend-node": "^0.4.2",
|
|
24
25
|
"@backstage/search-common": "^0.2.0",
|
|
25
26
|
"@types/express": "^4.17.6",
|
|
@@ -29,12 +30,12 @@
|
|
|
29
30
|
"yn": "^4.0.0"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
|
-
"@backstage/cli": "^0.
|
|
33
|
+
"@backstage/cli": "^0.9.1",
|
|
33
34
|
"@types/supertest": "^2.0.8",
|
|
34
35
|
"supertest": "^6.1.3"
|
|
35
36
|
},
|
|
36
37
|
"files": [
|
|
37
38
|
"dist"
|
|
38
39
|
],
|
|
39
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "85c127e436a24140bb3606f17f034f82aa9c7c0d"
|
|
40
41
|
}
|