@backstage/plugin-techdocs-react 1.3.8-next.0 → 1.3.8
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 +26 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-react
|
|
2
2
|
|
|
3
|
+
## 1.3.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 22dce2b: TechDocs addons in the new frontend system now use a Utility API pattern instead of multiple attachment points. The `AddonBlueprint` now uses this new approach, and while addons created with older versions still work, they will produce a deprecation warning and will stop working in a future release.
|
|
8
|
+
|
|
9
|
+
As part of this change, the `techDocsAddonDataRef` alpha export was removed.
|
|
10
|
+
|
|
11
|
+
- a7e0d50: Updated `react-router-dom` peer dependency to `^6.30.2` and explicitly disabled v7 future flags to suppress deprecation warnings.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/core-components@0.18.7
|
|
14
|
+
- @backstage/frontend-plugin-api@0.14.0
|
|
15
|
+
- @backstage/core-plugin-api@1.12.3
|
|
16
|
+
- @backstage/version-bridge@1.0.12
|
|
17
|
+
|
|
18
|
+
## 1.3.8-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/frontend-plugin-api@0.14.0-next.2
|
|
25
|
+
- @backstage/core-components@0.18.7-next.2
|
|
26
|
+
- @backstage/core-plugin-api@1.12.3-next.1
|
|
27
|
+
- @backstage/version-bridge@1.0.12-next.0
|
|
28
|
+
|
|
3
29
|
## 1.3.8-next.0
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-react",
|
|
3
|
-
"version": "1.3.8
|
|
3
|
+
"version": "1.3.8",
|
|
4
4
|
"description": "Shared frontend utilities for TechDocs and Addons",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library",
|
|
@@ -66,13 +66,13 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/catalog-model": "1.7.6",
|
|
70
|
-
"@backstage/config": "1.3.6",
|
|
71
|
-
"@backstage/core-components": "0.18.
|
|
72
|
-
"@backstage/core-plugin-api": "1.12.
|
|
73
|
-
"@backstage/frontend-plugin-api": "0.14.0
|
|
74
|
-
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
75
|
-
"@backstage/version-bridge": "1.0.
|
|
69
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
70
|
+
"@backstage/config": "^1.3.6",
|
|
71
|
+
"@backstage/core-components": "^0.18.7",
|
|
72
|
+
"@backstage/core-plugin-api": "^1.12.3",
|
|
73
|
+
"@backstage/frontend-plugin-api": "^0.14.0",
|
|
74
|
+
"@backstage/plugin-techdocs-common": "^0.1.1",
|
|
75
|
+
"@backstage/version-bridge": "^1.0.12",
|
|
76
76
|
"@material-ui/core": "^4.12.2",
|
|
77
77
|
"@material-ui/styles": "^4.11.0",
|
|
78
78
|
"jss": "~10.10.0",
|
|
@@ -81,21 +81,21 @@
|
|
|
81
81
|
"react-use": "^17.2.4"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@backstage/cli": "0.35.
|
|
85
|
-
"@backstage/test-utils": "1.7.15
|
|
86
|
-
"@backstage/theme": "0.7.
|
|
84
|
+
"@backstage/cli": "^0.35.4",
|
|
85
|
+
"@backstage/test-utils": "^1.7.15",
|
|
86
|
+
"@backstage/theme": "^0.7.2",
|
|
87
87
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
88
|
"@testing-library/react": "^16.0.0",
|
|
89
89
|
"@types/react": "^18.0.0",
|
|
90
90
|
"react": "^18.0.2",
|
|
91
91
|
"react-dom": "^18.0.2",
|
|
92
|
-
"react-router-dom": "^6.
|
|
92
|
+
"react-router-dom": "^6.30.2"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
95
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
96
96
|
"react": "^17.0.0 || ^18.0.0",
|
|
97
97
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
98
|
-
"react-router-dom": "^6.
|
|
98
|
+
"react-router-dom": "^6.30.2"
|
|
99
99
|
},
|
|
100
100
|
"peerDependenciesMeta": {
|
|
101
101
|
"@types/react": {
|