@backstage/plugin-techdocs-backend 1.1.0-next.2 → 1.1.1-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 +54 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 1.1.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.13.3-next.2
|
|
9
|
+
- @backstage/config@1.0.1-next.0
|
|
10
|
+
- @backstage/plugin-search-common@0.3.4-next.0
|
|
11
|
+
- @backstage/catalog-model@1.0.2-next.0
|
|
12
|
+
- @backstage/integration@1.2.0-next.1
|
|
13
|
+
- @backstage/plugin-permission-common@0.6.1-next.0
|
|
14
|
+
- @backstage/plugin-techdocs-node@1.1.1-next.1
|
|
15
|
+
- @backstage/catalog-client@1.0.2-next.0
|
|
16
|
+
- @backstage/plugin-catalog-common@1.0.2-next.0
|
|
17
|
+
|
|
18
|
+
## 1.1.1-next.0
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- cfc0f19699: Updated dependency `fs-extra` to `10.1.0`.
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/backend-common@0.13.3-next.0
|
|
25
|
+
- @backstage/integration@1.2.0-next.0
|
|
26
|
+
- @backstage/plugin-techdocs-node@1.1.1-next.0
|
|
27
|
+
|
|
28
|
+
## 1.1.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- 733187987b: Removed an undocumented, broken behavior where `README.md` files would be copied to `index.md` if it did not exist, leading to broken links in the TechDocs UI.
|
|
33
|
+
|
|
34
|
+
**WARNING**: If you notice 404s in TechDocs after updating, check to make sure that all markdown files referenced in your `mkdocs.yml`s' `nav` sections exist. The following configuration may be used to temporarily revert to the broken behavior.
|
|
35
|
+
|
|
36
|
+
```yaml
|
|
37
|
+
techdocs:
|
|
38
|
+
generator:
|
|
39
|
+
mkdocs:
|
|
40
|
+
legacyCopyReadmeMdToIndexMd: true
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- ada4446733: Specify type of `visibilityPermission` property on collators and collator factories.
|
|
46
|
+
- 7762d54200: Fixed a bug affecting those with cache enabled that would result in empty content being cached if the first attempt to load a static asset from storage were made via a `HEAD` request, rather than a `GET` request.
|
|
47
|
+
- Updated dependencies
|
|
48
|
+
- @backstage/integration@1.1.0
|
|
49
|
+
- @backstage/plugin-permission-common@0.6.0
|
|
50
|
+
- @backstage/catalog-model@1.0.1
|
|
51
|
+
- @backstage/plugin-search-common@0.3.3
|
|
52
|
+
- @backstage/backend-common@0.13.2
|
|
53
|
+
- @backstage/plugin-catalog-common@1.0.1
|
|
54
|
+
- @backstage/plugin-techdocs-node@1.1.0
|
|
55
|
+
- @backstage/catalog-client@1.0.1
|
|
56
|
+
|
|
3
57
|
## 1.1.0-next.2
|
|
4
58
|
|
|
5
59
|
### Minor Changes
|
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.
|
|
4
|
+
"version": "1.1.1-next.1",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"clean": "backstage-cli package clean"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.13.
|
|
38
|
-
"@backstage/catalog-client": "^1.0.
|
|
39
|
-
"@backstage/catalog-model": "^1.0.
|
|
40
|
-
"@backstage/config": "^1.0.0",
|
|
37
|
+
"@backstage/backend-common": "^0.13.3-next.2",
|
|
38
|
+
"@backstage/catalog-client": "^1.0.2-next.0",
|
|
39
|
+
"@backstage/catalog-model": "^1.0.2-next.0",
|
|
40
|
+
"@backstage/config": "^1.0.1-next.0",
|
|
41
41
|
"@backstage/errors": "^1.0.0",
|
|
42
|
-
"@backstage/integration": "^1.
|
|
43
|
-
"@backstage/plugin-catalog-common": "^1.0.
|
|
44
|
-
"@backstage/plugin-permission-common": "^0.6.
|
|
45
|
-
"@backstage/plugin-search-common": "^0.3.
|
|
46
|
-
"@backstage/plugin-techdocs-node": "^1.1.
|
|
42
|
+
"@backstage/integration": "^1.2.0-next.1",
|
|
43
|
+
"@backstage/plugin-catalog-common": "^1.0.2-next.0",
|
|
44
|
+
"@backstage/plugin-permission-common": "^0.6.1-next.0",
|
|
45
|
+
"@backstage/plugin-search-common": "^0.3.4-next.0",
|
|
46
|
+
"@backstage/plugin-techdocs-node": "^1.1.1-next.1",
|
|
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
|
-
"fs-extra": "10.0
|
|
51
|
+
"fs-extra": "10.1.0",
|
|
52
52
|
"knex": "^1.0.2",
|
|
53
53
|
"lodash": "^4.17.21",
|
|
54
54
|
"node-fetch": "^2.6.7",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"winston": "^3.2.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "^0.1.
|
|
60
|
-
"@backstage/cli": "^0.17.
|
|
61
|
-
"@backstage/plugin-search-backend-node": "0.6.
|
|
59
|
+
"@backstage/backend-test-utils": "^0.1.24-next.1",
|
|
60
|
+
"@backstage/cli": "^0.17.1-next.2",
|
|
61
|
+
"@backstage/plugin-search-backend-node": "0.6.1-next.1",
|
|
62
62
|
"@types/dockerode": "^3.3.0",
|
|
63
63
|
"msw": "^0.35.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": "
|
|
71
|
+
"gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
|
|
72
72
|
}
|