Matt Westcott vor 11 Monaten
Ursprung
Commit
abd018b926
2 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 1 0
      CHANGELOG.txt
  2. 1 0
      docs/releases/6.1.md

+ 1 - 0
CHANGELOG.txt

@@ -32,6 +32,7 @@ Changelog
  * Add support for related fields in generic `IndexView.list_display` (Abdelrahman Hamada)
  * Improve page fetching logic and cache route results per request (Gordon Pendleton)
  * Optimise rewriting of links / embeds in rich text using bulk database lookups (Andy Chosak)
+ * Add normalization mechanism to StreamField so that assignments and defaults can be passed in a wider range of data types (Joshua Munn, Matt Westcott)
  * Fix: Fix typo in `__str__` for MySQL search index (Jake Howard)
  * Fix: Ensure that unit tests correctly check for migrations in all core Wagtail apps (Matt Westcott)
  * Fix: Correctly handle `date` objects on `human_readable_date` template tag (Jhonatan Lopes)

+ 1 - 0
docs/releases/6.1.md

@@ -43,6 +43,7 @@ depth: 1
  * Improve page fetching logic and cache route results per request. You can now use `Page.route_for_request()` to find the page route, 
    and `Page.find_for_request()` to find the page given a request object and a URL path. Results are cached on `request._wagtail_route_for_request` (Gordon Pendleton)
  * Optimise rewriting of links / embeds in rich text using bulk database lookups (Andy Chosak)
+ * Add normalization mechanism to StreamField so that assignments and defaults can be passed in a wider range of data types (Joshua Munn, Matt Westcott)
 
 
 ### Bug fixes