@backstage/plugin-techdocs-backend 1.7.0-next.3 → 1.7.1

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