Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/

### Unreleased

- DOC-2181: add fix documentation for TINY-10088 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10254 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10133 to the 6.8 release notes.
- DOC-2181: add fix documentation for TINY-10154 to the 6.8 release notes.
Expand Down
19 changes: 19 additions & 0 deletions modules/ROOT/pages/6.8-release-notes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,25 @@ As a consequence of this, any attempt to apply a heading format to the `<summary

=== Setting the content with an attribute that contains a self-closing HTML tag did not preserve the tag.
// #TINY-10088
In previous versions of **DOMPurify**, a critical issue was identified where attributes containing the self-closing `+/>+` tags were erroneously removed during the sanitization process.

This issue stemmed from a older version of DOMPurify was inadvertently truncating attributes associated with self-closing tags.

.Truncated attributes
[source, html]
----
<div>Attribute with empty element (&lt;br/&gt;)</div>
----

.Expected attributes
[source, html]
----
<div data-macro-parameters="title=<br/>">Attribute with empty element (&lt;br/&gt;)</div>
----

As a consequence, the removal of these attributes by **DOMPurify** would cause significant problems in the users web applications.

{productname} 6.8 addresses this issue by updating **DOMPurify** to the latest version. By doing so, these attributes are no longer removed, which preserves the integrity of their content.

=== Screen readers now announce the selected color of forecolor and backcolor buttons.
// #TINY-9796
Expand Down