@backstage/plugin-techdocs-addons-test-utils 1.0.41-next.2 → 1.0.41
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/dist/test-utils.esm.js +1 -1
- package/package.json +18 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-addons-test-utils
|
|
2
2
|
|
|
3
|
+
## 1.0.41
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog@1.25.0
|
|
9
|
+
- @backstage/plugin-techdocs@1.11.1
|
|
10
|
+
- @backstage/plugin-catalog-react@1.14.1
|
|
11
|
+
- @backstage/plugin-techdocs-react@1.2.10
|
|
12
|
+
- @backstage/core-app-api@1.15.2
|
|
13
|
+
- @backstage/core-plugin-api@1.10.1
|
|
14
|
+
- @backstage/integration-react@1.2.1
|
|
15
|
+
- @backstage/test-utils@1.7.1
|
|
16
|
+
- @backstage/plugin-search-react@1.8.2
|
|
17
|
+
|
|
18
|
+
## 1.0.41-next.3
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-catalog@1.25.0-next.3
|
|
24
|
+
- @backstage/plugin-techdocs@1.11.1-next.3
|
|
25
|
+
- @backstage/plugin-catalog-react@1.14.1-next.3
|
|
26
|
+
- @backstage/core-app-api@1.15.1
|
|
27
|
+
- @backstage/core-plugin-api@1.10.0
|
|
28
|
+
- @backstage/integration-react@1.2.0
|
|
29
|
+
- @backstage/test-utils@1.7.1-next.0
|
|
30
|
+
- @backstage/plugin-search-react@1.8.2-next.2
|
|
31
|
+
- @backstage/plugin-techdocs-react@1.2.10-next.2
|
|
32
|
+
|
|
3
33
|
## 1.0.41-next.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/dist/test-utils.esm.js
CHANGED
|
@@ -6,7 +6,7 @@ import { wrapInTestApp, TestApiProvider } from '@backstage/test-utils';
|
|
|
6
6
|
import { FlatRoutes } from '@backstage/core-app-api';
|
|
7
7
|
import { fetchApiRef, discoveryApiRef } from '@backstage/core-plugin-api';
|
|
8
8
|
import { techdocsApiRef, techdocsStorageApiRef, TechDocsAddons } from '@backstage/plugin-techdocs-react';
|
|
9
|
-
import {
|
|
9
|
+
import { TechDocsReaderPage, techdocsPlugin } from '@backstage/plugin-techdocs';
|
|
10
10
|
import { entityRouteRef } from '@backstage/plugin-catalog-react';
|
|
11
11
|
import { searchApiRef } from '@backstage/plugin-search-react';
|
|
12
12
|
import { scmIntegrationsApiRef } from '@backstage/integration-react';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-addons-test-utils",
|
|
3
|
-
"version": "1.0.41
|
|
3
|
+
"version": "1.0.41",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "web-library",
|
|
6
6
|
"pluginId": "techdocs-addons",
|
|
@@ -40,19 +40,19 @@
|
|
|
40
40
|
"test": "backstage-cli package test"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@backstage/core-app-api": "1.15.
|
|
44
|
-
"@backstage/core-plugin-api": "1.10.
|
|
45
|
-
"@backstage/integration-react": "1.2.
|
|
46
|
-
"@backstage/plugin-catalog": "1.
|
|
47
|
-
"@backstage/plugin-catalog-react": "1.14.1
|
|
48
|
-
"@backstage/plugin-search-react": "1.8.2
|
|
49
|
-
"@backstage/plugin-techdocs": "1.11.1
|
|
50
|
-
"@backstage/plugin-techdocs-react": "1.2.10
|
|
51
|
-
"@backstage/test-utils": "1.7.1
|
|
43
|
+
"@backstage/core-app-api": "^1.15.2",
|
|
44
|
+
"@backstage/core-plugin-api": "^1.10.1",
|
|
45
|
+
"@backstage/integration-react": "^1.2.1",
|
|
46
|
+
"@backstage/plugin-catalog": "^1.25.0",
|
|
47
|
+
"@backstage/plugin-catalog-react": "^1.14.1",
|
|
48
|
+
"@backstage/plugin-search-react": "^1.8.2",
|
|
49
|
+
"@backstage/plugin-techdocs": "^1.11.1",
|
|
50
|
+
"@backstage/plugin-techdocs-react": "^1.2.10",
|
|
51
|
+
"@backstage/test-utils": "^1.7.1",
|
|
52
52
|
"testing-library__dom": "^7.29.4-beta.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@backstage/cli": "0.29.0
|
|
55
|
+
"@backstage/cli": "^0.29.0",
|
|
56
56
|
"@testing-library/dom": "^10.0.0",
|
|
57
57
|
"@testing-library/jest-dom": "^6.0.0",
|
|
58
58
|
"@types/react": "^18.0.0",
|
|
@@ -72,5 +72,12 @@
|
|
|
72
72
|
"optional": true
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
|
+
"typesVersions": {
|
|
76
|
+
"*": {
|
|
77
|
+
"index": [
|
|
78
|
+
"dist/index.d.ts"
|
|
79
|
+
]
|
|
80
|
+
}
|
|
81
|
+
},
|
|
75
82
|
"module": "./dist/index.esm.js"
|
|
76
83
|
}
|