@backstage/plugin-techdocs 1.11.0-next.2 → 1.11.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 +32 -0
- package/alpha/package.json +1 -1
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
+
## 1.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- e77ff3d: Adds support for custom background colors in code blocks and inline code within TechDocs.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- e969dc7: Move `@types/react` to a peer dependency.
|
|
12
|
+
- a77cb40: Make `emptyState` input optional on `entity-content:techdocs` extension so that
|
|
13
|
+
the default empty state extension works correctly.
|
|
14
|
+
- e918061: Add support for mkdocs material palette conditional hashes.
|
|
15
|
+
- 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`.
|
|
16
|
+
- e8b4966: Use more of the available space for the navigation sidebar.
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/core-components@0.15.1
|
|
19
|
+
- @backstage/frontend-plugin-api@0.9.0
|
|
20
|
+
- @backstage/integration-react@1.2.0
|
|
21
|
+
- @backstage/core-compat-api@0.3.1
|
|
22
|
+
- @backstage/core-plugin-api@1.10.0
|
|
23
|
+
- @backstage/plugin-techdocs-react@1.2.9
|
|
24
|
+
- @backstage/plugin-catalog-react@1.14.0
|
|
25
|
+
- @backstage/plugin-search-react@1.8.1
|
|
26
|
+
- @backstage/plugin-auth-react@0.1.7
|
|
27
|
+
- @backstage/theme@0.6.0
|
|
28
|
+
- @backstage/integration@1.15.1
|
|
29
|
+
- @backstage/catalog-model@1.7.0
|
|
30
|
+
- @backstage/config@1.2.0
|
|
31
|
+
- @backstage/errors@1.2.4
|
|
32
|
+
- @backstage/plugin-search-common@1.2.14
|
|
33
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
34
|
+
|
|
3
35
|
## 1.11.0-next.2
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs",
|
|
3
|
-
"version": "1.11.0
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "The Backstage plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -59,22 +59,22 @@
|
|
|
59
59
|
"test": "backstage-cli package test"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@backstage/catalog-model": "1.7.0",
|
|
63
|
-
"@backstage/config": "1.2.0",
|
|
64
|
-
"@backstage/core-compat-api": "0.3.1
|
|
65
|
-
"@backstage/core-components": "0.15.1
|
|
66
|
-
"@backstage/core-plugin-api": "1.10.0
|
|
67
|
-
"@backstage/errors": "1.2.4",
|
|
68
|
-
"@backstage/frontend-plugin-api": "0.9.0
|
|
69
|
-
"@backstage/integration": "1.15.1
|
|
70
|
-
"@backstage/integration-react": "1.2.0
|
|
71
|
-
"@backstage/plugin-auth-react": "0.1.7
|
|
72
|
-
"@backstage/plugin-catalog-react": "1.14.0
|
|
73
|
-
"@backstage/plugin-search-common": "1.2.14",
|
|
74
|
-
"@backstage/plugin-search-react": "1.8.1
|
|
75
|
-
"@backstage/plugin-techdocs-common": "0.1.0",
|
|
76
|
-
"@backstage/plugin-techdocs-react": "1.2.9
|
|
77
|
-
"@backstage/theme": "0.6.0
|
|
62
|
+
"@backstage/catalog-model": "^1.7.0",
|
|
63
|
+
"@backstage/config": "^1.2.0",
|
|
64
|
+
"@backstage/core-compat-api": "^0.3.1",
|
|
65
|
+
"@backstage/core-components": "^0.15.1",
|
|
66
|
+
"@backstage/core-plugin-api": "^1.10.0",
|
|
67
|
+
"@backstage/errors": "^1.2.4",
|
|
68
|
+
"@backstage/frontend-plugin-api": "^0.9.0",
|
|
69
|
+
"@backstage/integration": "^1.15.1",
|
|
70
|
+
"@backstage/integration-react": "^1.2.0",
|
|
71
|
+
"@backstage/plugin-auth-react": "^0.1.7",
|
|
72
|
+
"@backstage/plugin-catalog-react": "^1.14.0",
|
|
73
|
+
"@backstage/plugin-search-common": "^1.2.14",
|
|
74
|
+
"@backstage/plugin-search-react": "^1.8.1",
|
|
75
|
+
"@backstage/plugin-techdocs-common": "^0.1.0",
|
|
76
|
+
"@backstage/plugin-techdocs-react": "^1.2.9",
|
|
77
|
+
"@backstage/theme": "^0.6.0",
|
|
78
78
|
"@material-ui/core": "^4.12.2",
|
|
79
79
|
"@material-ui/icons": "^4.9.1",
|
|
80
80
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -88,11 +88,11 @@
|
|
|
88
88
|
"react-use": "^17.2.4"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@backstage/cli": "0.28.0
|
|
92
|
-
"@backstage/core-app-api": "1.15.1
|
|
93
|
-
"@backstage/dev-utils": "1.1.2
|
|
94
|
-
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.16
|
|
95
|
-
"@backstage/test-utils": "1.
|
|
91
|
+
"@backstage/cli": "^0.28.0",
|
|
92
|
+
"@backstage/core-app-api": "^1.15.1",
|
|
93
|
+
"@backstage/dev-utils": "^1.1.2",
|
|
94
|
+
"@backstage/plugin-techdocs-module-addons-contrib": "^1.1.16",
|
|
95
|
+
"@backstage/test-utils": "^1.7.0",
|
|
96
96
|
"@testing-library/dom": "^10.0.0",
|
|
97
97
|
"@testing-library/jest-dom": "^6.0.0",
|
|
98
98
|
"@testing-library/react": "^16.0.0",
|