diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cb29110725..d2104c9fd9 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -45,6 +45,8 @@ Changelog * Fix: Ensure models are fully loaded before registering snippets, to avoid circular import issues (Matt Westcott) * Fix: Prevent fields without a `verbose_name` property from breaking usage report views (Matt Westcott) * Fix: Exclude tags from the reference index (Matt Westcott) + * Fix: Fix errors in handling generic foreign keys when populating the reference index (Matt Westcott) + * Fix: Prevent error in handling null ParentalKeys when populating the reference index (Matt Westcott) 4.1 LTS (01.11.2022) diff --git a/docs/releases/4.1.1.md b/docs/releases/4.1.1.md index 56a70db4ad..5d14299851 100644 --- a/docs/releases/4.1.1.md +++ b/docs/releases/4.1.1.md @@ -20,3 +20,5 @@ depth: 1 * Ensure models are fully loaded before registering snippets, to avoid circular import issues (Matt Westcott) * Prevent fields without a `verbose_name` property from breaking usage report views (Matt Westcott) * Exclude tags from the reference index (Matt Westcott) + * Fix errors in handling generic foreign keys when populating the reference index (Matt Westcott) + * Prevent error in handling null ParentalKeys when populating the reference index (Matt Westcott)