@backstage/plugin-techdocs-backend 2.1.0-next.0 → 2.1.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 +30 -0
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 063cdc5: Techdocs: support HumanDuration for cache TTL and timeout configuration
|
|
8
|
+
- a0b604c: Adding new entity that specifies an external entity in the techdocs-entity annotation and updates to documentation regarding TechDocs redirects.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-defaults@0.12.1
|
|
14
|
+
- @backstage/plugin-catalog-node@1.19.0
|
|
15
|
+
- @backstage/catalog-client@1.12.0
|
|
16
|
+
- @backstage/integration@1.18.0
|
|
17
|
+
- @backstage/types@1.2.2
|
|
18
|
+
- @backstage/backend-plugin-api@1.4.3
|
|
19
|
+
- @backstage/plugin-search-backend-module-techdocs@0.4.6
|
|
20
|
+
- @backstage/plugin-techdocs-node@1.13.7
|
|
21
|
+
|
|
22
|
+
## 2.1.0-next.1
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-defaults@0.12.1-next.1
|
|
28
|
+
- @backstage/catalog-client@1.12.0-next.0
|
|
29
|
+
- @backstage/plugin-catalog-node@1.19.0-next.1
|
|
30
|
+
- @backstage/integration@1.18.0-next.0
|
|
31
|
+
- @backstage/plugin-search-backend-module-techdocs@0.4.6-next.1
|
|
32
|
+
|
|
3
33
|
## 2.1.0-next.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
|
-
"version": "2.1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -72,20 +72,20 @@
|
|
|
72
72
|
"test": "backstage-cli package test"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@backstage/backend-defaults": "0.12.1
|
|
76
|
-
"@backstage/backend-plugin-api": "1.4.3
|
|
77
|
-
"@backstage/catalog-client": "1.
|
|
78
|
-
"@backstage/catalog-model": "1.7.5",
|
|
79
|
-
"@backstage/config": "1.3.3",
|
|
80
|
-
"@backstage/errors": "1.2.7",
|
|
81
|
-
"@backstage/integration": "1.18.0
|
|
82
|
-
"@backstage/plugin-catalog-common": "1.1.5",
|
|
83
|
-
"@backstage/plugin-catalog-node": "1.
|
|
84
|
-
"@backstage/plugin-permission-common": "0.9.1",
|
|
85
|
-
"@backstage/plugin-search-backend-module-techdocs": "0.4.6
|
|
86
|
-
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
87
|
-
"@backstage/plugin-techdocs-node": "1.13.7
|
|
88
|
-
"@backstage/types": "1.2.
|
|
75
|
+
"@backstage/backend-defaults": "^0.12.1",
|
|
76
|
+
"@backstage/backend-plugin-api": "^1.4.3",
|
|
77
|
+
"@backstage/catalog-client": "^1.12.0",
|
|
78
|
+
"@backstage/catalog-model": "^1.7.5",
|
|
79
|
+
"@backstage/config": "^1.3.3",
|
|
80
|
+
"@backstage/errors": "^1.2.7",
|
|
81
|
+
"@backstage/integration": "^1.18.0",
|
|
82
|
+
"@backstage/plugin-catalog-common": "^1.1.5",
|
|
83
|
+
"@backstage/plugin-catalog-node": "^1.19.0",
|
|
84
|
+
"@backstage/plugin-permission-common": "^0.9.1",
|
|
85
|
+
"@backstage/plugin-search-backend-module-techdocs": "^0.4.6",
|
|
86
|
+
"@backstage/plugin-techdocs-common": "^0.1.1",
|
|
87
|
+
"@backstage/plugin-techdocs-node": "^1.13.7",
|
|
88
|
+
"@backstage/types": "^1.2.2",
|
|
89
89
|
"express": "^4.17.1",
|
|
90
90
|
"express-promise-router": "^4.1.0",
|
|
91
91
|
"fs-extra": "^11.2.0",
|
|
@@ -95,9 +95,9 @@
|
|
|
95
95
|
"winston": "^3.2.1"
|
|
96
96
|
},
|
|
97
97
|
"devDependencies": {
|
|
98
|
-
"@backstage/backend-defaults": "0.12.1
|
|
99
|
-
"@backstage/backend-test-utils": "1.9.0
|
|
100
|
-
"@backstage/cli": "0.34.2
|
|
98
|
+
"@backstage/backend-defaults": "^0.12.1",
|
|
99
|
+
"@backstage/backend-test-utils": "^1.9.0",
|
|
100
|
+
"@backstage/cli": "^0.34.2",
|
|
101
101
|
"@types/express": "^4.17.6",
|
|
102
102
|
"msw": "^2.0.0",
|
|
103
103
|
"supertest": "^7.0.0"
|