@backstage/plugin-techdocs-backend 1.7.0-next.3 → 1.7.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 +41 -0
- package/alpha/package.json +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5985d458ee30: Add a `techdocs.publisher.azureBlobStorage.connectionString` app-config setting, which can be leveraged for improved Azurite support.
|
|
8
|
+
- 10a86bd4ae12: Add optional config and cli option for techdocs to specify default mkdocs plugins.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 60af8017dd84: Expand techdocs.publisher.type with `googleGcs`,`awsS3`,`azureBlobStorage` and `openStackSwift`
|
|
13
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
14
|
+
|
|
15
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
19
|
+
|
|
20
|
+
backend.add(examplePlugin);
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
It should be migrated to this:
|
|
24
|
+
|
|
25
|
+
```ts
|
|
26
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
- a8a614ba0d07: Minor `package.json` update.
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/plugin-search-backend-module-techdocs@0.1.7
|
|
32
|
+
- @backstage/backend-common@0.19.5
|
|
33
|
+
- @backstage/config@1.1.0
|
|
34
|
+
- @backstage/catalog-client@1.4.4
|
|
35
|
+
- @backstage/catalog-model@1.4.2
|
|
36
|
+
- @backstage/errors@1.2.2
|
|
37
|
+
- @backstage/integration@1.7.0
|
|
38
|
+
- @backstage/plugin-catalog-common@1.0.16
|
|
39
|
+
- @backstage/plugin-permission-common@0.7.8
|
|
40
|
+
- @backstage/plugin-search-common@1.2.6
|
|
41
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
42
|
+
- @backstage/plugin-techdocs-node@1.8.0
|
|
43
|
+
|
|
3
44
|
## 1.7.0-next.3
|
|
4
45
|
|
|
5
46
|
### Patch Changes
|
package/alpha/package.json
CHANGED
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": "1.7.0
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,18 +44,18 @@
|
|
|
44
44
|
"clean": "backstage-cli package clean"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-common": "^0.19.5
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.6.3
|
|
49
|
-
"@backstage/catalog-client": "^1.4.4
|
|
50
|
-
"@backstage/catalog-model": "^1.4.2
|
|
51
|
-
"@backstage/config": "^1.1.0
|
|
52
|
-
"@backstage/errors": "^1.2.2
|
|
53
|
-
"@backstage/integration": "^1.7.0
|
|
54
|
-
"@backstage/plugin-catalog-common": "^1.0.16
|
|
55
|
-
"@backstage/plugin-permission-common": "^0.7.8
|
|
56
|
-
"@backstage/plugin-search-backend-module-techdocs": "^0.1.7
|
|
57
|
-
"@backstage/plugin-search-common": "^1.2.6
|
|
58
|
-
"@backstage/plugin-techdocs-node": "^1.8.0
|
|
47
|
+
"@backstage/backend-common": "^0.19.5",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.6.3",
|
|
49
|
+
"@backstage/catalog-client": "^1.4.4",
|
|
50
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
51
|
+
"@backstage/config": "^1.1.0",
|
|
52
|
+
"@backstage/errors": "^1.2.2",
|
|
53
|
+
"@backstage/integration": "^1.7.0",
|
|
54
|
+
"@backstage/plugin-catalog-common": "^1.0.16",
|
|
55
|
+
"@backstage/plugin-permission-common": "^0.7.8",
|
|
56
|
+
"@backstage/plugin-search-backend-module-techdocs": "^0.1.7",
|
|
57
|
+
"@backstage/plugin-search-common": "^1.2.6",
|
|
58
|
+
"@backstage/plugin-techdocs-node": "^1.8.0",
|
|
59
59
|
"@types/express": "^4.17.6",
|
|
60
60
|
"dockerode": "^3.3.1",
|
|
61
61
|
"express": "^4.17.1",
|
|
@@ -68,9 +68,9 @@
|
|
|
68
68
|
"winston": "^3.2.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@backstage/backend-test-utils": "^0.2.3
|
|
72
|
-
"@backstage/cli": "^0.22.13
|
|
73
|
-
"@backstage/plugin-search-backend-node": "^1.2.7
|
|
71
|
+
"@backstage/backend-test-utils": "^0.2.3",
|
|
72
|
+
"@backstage/cli": "^0.22.13",
|
|
73
|
+
"@backstage/plugin-search-backend-node": "^1.2.7",
|
|
74
74
|
"@types/dockerode": "^3.3.0",
|
|
75
75
|
"msw": "^1.0.0",
|
|
76
76
|
"supertest": "^6.1.3"
|