3.4.4 release notes¶
What’s new in 3.4.4¶
Bug Fixes¶
Improvements and new features¶
Deprecations¶
Backward incompatible changes¶
Page methods¶
The following methods have been removed from the Page model:
reset_to_liveThis 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_placeholdersThis will now return a list ofPlaceholdertag instances instead of a list of placeholder slot names. You can get the slot name by calling theget_name()method on thePlaceholdertag instance.cms.utils.placeholder.get_placeholdersThis will now return a list ofDeclaredPlaceholderinstances instead of a list of placeholder slot names. You can get the slot name by accessing theslotattribute on theDeclaredPlaceholderinstance.