Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions modules/ROOT/pages/8.5.0-release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,13 @@ The background color of accordion items in the TinyMCE AI Review list has been u

// CCFR here.

=== URIs with non-Latin1 characters were returning an error
// #TINY-13938

Previously, inserting images with data URIs that contained non-Latin 1 characters, such as SVG data URIs with a byte order mark (BOM), caused {productname} to throw an `InvalidCharacterError`. This occurred because {productname} used the `btoa` function to encode data URIs to base64, and `btoa` does not support characters outside the Latin 1 range. The error could cause the editor to hang or fail to process the image.

In {productname} {release-version}, data URIs are now encoded using `TextEncoder` before being passed to `btoa`, ensuring that non-Latin 1 characters are handled correctly. Images with data URIs containing such characters are now processed without errors.

=== Alert and confirm dialogs were not announced properly by some screen readers
// #TINY-13812

Expand Down
Loading