@backstage/plugin-techdocs-backend 1.8.0-next.2 → 1.8.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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 1.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 344cfbcfbc: Allow prepared directory clean up for custom preparers
8
+
9
+ When using custom preparer for TechDocs, the `preparedDir` might
10
+ end up taking disk space. This requires all custom preparers to
11
+ implement a new method `shouldCleanPreparedDirectory` which indicates
12
+ whether the prepared directory should be cleaned after generation.
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+ - @backstage/backend-common@0.19.8
18
+ - @backstage/integration@1.7.1
19
+ - @backstage/plugin-techdocs-node@1.9.0
20
+ - @backstage/catalog-model@1.4.3
21
+ - @backstage/errors@1.2.3
22
+ - @backstage/backend-plugin-api@0.6.6
23
+ - @backstage/plugin-search-backend-module-techdocs@0.1.10
24
+ - @backstage/catalog-client@1.4.5
25
+ - @backstage/config@1.1.1
26
+ - @backstage/plugin-catalog-common@1.0.17
27
+ - @backstage/plugin-permission-common@0.7.9
28
+ - @backstage/plugin-search-common@1.2.7
29
+
3
30
  ## 1.8.0-next.2
4
31
 
5
32
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-backend",
3
- "version": "1.8.0-next.2",
3
+ "version": "1.8.0",
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.8.0-next.2",
4
+ "version": "1.8.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.8-next.2",
48
- "@backstage/backend-plugin-api": "^0.6.6-next.2",
49
- "@backstage/catalog-client": "^1.4.5-next.0",
50
- "@backstage/catalog-model": "^1.4.3-next.0",
51
- "@backstage/config": "^1.1.1-next.0",
52
- "@backstage/errors": "^1.2.3-next.0",
53
- "@backstage/integration": "^1.7.1-next.1",
54
- "@backstage/plugin-catalog-common": "^1.0.17-next.0",
55
- "@backstage/plugin-permission-common": "^0.7.9-next.0",
56
- "@backstage/plugin-search-backend-module-techdocs": "^0.1.10-next.2",
57
- "@backstage/plugin-search-common": "^1.2.7-next.0",
58
- "@backstage/plugin-techdocs-node": "^1.9.0-next.2",
47
+ "@backstage/backend-common": "^0.19.8",
48
+ "@backstage/backend-plugin-api": "^0.6.6",
49
+ "@backstage/catalog-client": "^1.4.5",
50
+ "@backstage/catalog-model": "^1.4.3",
51
+ "@backstage/config": "^1.1.1",
52
+ "@backstage/errors": "^1.2.3",
53
+ "@backstage/integration": "^1.7.1",
54
+ "@backstage/plugin-catalog-common": "^1.0.17",
55
+ "@backstage/plugin-permission-common": "^0.7.9",
56
+ "@backstage/plugin-search-backend-module-techdocs": "^0.1.10",
57
+ "@backstage/plugin-search-common": "^1.2.7",
58
+ "@backstage/plugin-techdocs-node": "^1.9.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.7-next.2",
72
- "@backstage/cli": "^0.23.0-next.2",
73
- "@backstage/plugin-search-backend-node": "^1.2.10-next.2",
71
+ "@backstage/backend-test-utils": "^0.2.7",
72
+ "@backstage/cli": "^0.23.0",
73
+ "@backstage/plugin-search-backend-node": "^1.2.10",
74
74
  "@types/dockerode": "^3.3.0",
75
75
  "msw": "^1.0.0",
76
76
  "supertest": "^6.1.3"