@backstage/plugin-techdocs-node 1.2.0-next.3 → 1.2.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 +26 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-node
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 860765ff45: Added local publishing target directory `config`: `techdocs.publisher.local.publishDirectory`
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- a5d73da942: Fix the flag parsing for `legacyCopyReadmeMdToIndexMd` in `techdocs-cli generate` command, and decouple it's logic from the `techdocs-ref` flag.
|
|
12
|
+
- d505b7b37d: Fixed issue with git feedback buttons not appearing automatically in docs pages. This was done by appending `repo_url` to the helper function `getRepoUrlFromLocationAnnotation`.
|
|
13
|
+
- e2d7b76f43: Upgrade git-url-parse to 12.0.0.
|
|
14
|
+
|
|
15
|
+
Motivation for upgrade is transitively upgrading parse-url which is vulnerable
|
|
16
|
+
to several CVEs detected by Snyk.
|
|
17
|
+
|
|
18
|
+
- SNYK-JS-PARSEURL-2935944
|
|
19
|
+
- SNYK-JS-PARSEURL-2935947
|
|
20
|
+
- SNYK-JS-PARSEURL-2936249
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/backend-common@0.14.1
|
|
24
|
+
- @backstage/catalog-model@1.1.0
|
|
25
|
+
- @backstage/plugin-search-common@1.0.0
|
|
26
|
+
- @backstage/integration@1.2.2
|
|
27
|
+
- @backstage/errors@1.1.0
|
|
28
|
+
|
|
3
29
|
## 1.2.0-next.3
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-node",
|
|
3
3
|
"description": "Common node.js functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli",
|
|
4
|
-
"version": "1.2.0
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"private": false,
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@azure/identity": "^2.0.1",
|
|
44
44
|
"@azure/storage-blob": "^12.5.0",
|
|
45
|
-
"@backstage/backend-common": "^0.14.1
|
|
46
|
-
"@backstage/catalog-model": "^1.1.0
|
|
45
|
+
"@backstage/backend-common": "^0.14.1",
|
|
46
|
+
"@backstage/catalog-model": "^1.1.0",
|
|
47
47
|
"@backstage/config": "^1.0.1",
|
|
48
|
-
"@backstage/errors": "^1.1.0
|
|
49
|
-
"@backstage/integration": "^1.2.2
|
|
50
|
-
"@backstage/plugin-search-common": "^0.
|
|
48
|
+
"@backstage/errors": "^1.1.0",
|
|
49
|
+
"@backstage/integration": "^1.2.2",
|
|
50
|
+
"@backstage/plugin-search-common": "^1.0.0",
|
|
51
51
|
"@google-cloud/storage": "^6.0.0",
|
|
52
52
|
"@trendyol-js/openstack-swift-sdk": "^0.0.5",
|
|
53
53
|
"@types/express": "^4.17.6",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"winston": "^3.2.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@backstage/cli": "^0.18.0
|
|
67
|
+
"@backstage/cli": "^0.18.0",
|
|
68
68
|
"@types/fs-extra": "^9.0.5",
|
|
69
69
|
"@types/js-yaml": "^4.0.0",
|
|
70
70
|
"@types/mime-types": "^2.1.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"@types/supertest": "^2.0.8",
|
|
74
74
|
"supertest": "^6.1.3"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
|
|
77
77
|
}
|