Skip to content

Commit 033f4ac

Browse files
DOC-3163: Updated changelog and cleaned up release note entries to align with changelog.
1 parent 011bad3 commit 033f4ac

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed

modules/ROOT/nav.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,6 @@
422422
*** {productname} 7.7.2
423423
**** xref:7.7.2-release-notes.adoc#overview[Overview]
424424
**** xref:7.7.2-release-notes.adoc#bug-fixes[Bug fixes]
425-
**** xref:7.7.2-release-notes.adoc#security-fixes[Security fixes]
426425
*** {productname} 7.7.1
427426
**** xref:7.7.1-release-notes.adoc#overview[Overview]
428427
**** xref:7.7.1-release-notes.adoc#accompanying-premium-self-hosted-server-side-component-changes[Accompanying Premium self-hosted server-side component changes]

modules/ROOT/pages/7.7.2-release-notes.adoc

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:release-version: 7.7.2
33
:navtitle: {productname} {release-version}
44
:description: Release notes for {productname} {release-version}
5-
:keywords: releasenotes, bugfixes, security
5+
:keywords: releasenotes, bugfixes
66
:page-toclevels: 1
77

88
include::partial$misc/admon-releasenotes-for-stable.adoc[]
@@ -11,26 +11,18 @@ include::partial$misc/admon-releasenotes-for-stable.adoc[]
1111
[[overview]]
1212
== Overview
1313

14-
{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:
1515

1616
// Remove sections and section boilerplates as necessary.
1717
// Pluralise as necessary or remove the placeholder plural marker.
1818
* xref:bug-fixes[Bug fixes]
19-
* xref:security-fixes[Security fixes]
2019

2120
[[bug-fixes]]
2221
== Bug fixes
2322

2423
{productname} {release-version} also includes the following bug fixes:
2524

26-
=== Exception was thrown when trying to use the context form API after the toolbar was detached.
27-
// #TINY-11781
28-
29-
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.
30-
31-
{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.
32-
33-
=== Exception occurs when pressing `tab` in the last cell of a non-editable table
25+
=== Error was thrown when pressing `tab` in the last cell of a non-editable table.
3426
// #TINY-11797
3527

3628
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.
@@ -44,21 +36,18 @@ This issue also triggered error messages when pressing `Tab` in the last cell of
4436

4537
These improvements enhance table navigation, prevent unnecessary error messages, and optimize performance when working with non-editable tables.
4638

47-
=== Deleting an empty block within an `<li>` element would move the cursor at the end of the `<li>` element.
48-
// #TINY-11763
49-
50-
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.
39+
=== Error was thrown when trying to use the context form API after a component was detached.
40+
// #TINY-11781
5141

52-
These issues led to confusing behavior, as users experienced unintended cursor movement and encountered error messages.
42+
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.
5343

54-
{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.
44+
{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.
5545

56-
[[security-fixes]]
57-
== Security fixes
46+
=== Deleting an empty block within an `<li>` element would move cursor to the end of the `<li>`.
47+
// #TINY-11763
5848

59-
{productname} {release-version} includes <a fix | fixes for the following security issue<s>:
49+
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.
6050

61-
=== <TINY-vwxyz 1 changelog entry>
62-
// #TINY-vwxyz1
51+
These issues led to confusing behavior, as users experienced unintended cursor movement and encountered error messages.
6352

64-
// CCFR here.
53+
{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.

modules/ROOT/pages/changelog.adoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44

55
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].
66

7+
== xref:7.7.2-release-notes.adoc[7.7.2 - 2025-03-19]
8+
9+
=== Fixed
10+
* Error was thrown when pressing tab in the last cell of a non-editable table.
11+
// #TINY-11797
12+
* Error was thrown when trying to use the context form API after a component was detached.
13+
// #TINY-11781
14+
* Deleting an empty block within an <li> element would move cursor to the end of the <li>.
15+
// #TINY-11763
16+
* Deleting an empty block that was between two lists would throw an Error when all three elements were nested inside a list.
17+
// #TINY-11763
18+
719
== xref:7.7.1-release-notes.adoc[7.7.1 - 2025-03-05]
820

921
=== Fixed

0 commit comments

Comments
 (0)