@backstage/plugin-techdocs 0.12.8 → 0.12.12

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,56 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
+ ## 0.12.12
4
+
5
+ ### Patch Changes
6
+
7
+ - aa8f764a3e: Add the techdocs.sanitizer.allowedIframeHosts config.
8
+ This config allows all iframes which have the host of the attribute src in the 'allowedIframehosts' list to be displayed in the documentation.
9
+ - Updated dependencies
10
+ - @backstage/plugin-search@0.5.3
11
+ - @backstage/plugin-catalog@0.7.6
12
+ - @backstage/plugin-catalog-react@0.6.9
13
+ - @backstage/integration@0.7.0
14
+ - @backstage/integration-react@0.1.17
15
+
16
+ ## 0.12.11
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/plugin-search@0.5.2
22
+ - @backstage/core-plugin-api@0.4.0
23
+ - @backstage/plugin-catalog-react@0.6.8
24
+ - @backstage/core-components@0.8.2
25
+ - @backstage/plugin-catalog@0.7.5
26
+ - @backstage/integration-react@0.1.16
27
+
28
+ ## 0.12.10
29
+
30
+ ### Patch Changes
31
+
32
+ - e7cce2b603: Fix issue where assets weren't being fetched from the correct URL path for doc URLs without trailing slashes
33
+ - Updated dependencies
34
+ - @backstage/core-plugin-api@0.3.1
35
+ - @backstage/core-components@0.8.1
36
+ - @backstage/catalog-model@0.9.8
37
+ - @backstage/plugin-catalog-react@0.6.7
38
+
39
+ ## 0.12.9
40
+
41
+ ### Patch Changes
42
+
43
+ - cd450844f6: Moved React dependencies to `peerDependencies` and allow both React v16 and v17 to be used.
44
+ - d90dad84b0: Switch to using `LogViewer` component from `@backstage/core-components` to display build logs.
45
+ - 3421826ca8: The problem of lowercase entity triplets which causes docs to not load on entity page is fixed.
46
+ - Updated dependencies
47
+ - @backstage/core-components@0.8.0
48
+ - @backstage/core-plugin-api@0.3.0
49
+ - @backstage/plugin-catalog@0.7.4
50
+ - @backstage/integration-react@0.1.15
51
+ - @backstage/plugin-catalog-react@0.6.5
52
+ - @backstage/plugin-search@0.5.1
53
+
3
54
  ## 0.12.8
4
55
 
5
56
  ### Patch Changes
package/config.d.ts CHANGED
@@ -39,5 +39,16 @@ export interface Config {
39
39
  * @deprecated
40
40
  */
41
41
  requestUrl?: string;
42
+
43
+ sanitizer?: {
44
+ /**
45
+ * Allows iframe tag only for listed hosts
46
+ * Example:
47
+ * allowedIframeHosts: ["example.com"]
48
+ * this will allow all iframes with the host `example.com` in the src attribute
49
+ * @visibility frontend
50
+ */
51
+ allowedIframeHosts?: string[];
52
+ };
42
53
  };
43
54
  }