@backstage/plugin-techdocs 0.12.6 → 0.12.10

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,65 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
+ ## 0.12.10
4
+
5
+ ### Patch Changes
6
+
7
+ - e7cce2b603: Fix issue where assets weren't being fetched from the correct URL path for doc URLs without trailing slashes
8
+ - Updated dependencies
9
+ - @backstage/core-plugin-api@0.3.1
10
+ - @backstage/core-components@0.8.1
11
+ - @backstage/catalog-model@0.9.8
12
+ - @backstage/plugin-catalog-react@0.6.7
13
+
14
+ ## 0.12.9
15
+
16
+ ### Patch Changes
17
+
18
+ - cd450844f6: Moved React dependencies to `peerDependencies` and allow both React v16 and v17 to be used.
19
+ - d90dad84b0: Switch to using `LogViewer` component from `@backstage/core-components` to display build logs.
20
+ - 3421826ca8: The problem of lowercase entity triplets which causes docs to not load on entity page is fixed.
21
+ - Updated dependencies
22
+ - @backstage/core-components@0.8.0
23
+ - @backstage/core-plugin-api@0.3.0
24
+ - @backstage/plugin-catalog@0.7.4
25
+ - @backstage/integration-react@0.1.15
26
+ - @backstage/plugin-catalog-react@0.6.5
27
+ - @backstage/plugin-search@0.5.1
28
+
29
+ ## 0.12.8
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies
34
+ - @backstage/integration@0.6.10
35
+ - @backstage/core-components@0.7.6
36
+ - @backstage/theme@0.2.14
37
+ - @backstage/core-plugin-api@0.2.2
38
+ - @backstage/plugin-search@0.5.0
39
+
40
+ ## 0.12.7
41
+
42
+ ### Patch Changes
43
+
44
+ - bab752e2b3: Change default port of backend from 7000 to 7007.
45
+
46
+ This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.
47
+
48
+ You can change the port back to 7000 or any other value by providing an `app-config.yaml` with the following values:
49
+
50
+ ```
51
+ backend:
52
+ listen: 0.0.0.0:7123
53
+ baseUrl: http://localhost:7123
54
+ ```
55
+
56
+ More information can be found here: https://backstage.io/docs/conf/writing
57
+
58
+ - Updated dependencies
59
+ - @backstage/errors@0.1.5
60
+ - @backstage/core-plugin-api@0.2.1
61
+ - @backstage/core-components@0.7.5
62
+
3
63
  ## 0.12.6
4
64
 
5
65
  ### 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
  */