@backstage/plugin-techdocs-backend 1.10.13-next.1 → 1.10.13
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 +44 -0
- package/alpha/package.json +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 1.10.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 086c32d: Dedicated token for techdocs cache sync
|
|
8
|
+
- 5b679ac: The `createRouter` and its related types has been marked as deprecared. This backend should instead be initialized using the new backend system.
|
|
9
|
+
- d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
|
10
|
+
- c2b63ab: Updated dependency `supertest` to `^7.0.0`.
|
|
11
|
+
- 5edd344: Refactor to use injected catalog client in the new backend system
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-common@0.25.0
|
|
14
|
+
- @backstage/plugin-techdocs-node@1.12.11
|
|
15
|
+
- @backstage/backend-plugin-api@1.0.0
|
|
16
|
+
- @backstage/catalog-model@1.7.0
|
|
17
|
+
- @backstage/catalog-client@1.7.0
|
|
18
|
+
- @backstage/plugin-search-backend-module-techdocs@0.2.2
|
|
19
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
20
|
+
- @backstage/plugin-catalog-node@1.13.0
|
|
21
|
+
- @backstage/integration@1.15.0
|
|
22
|
+
- @backstage/config@1.2.0
|
|
23
|
+
- @backstage/errors@1.2.4
|
|
24
|
+
- @backstage/plugin-permission-common@0.8.1
|
|
25
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
26
|
+
|
|
27
|
+
## 1.10.13-next.2
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- c2b63ab: Updated dependency `supertest` to `^7.0.0`.
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/backend-common@0.25.0-next.2
|
|
34
|
+
- @backstage/backend-plugin-api@1.0.0-next.2
|
|
35
|
+
- @backstage/catalog-client@1.7.0-next.1
|
|
36
|
+
- @backstage/plugin-techdocs-node@1.12.11-next.2
|
|
37
|
+
- @backstage/integration@1.15.0-next.0
|
|
38
|
+
- @backstage/catalog-model@1.6.0
|
|
39
|
+
- @backstage/config@1.2.0
|
|
40
|
+
- @backstage/errors@1.2.4
|
|
41
|
+
- @backstage/plugin-catalog-common@1.0.26
|
|
42
|
+
- @backstage/plugin-catalog-node@1.12.7-next.2
|
|
43
|
+
- @backstage/plugin-permission-common@0.8.1
|
|
44
|
+
- @backstage/plugin-search-backend-module-techdocs@0.2.2-next.2
|
|
45
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
46
|
+
|
|
3
47
|
## 1.10.13-next.1
|
|
4
48
|
|
|
5
49
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
|
-
"version": "1.10.13
|
|
3
|
+
"version": "1.10.13",
|
|
4
4
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -57,19 +57,19 @@
|
|
|
57
57
|
"test": "backstage-cli package test"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@backstage/backend-common": "^0.25.0
|
|
61
|
-
"@backstage/backend-plugin-api": "^0.
|
|
62
|
-
"@backstage/catalog-client": "^1.
|
|
63
|
-
"@backstage/catalog-model": "^1.
|
|
60
|
+
"@backstage/backend-common": "^0.25.0",
|
|
61
|
+
"@backstage/backend-plugin-api": "^1.0.0",
|
|
62
|
+
"@backstage/catalog-client": "^1.7.0",
|
|
63
|
+
"@backstage/catalog-model": "^1.7.0",
|
|
64
64
|
"@backstage/config": "^1.2.0",
|
|
65
65
|
"@backstage/errors": "^1.2.4",
|
|
66
|
-
"@backstage/integration": "^1.
|
|
67
|
-
"@backstage/plugin-catalog-common": "^1.0
|
|
68
|
-
"@backstage/plugin-catalog-node": "^1.
|
|
66
|
+
"@backstage/integration": "^1.15.0",
|
|
67
|
+
"@backstage/plugin-catalog-common": "^1.1.0",
|
|
68
|
+
"@backstage/plugin-catalog-node": "^1.13.0",
|
|
69
69
|
"@backstage/plugin-permission-common": "^0.8.1",
|
|
70
|
-
"@backstage/plugin-search-backend-module-techdocs": "^0.2.2
|
|
70
|
+
"@backstage/plugin-search-backend-module-techdocs": "^0.2.2",
|
|
71
71
|
"@backstage/plugin-techdocs-common": "^0.1.0",
|
|
72
|
-
"@backstage/plugin-techdocs-node": "^1.12.11
|
|
72
|
+
"@backstage/plugin-techdocs-node": "^1.12.11",
|
|
73
73
|
"@types/express": "^4.17.6",
|
|
74
74
|
"express": "^4.17.1",
|
|
75
75
|
"express-promise-router": "^4.1.0",
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
"winston": "^3.2.1"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@backstage/backend-defaults": "^0.5.0
|
|
85
|
-
"@backstage/backend-test-utils": "^0.
|
|
86
|
-
"@backstage/cli": "^0.27.1
|
|
84
|
+
"@backstage/backend-defaults": "^0.5.0",
|
|
85
|
+
"@backstage/backend-test-utils": "^1.0.0",
|
|
86
|
+
"@backstage/cli": "^0.27.1",
|
|
87
87
|
"msw": "^1.0.0",
|
|
88
|
-
"supertest": "^
|
|
88
|
+
"supertest": "^7.0.0"
|
|
89
89
|
},
|
|
90
90
|
"configSchema": "config.d.ts"
|
|
91
91
|
}
|