@gitlab/duo-ui 15.8.0 → 15.8.1

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,3 +1,10 @@
1
+ ## [15.8.1](https://gitlab.com/gitlab-org/duo-ui/compare/v15.8.0...v15.8.1) (2026-01-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **MarkdownRenderer:** update renderMarkdown call ([d4cdd59](https://gitlab.com/gitlab-org/duo-ui/commit/d4cdd59564be8c1d49194611fbea45964ddca650))
7
+
1
8
  # [15.8.0](https://gitlab.com/gitlab-org/duo-ui/compare/v15.7.2...v15.8.0) (2026-01-28)
2
9
 
3
10
 
@@ -55,7 +55,9 @@ var script = {
55
55
  },
56
56
  methods: {
57
57
  async render() {
58
- this.renderedMarkdown = this.isHtml ? this.markdown : await this.renderMarkdown(this.markdown, this.trustedUrls);
58
+ this.renderedMarkdown = this.isHtml ? this.markdown : await this.renderMarkdown(this.markdown, {
59
+ trustedUrls: this.trustedUrls
60
+ });
59
61
  }
60
62
  },
61
63
  safeHtmlConfigExtension: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/duo-ui",
3
- "version": "15.8.0",
3
+ "version": "15.8.1",
4
4
  "description": "Duo UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -105,7 +105,7 @@
105
105
  "@gitlab/fonts": "^1.3.1",
106
106
  "@gitlab/stylelint-config": "6.2.2",
107
107
  "@gitlab/svgs": "^3.154.0",
108
- "@gitlab/ui": "^128.2.3",
108
+ "@gitlab/ui": "^128.3.0",
109
109
  "@jest/test-sequencer": "^29.7.0",
110
110
  "@rollup/plugin-commonjs": "^11.1.0",
111
111
  "@rollup/plugin-node-resolve": "^7.1.3",
@@ -58,7 +58,7 @@ export default {
58
58
  async render() {
59
59
  this.renderedMarkdown = this.isHtml
60
60
  ? this.markdown
61
- : await this.renderMarkdown(this.markdown, this.trustedUrls);
61
+ : await this.renderMarkdown(this.markdown, { trustedUrls: this.trustedUrls });
62
62
  },
63
63
  },
64
64
  safeHtmlConfigExtension: {