3.4.4 release notes¶
Backward incompatible changes¶
Page methods¶
The following methods have been removed from the Page
model:
reset_to_live
This internal method was removed and replaced withrevert_to_live
.
Placeholder utilities¶
Because of a performance issue with placeholder inheritance, we’ve altered the return value for the following internal placeholder utility functions:
cms.utils.placeholder._scan_placeholders
This will now return a list ofPlaceholder
tag instances instead of a list of placeholder slot names. You can get the slot name by calling theget_name()
method on thePlaceholder
tag instance.cms.utils.placeholder.get_placeholders
This will now return a list ofDeclaredPlaceholder
instances instead of a list of placeholder slot names. You can get the slot name by accessing theslot
attribute on theDeclaredPlaceholder
instance.