You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DOC-3163: TinyMCE 7.7.2 Release Documentation and Community Changelog. (#3648)
* DOC-3163: TinyMCE 7.7.2 Release Documentation and Community Changelog.
* DOC-3163: Deleting an empty block within <li> would move cursor at the end of the <li>. (#3655)
* DOC-3163: Exception when pressing tab in the last cell of a non-editable table. (#3653)
* DOC-3163: Exception occurs when pressing in the last cell of a non-editable table.
* Update modules/ROOT/pages/7.7.2-release-notes.adoc
Co-authored-by: Karl Kemister-Sheppard <[email protected]>
* Update modules/ROOT/pages/7.7.2-release-notes.adoc
* Update modules/ROOT/pages/7.7.2-release-notes.adoc
---------
Co-authored-by: Karl Kemister-Sheppard <[email protected]>
* DOC-3163: Exception was thrown when trying to use context form API after component was detached. (#3654)
* DOC-3163: Exception was thrown when trying to use context form API after component was detached.
* Update modules/ROOT/pages/7.7.2-release-notes.adoc
* Update modules/ROOT/pages/7.7.2-release-notes.adoc
---------
Co-authored-by: Karl Kemister-Sheppard <[email protected]>
* DOC-3163: Updated changelog and cleaned up release note entries to align with changelog.
* Update modules/ROOT/pages/7.7.2-release-notes.adoc
---------
Co-authored-by: Karl Kemister-Sheppard <[email protected]>
{productname} {release-version} was released for {enterpriseversion} and {cloudname} on <weekday>, <month> <DD>^<st|nd|rd|th>^, <YYYY>. These release notes provide an overview of the changes for {productname} {release-version}, including:
14
+
{productname} {release-version} was released for {enterpriseversion} and {cloudname} on Wednesday, March 19^th^, 2025. These release notes provide an overview of the changes for {productname} {release-version}, including:
15
15
16
-
// Remove sections and section boilerplates as necessary.
17
-
// Pluralise as necessary or remove the placeholder plural marker.
18
16
* xref:bug-fixes[Bug fixes]
19
-
* xref:security-fixes[Security fixes]
20
17
21
18
[[bug-fixes]]
22
19
== Bug fixes
23
20
24
-
{productname} {release-version} also includes the following bug fix<es>:
21
+
{productname} {release-version} also includes the following bug fixes:
25
22
26
-
=== <TINY-vwxyz 1 changelog entry>
27
-
// #TINY-vwxyz1
23
+
=== Error was thrown when pressing `tab` in the last cell of a non-editable table.
24
+
// #TINY-11797
28
25
29
-
// CCFR here.
26
+
Previously in {productname}, an issue was identified where pressing `Tab` in the last cell of a non-editable table attempted to insert a new row and move the selection to it. This behavior resulted in an infinite loop. Additionally, if `Tab` was pressed in an editable cell and the next cell was a `contentEditable="false"` (`CEF`) cell, with a `contenteditable="true"` element inside, the focus would skip the `CEF` cell.
30
27
28
+
This issue also triggered error messages when pressing `Tab` in the last cell of a non-editable table, negatively impacting page performance.
31
29
32
-
[[security-fixes]]
33
-
== Security fixes
30
+
{productname} {release-version} resolves this issue by refining the tab navigation behavior:
34
31
35
-
{productname} {release-version} includes <a fix | fixes for the following security issue<s>:
32
+
* Pressing `Tab` in the last cell of a non-editable table now has no effect.
33
+
* When `Tab` is pressed in an editable cell, and the next cell is a `CEF` cell with an editable element inside, the cursor is moved to an editable element within the `CEF` cell.
36
34
37
-
=== <TINY-vwxyz 1 changelog entry>
38
-
// #TINY-vwxyz1
35
+
These improvements enhance table navigation, prevent unnecessary error messages, and optimize performance when working with non-editable tables.
39
36
40
-
// CCFR here.
37
+
=== Error was thrown when trying to use the context form API after a component was detached.
38
+
// #TINY-11781
39
+
40
+
Previously, an error occurred when the `setValue` function from the xref:contextform.adoc#formapi[Context Form API] was called after the toolbar had been detached from the DOM. As a result, developers were unable to retrieve the value of the Context Form when using the API after the form had been closed.
41
+
42
+
{productname} {release-version} resolves this issue by ensuring that developers can now reliably get and set the value of the Context Form even after it has been detached.
43
+
44
+
=== Deleting an empty block within an `<li>` element would move cursor to the end of the `<li>`.
45
+
// #TINY-11763
46
+
47
+
In previous versions of {productname}, an issue was identified where deleting an empty block within an `<li>` element would unexpectedly reposition the cursor at the end of the `<li>` element. Additionally, deleting an empty block located between two lists could trigger an error if all elements were nested within the same `<li>` element.
48
+
49
+
These issues led to confusing behavior, as users experienced unintended cursor movement and encountered error messages.
50
+
51
+
{productname} {release-version} resolves these issues by improving the list behavior. As a result, the cursor remains stable, and users no longer experience unexpected movements or error messages.
Copy file name to clipboardExpand all lines: modules/ROOT/pages/changelog.adoc
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,18 @@
4
4
5
5
NOTE: This is the {productname} Community version changelog. For information about the latest {cloudname} or {enterpriseversion} Release, see: xref:release-notes.adoc[{productname} Release Notes].
0 commit comments