@backstage/plugin-techdocs-backend 2.2.4 → 2.3.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.
- package/CHANGELOG.md +24 -5
- package/config.schema.json +29 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
-
## 2.
|
|
3
|
+
## 2.3.0-next.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- 40ecc4c: Improve validation of TechDocs static content paths.
|
|
8
|
-
- bf6bbf7: Improved path validation for TechDocs content serving.
|
|
9
7
|
- Updated dependencies
|
|
10
|
-
- @backstage/plugin-techdocs-node@1.
|
|
11
|
-
- @backstage/
|
|
8
|
+
- @backstage/plugin-techdocs-node@1.16.0-next.1
|
|
9
|
+
- @backstage/config@1.3.9-next.0
|
|
10
|
+
- @backstage/catalog-client@1.16.2-next.1
|
|
11
|
+
- @backstage/plugin-catalog-node@2.2.5-next.1
|
|
12
|
+
- @backstage/backend-plugin-api@1.10.1-next.1
|
|
13
|
+
- @backstage/integration@2.1.2-next.1
|
|
14
|
+
|
|
15
|
+
## 2.3.0-next.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- ee97130: Added support for `techdocs.generator.pullOptions` when pulling the TechDocs generator Docker image from private registries that require authentication.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 932986c: Improve validation of TechDocs static content paths.
|
|
24
|
+
- 1b0e277: Improved path validation for TechDocs content serving.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/integration@2.1.2-next.0
|
|
27
|
+
- @backstage/plugin-techdocs-node@1.16.0-next.0
|
|
28
|
+
- @backstage/catalog-client@1.16.2-next.0
|
|
29
|
+
- @backstage/backend-plugin-api@1.10.1-next.0
|
|
30
|
+
- @backstage/plugin-catalog-node@2.2.5-next.0
|
|
12
31
|
|
|
13
32
|
## 2.2.3
|
|
14
33
|
|
package/config.schema.json
CHANGED
|
@@ -33,6 +33,35 @@
|
|
|
33
33
|
"type": "boolean",
|
|
34
34
|
"description": "Pull the latest docker image"
|
|
35
35
|
},
|
|
36
|
+
"pullOptions": {
|
|
37
|
+
"type": "object",
|
|
38
|
+
"properties": {
|
|
39
|
+
"authconfig": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"properties": {
|
|
42
|
+
"username": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"password": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
},
|
|
48
|
+
"auth": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
},
|
|
51
|
+
"email": {
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
54
|
+
"serveraddress": {
|
|
55
|
+
"type": "string"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"additionalProperties": {}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"additionalProperties": {},
|
|
62
|
+
"description": "Credentials for private registries",
|
|
63
|
+
"visibility": "secret"
|
|
64
|
+
},
|
|
36
65
|
"mkdocs": {
|
|
37
66
|
"type": "object",
|
|
38
67
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0-next.1",
|
|
4
4
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -75,15 +75,15 @@
|
|
|
75
75
|
"test": "backstage-cli package test"
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
|
-
"@backstage/backend-plugin-api": "
|
|
79
|
-
"@backstage/catalog-client": "
|
|
80
|
-
"@backstage/catalog-model": "
|
|
81
|
-
"@backstage/config": "
|
|
82
|
-
"@backstage/errors": "
|
|
83
|
-
"@backstage/integration": "
|
|
84
|
-
"@backstage/plugin-catalog-node": "
|
|
85
|
-
"@backstage/plugin-techdocs-node": "
|
|
86
|
-
"@backstage/types": "
|
|
78
|
+
"@backstage/backend-plugin-api": "1.10.1-next.1",
|
|
79
|
+
"@backstage/catalog-client": "1.16.2-next.1",
|
|
80
|
+
"@backstage/catalog-model": "1.10.0",
|
|
81
|
+
"@backstage/config": "1.3.9-next.0",
|
|
82
|
+
"@backstage/errors": "1.3.1",
|
|
83
|
+
"@backstage/integration": "2.1.2-next.1",
|
|
84
|
+
"@backstage/plugin-catalog-node": "2.2.5-next.1",
|
|
85
|
+
"@backstage/plugin-techdocs-node": "1.16.0-next.1",
|
|
86
|
+
"@backstage/types": "1.2.2",
|
|
87
87
|
"express": "^4.22.0",
|
|
88
88
|
"express-promise-router": "^4.1.0",
|
|
89
89
|
"fs-extra": "^11.2.0",
|
|
@@ -92,9 +92,9 @@
|
|
|
92
92
|
"winston": "^3.2.1"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@backstage/backend-defaults": "
|
|
96
|
-
"@backstage/backend-test-utils": "
|
|
97
|
-
"@backstage/cli": "
|
|
95
|
+
"@backstage/backend-defaults": "0.17.9-next.1",
|
|
96
|
+
"@backstage/backend-test-utils": "1.11.7-next.1",
|
|
97
|
+
"@backstage/cli": "0.36.6-next.1",
|
|
98
98
|
"@types/express": "^4.17.6",
|
|
99
99
|
"msw": "^2.0.0",
|
|
100
100
|
"supertest": "^7.0.0"
|