@backstage/plugin-techdocs 0.12.3 → 0.12.7
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 +71 -0
- package/config.d.ts +1 -1
- package/dist/index.esm.js +142 -129
- package/dist/index.esm.js.map +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,76 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
+
## 0.12.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bab752e2b3: Change default port of backend from 7000 to 7007.
|
|
8
|
+
|
|
9
|
+
This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
|
|
10
|
+
|
|
11
|
+
You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
backend:
|
|
15
|
+
listen: 0.0.0.0:7123
|
|
16
|
+
baseUrl: http://localhost:7123
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
More information can be found here: https://backstage.io/docs/conf/writing
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/errors@0.1.5
|
|
23
|
+
- @backstage/core-plugin-api@0.2.1
|
|
24
|
+
- @backstage/core-components@0.7.5
|
|
25
|
+
|
|
26
|
+
## 0.12.6
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- a125278b81: Refactor out the deprecated path and icon from RouteRefs
|
|
31
|
+
- c1858c4cf9: Fixed entity triplet case handling for certain locales.
|
|
32
|
+
- f7703981a9: Use a better checkbox rendering in a task list.
|
|
33
|
+
- e266687580: Updates reader component used to display techdocs documentation. A previous change made this component not usable out of a page which don't have entityRef in url parameters. Reader component EntityRef parameter is now used instead of url parameters. Techdocs documentation component can now be used in our custom pages.
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/plugin-catalog@0.7.3
|
|
36
|
+
- @backstage/catalog-model@0.9.7
|
|
37
|
+
- @backstage/plugin-catalog-react@0.6.4
|
|
38
|
+
- @backstage/plugin-search@0.4.18
|
|
39
|
+
- @backstage/core-components@0.7.4
|
|
40
|
+
- @backstage/core-plugin-api@0.2.0
|
|
41
|
+
- @backstage/integration-react@0.1.14
|
|
42
|
+
|
|
43
|
+
## 0.12.5
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- fe5738fe1c: Lazy load `LazyLog` as it is rarely used.
|
|
48
|
+
- 53c9ad7e04: Update font weight for headings in TechDocs
|
|
49
|
+
- Updated dependencies
|
|
50
|
+
- @backstage/core-components@0.7.3
|
|
51
|
+
- @backstage/theme@0.2.13
|
|
52
|
+
- @backstage/plugin-search@0.4.17
|
|
53
|
+
- @backstage/core-plugin-api@0.1.13
|
|
54
|
+
- @backstage/plugin-catalog-react@0.6.3
|
|
55
|
+
|
|
56
|
+
## 0.12.4
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- a9a8c6f7c5: Reader will now scroll to the top of the page when navigating between pages
|
|
61
|
+
- 106a5dc3ad: Restore original casing for `kind`, `namespace` and `name` in `DefaultTechDocsCollator`.
|
|
62
|
+
- Updated dependencies
|
|
63
|
+
- @backstage/config@0.1.11
|
|
64
|
+
- @backstage/theme@0.2.12
|
|
65
|
+
- @backstage/errors@0.1.4
|
|
66
|
+
- @backstage/integration@0.6.9
|
|
67
|
+
- @backstage/core-components@0.7.2
|
|
68
|
+
- @backstage/integration-react@0.1.13
|
|
69
|
+
- @backstage/plugin-catalog-react@0.6.2
|
|
70
|
+
- @backstage/catalog-model@0.9.6
|
|
71
|
+
- @backstage/plugin-search@0.4.16
|
|
72
|
+
- @backstage/core-plugin-api@0.1.12
|
|
73
|
+
|
|
3
74
|
## 0.12.3
|
|
4
75
|
|
|
5
76
|
### Patch Changes
|