@backstage/plugin-techdocs-backend 1.1.2 → 1.2.0-next.2

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 +42 -0
  2. package/config.d.ts +7 -0
  3. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 1.2.0-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 679b32172e: Updated dependency `knex` to `^2.0.0`.
8
+ - Updated dependencies
9
+ - @backstage/catalog-model@1.1.0-next.2
10
+ - @backstage/backend-common@0.14.1-next.2
11
+ - @backstage/integration@1.2.2-next.2
12
+ - @backstage/plugin-techdocs-node@1.2.0-next.2
13
+
14
+ ## 1.2.0-next.1
15
+
16
+ ### Minor Changes
17
+
18
+ - 860765ff45: Added local publishing target directory `config`: `techdocs.publisher.local.publishDirectory`
19
+
20
+ ### Patch Changes
21
+
22
+ - 726577958f: Add sample headings on the documented component homepage.
23
+ - Updated dependencies
24
+ - @backstage/plugin-techdocs-node@1.2.0-next.1
25
+ - @backstage/catalog-model@1.1.0-next.1
26
+ - @backstage/backend-common@0.14.1-next.1
27
+ - @backstage/errors@1.1.0-next.0
28
+ - @backstage/catalog-client@1.0.4-next.1
29
+ - @backstage/integration@1.2.2-next.1
30
+ - @backstage/plugin-catalog-common@1.0.4-next.0
31
+ - @backstage/plugin-permission-common@0.6.3-next.0
32
+ - @backstage/plugin-search-common@0.3.6-next.0
33
+
34
+ ## 1.1.3-next.0
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies
39
+ - @backstage/backend-common@0.14.1-next.0
40
+ - @backstage/catalog-model@1.1.0-next.0
41
+ - @backstage/integration@1.2.2-next.0
42
+ - @backstage/plugin-techdocs-node@1.1.3-next.0
43
+ - @backstage/catalog-client@1.0.4-next.0
44
+
3
45
  ## 1.1.2
4
46
 
5
47
  ### 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.2",
4
+ "version": "1.2.0-next.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -34,31 +34,31 @@
34
34
  "clean": "backstage-cli package clean"
35
35
  },
36
36
  "dependencies": {
37
- "@backstage/backend-common": "^0.14.0",
38
- "@backstage/catalog-client": "^1.0.3",
39
- "@backstage/catalog-model": "^1.0.3",
37
+ "@backstage/backend-common": "^0.14.1-next.2",
38
+ "@backstage/catalog-client": "^1.0.4-next.1",
39
+ "@backstage/catalog-model": "^1.1.0-next.2",
40
40
  "@backstage/config": "^1.0.1",
41
- "@backstage/errors": "^1.0.0",
42
- "@backstage/integration": "^1.2.1",
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.2",
41
+ "@backstage/errors": "^1.1.0-next.0",
42
+ "@backstage/integration": "^1.2.2-next.2",
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.2",
47
47
  "@types/express": "^4.17.6",
48
48
  "dockerode": "^3.3.1",
49
49
  "express": "^4.17.1",
50
50
  "express-promise-router": "^4.1.0",
51
51
  "fs-extra": "10.1.0",
52
- "knex": "^1.0.2",
52
+ "knex": "^2.0.0",
53
53
  "lodash": "^4.17.21",
54
54
  "node-fetch": "^2.6.7",
55
55
  "p-limit": "^3.1.0",
56
56
  "winston": "^3.2.1"
57
57
  },
58
58
  "devDependencies": {
59
- "@backstage/backend-test-utils": "^0.1.25",
60
- "@backstage/cli": "^0.17.2",
61
- "@backstage/plugin-search-backend-node": "0.6.2",
59
+ "@backstage/backend-test-utils": "^0.1.26-next.2",
60
+ "@backstage/cli": "^0.18.0-next.2",
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": "e42cb3887e41f756c16380d757d93feda27f40ee"
71
+ "gitHead": "3eddfb061dd0abe711f4b88d2e0fb4b99e692978"
72
72
  }