From 2a20764b0079216927e3ccb5e91320ef784516fd Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Wed, 9 Nov 2022 14:21:20 +0000 Subject: [PATCH] Release notes for #9625 --- CHANGELOG.txt | 2 ++ docs/releases/4.1.1.md | 2 ++ 2 files changed, 4 insertions(+) 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)