|
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]. |
6 | 6 |
|
7 | | -== xref:8.0-release-notes.adoc[8.0.0 - 2025-TBA-TBA] |
| 7 | +== xref:8.0-release-notes.adoc[8.0.0 - 2025-07-23] |
8 | 8 |
|
9 | | -// TODO |
| 9 | +### Added |
| 10 | +* New `pageUid` and `editorUid` properties to tinymce global and editor instance respectively. |
| 11 | +// #TINY-12021 //suggest-remove// |
| 12 | +* New `UserLookup` API to provide consistent user management and fetching/caching user information across TinyMCE plugins. |
| 13 | +// #TINY-11974 //TODO// |
| 14 | +* New toolbar icons for suggested edits plugin. |
| 15 | +// #TINY-12070 //suggest-remove// |
| 16 | +* New `crossorigin` option that sets the `crossorigin` attribute on scripts loaded by the editor. |
| 17 | +// #TINY-12228 |
| 18 | +* New `allow_html_in_comments` option to allow HTML like contents inside comment data. |
| 19 | +// #TINY-12220 |
| 20 | +* Support for TinyMCE 8 license keys and license key manager. |
| 21 | +// #TINY-12001 |
| 22 | + |
| 23 | +### Improved |
| 24 | +* Focus is now restored to a dialog after closing an alert, confirmation or another dialog. |
| 25 | +// #TINY-12038 |
| 26 | +* Resize handles are more accessible with `role` and `aria-valuetext` attributes. |
| 27 | +// #TINY-11421 |
| 28 | +* Toolbar drawer now closes when the editor loses focus. |
| 29 | +// #TINY-12125 |
| 30 | +* The `translate` API now automatically replaces three dots in a row with an ellipsis character. |
| 31 | +// #TINY-12155 |
| 32 | +* Tooltips can now be closed by pressing the escape key. |
| 33 | +// #TINY-12054 |
| 34 | +* Instructions on how to navigate the color swatch, image select and insert table widget are now announced by the screen readers. |
| 35 | +// #TINY-12189 |
| 36 | +* When `editor.resetContent()` is used, the resulting `SetContent` event now has the `initial` flag set in the event arguments. |
| 37 | +// #TINY-12146 |
| 38 | +* Updated Image plugin decorative image check to align with accessbility standard |
| 39 | +// #TINY-12545 |
| 40 | + |
| 41 | +### Changed |
| 42 | +* New `list_max_depth` option that limits the maximum list indent depth. |
| 43 | +// #TINY-11937 |
| 44 | +* DomParser no longer tries to fix some nodes when parsed with a context. |
| 45 | +// #TINY-11927 |
| 46 | +* Split buttons are now rendered as separate action and chevron buttons. |
| 47 | +// #TINY-8665 |
| 48 | +* Moved essential parts of the `lists` plugin into core. |
| 49 | +// #TINY-12121 //TODO// Was set to Task |
| 50 | +* Cut action no longer uses `execCommand('Delete')` function. |
| 51 | +// #TINY-12171 |
| 52 | +* Comments with HTML like content, attributes with HTML like values, elements with HTML Comment like textContent are no longer retained while content sanitization is active. |
| 53 | +// #TINY-12056 //TODO// |
| 54 | +* Added space to promotion message for ease of reading. |
| 55 | +// #TINY-12271 |
| 56 | + |
| 57 | +### Deprecated |
| 58 | +* Deprecated `skipFocus` option for ToggleToolbarDrawer command. To skip focus use `skip_focus` option. |
| 59 | +// #TINY-12044 |
| 60 | +* Deprecated 'editor.selection.setContent' method. |
| 61 | +// #TINY-11692 |
| 62 | + |
| 63 | +### Removed |
| 64 | +* Removed undocumented `documentBaseUrl` property from `Editor` instances. `documentBaseURI` is the supported property. |
| 65 | +// #TINY-12182 |
| 66 | + |
| 67 | +### Fixed |
| 68 | +* Long tooltips could overflow narrow browser windows. |
| 69 | +// #TINY-11884 |
| 70 | +* Tab to create a new row in tables with a non-editable final row would freeze the editor. |
| 71 | +// #TINY-12018 |
| 72 | +* Fixed an issue where the context form API `onSetup` was referencing the incorrect element. |
| 73 | +// #TINY-11912 |
| 74 | +* Attempting to add a newline directly after a block element such as an image would cause an error. |
| 75 | +// #TINY-12045 |
| 76 | +* It wasn't possible to navigate out of a `figcaption` using the left and right arrow keys in Firefox. |
| 77 | +// #TINY-11982 |
| 78 | +* Nested font sizes were causing too much spacing between lines. |
| 79 | +// #TINY-12073 |
| 80 | +* New list item was not inserted correctly when existing list item had a block element inside. |
| 81 | +// #TINY-12102 |
| 82 | +* Deleting a whole element would sometimes modify nearby content. |
| 83 | +// #TINY-11868 |
| 84 | +* HTML schema did not treat `colgroup` or `col` elements as block elements. |
| 85 | +// #TINY-12092 |
| 86 | +* Inserting HTML fragments with invalid contents now retains more of the structure. |
| 87 | +// #TINY-11927 |
| 88 | +* The `contextform` subtoolbar is no longer dismissed when using the back button in inline editors. |
| 89 | +// #TINY-12118 |
| 90 | +* Tabbing when a `figure` was selected didn't move the selection on the `figcaption` correctly. |
| 91 | +// #TINY-11753 |
| 92 | +* Strikethrough format could be added outside font size format, which renders incorrectly in some browsers. |
| 93 | +// #TINY-12004 |
| 94 | +* Using arrow navigation between buttons when a button had the mouse over could stop the navigation. |
| 95 | +// #TINY-12163 |
| 96 | +* Codesample dialog would not disable spellcheck as expected. |
| 97 | +// #TINY-12120 |
| 98 | +* Cutting a whole HTML element would add an empty paragraph. |
| 99 | +// #TINY-12171 |
| 100 | +* Added better support for template elements. |
| 101 | +// #TINY-12157 // incorrect tagging in JIRA- docs_required// |
| 102 | +* Tooltips no longer show above editor views #TINY-12289 |
| 103 | +// //need to know if this is specific to suggestededits only// |
| 104 | +* `onboarding` plugin overlay now shows above popups. |
| 105 | +// #TINY-12522 //suggest-remove// |
0 commit comments