diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c21a4f3ef9..1001c9c767 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -600,6 +600,7 @@ Changelog * Fix: Prevent database error when calling permission_order.register on app ready (Daniel Kirkham, Matt Westcott) * Fix: Handle StreamField migrations where the field value is null (Joshua Munn) * Fix: Prevent `StreamChildrenToListBlockOperation` from duplicating data across multiple StreamField instances (Joshua Munn) + * Fix: Prevent error on lazily loading StreamField blocks after the stream has been modified (Stefan Hammer) 5.2.7 (01.11.2024) ~~~~~~~~~~~~~~~~~~ diff --git a/docs/releases/5.2.8.md b/docs/releases/5.2.8.md index 449de60328..77fc9c5f2c 100644 --- a/docs/releases/5.2.8.md +++ b/docs/releases/5.2.8.md @@ -16,4 +16,5 @@ depth: 1 * Prevent database error when calling permission_order.register on app ready (Daniel Kirkham, Matt Westcott) * Handle StreamField migrations where the field value is null (Joshua Munn) - * Prevent `StreamChildrenToListBlockOperation` from duplicating data across multiple StreamField instances (Joshua Munn) \ No newline at end of file + * Prevent `StreamChildrenToListBlockOperation` from duplicating data across multiple StreamField instances (Joshua Munn) + * Prevent error on lazily loading StreamField blocks after the stream has been modified (Stefan Hammer)