@backstage/plugin-techdocs-backend 1.1.3-next.0 → 1.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/config.d.ts +7 -0
  3. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 1.2.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 860765ff45: Added local publishing target directory `config`: `techdocs.publisher.local.publishDirectory`
8
+
9
+ ### Patch Changes
10
+
11
+ - 726577958f: Add sample headings on the documented component homepage.
12
+ - Updated dependencies
13
+ - @backstage/plugin-techdocs-node@1.2.0-next.1
14
+ - @backstage/catalog-model@1.1.0-next.1
15
+ - @backstage/backend-common@0.14.1-next.1
16
+ - @backstage/errors@1.1.0-next.0
17
+ - @backstage/catalog-client@1.0.4-next.1
18
+ - @backstage/integration@1.2.2-next.1
19
+ - @backstage/plugin-catalog-common@1.0.4-next.0
20
+ - @backstage/plugin-permission-common@0.6.3-next.0
21
+ - @backstage/plugin-search-common@0.3.6-next.0
22
+
3
23
  ## 1.1.3-next.0
4
24
 
5
25
  ### Patch Changes
package/config.d.ts CHANGED
@@ -66,6 +66,13 @@ export interface Config {
66
66
  publisher?:
67
67
  | {
68
68
  type: 'local';
69
+
70
+ local?: {
71
+ /**
72
+ * Directory to store generated static files.
73
+ */
74
+ publishDirectory?: string;
75
+ };
69
76
  }
70
77
  | {
71
78
  type: 'awsS3';
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.1.3-next.0",
4
+ "version": "1.2.0-next.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,16 +34,16 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.14.1-next.0",
38
- "@backstage/catalog-client": "^1.0.4-next.0",
39
- "@backstage/catalog-model": "^1.1.0-next.0",
37
+ "@backstage/backend-common": "^0.14.1-next.1",
38
+ "@backstage/catalog-client": "^1.0.4-next.1",
39
+ "@backstage/catalog-model": "^1.1.0-next.1",
40
40
  "@backstage/config": "^1.0.1",
41
- "@backstage/errors": "^1.0.0",
42
- "@backstage/integration": "^1.2.2-next.0",
43
- "@backstage/plugin-catalog-common": "^1.0.3",
44
- "@backstage/plugin-permission-common": "^0.6.2",
45
- "@backstage/plugin-search-common": "^0.3.5",
46
- "@backstage/plugin-techdocs-node": "^1.1.3-next.0",
41
+ "@backstage/errors": "^1.1.0-next.0",
42
+ "@backstage/integration": "^1.2.2-next.1",
43
+ "@backstage/plugin-catalog-common": "^1.0.4-next.0",
44
+ "@backstage/plugin-permission-common": "^0.6.3-next.0",
45
+ "@backstage/plugin-search-common": "^0.3.6-next.0",
46
+ "@backstage/plugin-techdocs-node": "^1.2.0-next.1",
47
47
  "@types/express": "^4.17.6",
48
48
  "dockerode": "^3.3.1",
49
49
  "express": "^4.17.1",
@@ -56,9 +56,9 @@
56
56
  "winston": "^3.2.1"
57
57
  },
58
58
  "devDependencies": {
59
- "@backstage/backend-test-utils": "^0.1.26-next.0",
60
- "@backstage/cli": "^0.17.3-next.0",
61
- "@backstage/plugin-search-backend-node": "0.6.3-next.0",
59
+ "@backstage/backend-test-utils": "^0.1.26-next.1",
60
+ "@backstage/cli": "^0.18.0-next.1",
61
+ "@backstage/plugin-search-backend-node": "0.6.3-next.1",
62
62
  "@types/dockerode": "^3.3.0",
63
63
  "msw": "^0.42.0",
64
64
  "supertest": "^6.1.3"
@@ -68,5 +68,5 @@
68
68
  "config.d.ts"
69
69
  ],
70
70
  "configSchema": "config.d.ts",
71
- "gitHead": "6d8bf5b9cf494815c0916e18daa226fb8186ba5f"
71
+ "gitHead": "e0a993834c31487a97a1ae6878eaf3685f03fc1a"
72
72
  }