@backstage/plugin-techdocs-backend 0.10.8 → 0.10.9
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 +23 -0
- package/config.d.ts +2 -2
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 0.10.9
|
|
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/errors@0.1.5
|
|
23
|
+
- @backstage/backend-common@0.9.11
|
|
24
|
+
- @backstage/techdocs-common@0.10.8
|
|
25
|
+
|
|
3
26
|
## 0.10.8
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -227,14 +227,14 @@ export interface Config {
|
|
|
227
227
|
};
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
|
-
* @example http://localhost:
|
|
230
|
+
* @example http://localhost:7007/api/techdocs
|
|
231
231
|
* @visibility frontend
|
|
232
232
|
* @deprecated
|
|
233
233
|
*/
|
|
234
234
|
requestUrl?: string;
|
|
235
235
|
|
|
236
236
|
/**
|
|
237
|
-
* @example http://localhost:
|
|
237
|
+
* @example http://localhost:7007/api/techdocs/static/docs
|
|
238
238
|
* @deprecated
|
|
239
239
|
*/
|
|
240
240
|
storageUrl?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.9",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"clean": "backstage-cli clean"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.9.
|
|
34
|
+
"@backstage/backend-common": "^0.9.11",
|
|
35
35
|
"@backstage/catalog-client": "^0.5.2",
|
|
36
36
|
"@backstage/catalog-model": "^0.9.7",
|
|
37
37
|
"@backstage/config": "^0.1.11",
|
|
38
|
-
"@backstage/errors": "^0.1.
|
|
38
|
+
"@backstage/errors": "^0.1.5",
|
|
39
39
|
"@backstage/integration": "^0.6.9",
|
|
40
40
|
"@backstage/search-common": "^0.2.1",
|
|
41
|
-
"@backstage/techdocs-common": "^0.10.
|
|
41
|
+
"@backstage/techdocs-common": "^0.10.8",
|
|
42
42
|
"@types/express": "^4.17.6",
|
|
43
43
|
"cross-fetch": "^3.0.6",
|
|
44
44
|
"dockerode": "^3.3.1",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"winston": "^3.2.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.9.
|
|
55
|
-
"@backstage/test-utils": "^0.1.
|
|
54
|
+
"@backstage/cli": "^0.9.1",
|
|
55
|
+
"@backstage/test-utils": "^0.1.23",
|
|
56
56
|
"@types/dockerode": "^3.3.0",
|
|
57
57
|
"msw": "^0.35.0",
|
|
58
58
|
"supertest": "^6.1.3"
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"config.d.ts"
|
|
63
63
|
],
|
|
64
64
|
"configSchema": "config.d.ts",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "85c127e436a24140bb3606f17f034f82aa9c7c0d"
|
|
66
66
|
}
|