@backstage/plugin-techdocs 0.12.4 → 0.12.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 CHANGED
@@ -1,5 +1,69 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
+ ## 0.12.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/integration@0.6.10
9
+ - @backstage/core-components@0.7.6
10
+ - @backstage/theme@0.2.14
11
+ - @backstage/core-plugin-api@0.2.2
12
+ - @backstage/plugin-search@0.5.0
13
+
14
+ ## 0.12.7
15
+
16
+ ### Patch Changes
17
+
18
+ - bab752e2b3: Change default port of backend from 7000 to 7007.
19
+
20
+ This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
21
+
22
+ You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
23
+
24
+ ```
25
+ backend:
26
+ listen: 0.0.0.0:7123
27
+ baseUrl: http://localhost:7123
28
+ ```
29
+
30
+ More information can be found here: https://backstage.io/docs/conf/writing
31
+
32
+ - Updated dependencies
33
+ - @backstage/errors@0.1.5
34
+ - @backstage/core-plugin-api@0.2.1
35
+ - @backstage/core-components@0.7.5
36
+
37
+ ## 0.12.6
38
+
39
+ ### Patch Changes
40
+
41
+ - a125278b81: Refactor out the deprecated path and icon from RouteRefs
42
+ - c1858c4cf9: Fixed entity triplet case handling for certain locales.
43
+ - f7703981a9: Use a better checkbox rendering in a task list.
44
+ - 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.
45
+ - Updated dependencies
46
+ - @backstage/plugin-catalog@0.7.3
47
+ - @backstage/catalog-model@0.9.7
48
+ - @backstage/plugin-catalog-react@0.6.4
49
+ - @backstage/plugin-search@0.4.18
50
+ - @backstage/core-components@0.7.4
51
+ - @backstage/core-plugin-api@0.2.0
52
+ - @backstage/integration-react@0.1.14
53
+
54
+ ## 0.12.5
55
+
56
+ ### Patch Changes
57
+
58
+ - fe5738fe1c: Lazy load `LazyLog` as it is rarely used.
59
+ - 53c9ad7e04: Update font weight for headings in TechDocs
60
+ - Updated dependencies
61
+ - @backstage/core-components@0.7.3
62
+ - @backstage/theme@0.2.13
63
+ - @backstage/plugin-search@0.4.17
64
+ - @backstage/core-plugin-api@0.1.13
65
+ - @backstage/plugin-catalog-react@0.6.3
66
+
3
67
  ## 0.12.4
4
68
 
5
69
  ### Patch Changes
package/config.d.ts CHANGED
@@ -34,7 +34,7 @@ export interface Config {
34
34
  legacyUseCaseSensitiveTripletPaths?: boolean;
35
35
 
36
36
  /**
37
- * @example http://localhost:7000/api/techdocs
37
+ * @example http://localhost:7007/api/techdocs
38
38
  * @visibility frontend
39
39
  * @deprecated
40
40
  */