@backstage/plugin-techdocs-backend 1.6.7-next.0 → 1.7.0-next.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,28 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 1.7.0-next.1
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
+ - Updated dependencies
13
+ - @backstage/config@1.1.0-next.0
14
+ - @backstage/integration@1.7.0-next.1
15
+ - @backstage/plugin-techdocs-node@1.8.0-next.1
16
+ - @backstage/backend-common@0.19.5-next.1
17
+ - @backstage/backend-plugin-api@0.6.3-next.1
18
+ - @backstage/catalog-model@1.4.2-next.0
19
+ - @backstage/plugin-permission-common@0.7.8-next.0
20
+ - @backstage/plugin-search-backend-module-techdocs@0.1.7-next.1
21
+ - @backstage/catalog-client@1.4.4-next.0
22
+ - @backstage/plugin-catalog-common@1.0.16-next.0
23
+ - @backstage/errors@1.2.1
24
+ - @backstage/plugin-search-common@1.2.6-next.0
25
+
3
26
  ## 1.6.7-next.0
4
27
 
5
28
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-backend",
3
- "version": "1.6.7-next.0",
3
+ "version": "1.7.0-next.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/config.d.ts CHANGED
@@ -57,6 +57,11 @@ export interface Config {
57
57
  * will be broken in these scenarios.
58
58
  */
59
59
  legacyCopyReadmeMdToIndexMd?: boolean;
60
+
61
+ /**
62
+ * List of mkdocs plugins which should be added as default to all mkdocs.yml files.
63
+ */
64
+ defaultPlugins?: string[];
60
65
  };
61
66
  };
62
67
 
@@ -198,10 +203,15 @@ export interface Config {
198
203
  */
199
204
  azureBlobStorage?: {
200
205
  /**
201
- * (Required) Credentials used to access a storage container.
206
+ * (Optional) Connection string of the storage container.
202
207
  * @visibility secret
203
208
  */
204
- credentials: {
209
+ connectionString?: string;
210
+ /**
211
+ * (Optional) Credentials used to access a storage container.
212
+ * @visibility secret
213
+ */
214
+ credentials?: {
205
215
  /**
206
216
  * Account access name
207
217
  * @visibility secret
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.6.7-next.0",
4
+ "version": "1.7.0-next.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -46,18 +46,18 @@
46
46
  "clean": "backstage-cli package clean"
47
47
  },
48
48
  "dependencies": {
49
- "@backstage/backend-common": "^0.19.4-next.0",
50
- "@backstage/backend-plugin-api": "^0.6.2-next.0",
51
- "@backstage/catalog-client": "^1.4.3",
52
- "@backstage/catalog-model": "^1.4.1",
53
- "@backstage/config": "^1.0.8",
49
+ "@backstage/backend-common": "^0.19.5-next.1",
50
+ "@backstage/backend-plugin-api": "^0.6.3-next.1",
51
+ "@backstage/catalog-client": "^1.4.4-next.0",
52
+ "@backstage/catalog-model": "^1.4.2-next.0",
53
+ "@backstage/config": "^1.1.0-next.0",
54
54
  "@backstage/errors": "^1.2.1",
55
- "@backstage/integration": "^1.7.0-next.0",
56
- "@backstage/plugin-catalog-common": "^1.0.15",
57
- "@backstage/plugin-permission-common": "^0.7.7",
58
- "@backstage/plugin-search-backend-module-techdocs": "^0.1.6-next.0",
59
- "@backstage/plugin-search-common": "^1.2.5",
60
- "@backstage/plugin-techdocs-node": "^1.7.6-next.0",
55
+ "@backstage/integration": "^1.7.0-next.1",
56
+ "@backstage/plugin-catalog-common": "^1.0.16-next.0",
57
+ "@backstage/plugin-permission-common": "^0.7.8-next.0",
58
+ "@backstage/plugin-search-backend-module-techdocs": "^0.1.7-next.1",
59
+ "@backstage/plugin-search-common": "^1.2.6-next.0",
60
+ "@backstage/plugin-techdocs-node": "^1.8.0-next.1",
61
61
  "@types/express": "^4.17.6",
62
62
  "dockerode": "^3.3.1",
63
63
  "express": "^4.17.1",
@@ -70,9 +70,9 @@
70
70
  "winston": "^3.2.1"
71
71
  },
72
72
  "devDependencies": {
73
- "@backstage/backend-test-utils": "^0.2.2-next.0",
74
- "@backstage/cli": "^0.22.12-next.0",
75
- "@backstage/plugin-search-backend-node": "^1.2.6-next.0",
73
+ "@backstage/backend-test-utils": "^0.2.3-next.1",
74
+ "@backstage/cli": "^0.22.13-next.1",
75
+ "@backstage/plugin-search-backend-node": "^1.2.7-next.1",
76
76
  "@types/dockerode": "^3.3.0",
77
77
  "msw": "^1.0.0",
78
78
  "supertest": "^6.1.3"