This is a very tiny release; I’ve simply changed the State Formula property to:

if(empty(prop("Parent Task")), "", "➞") + if(prop("Done") == true, "😀", if(empty(prop("Due")), "⚪️", if(formatDate(prop("Due"), "L") == formatDate(now(), "L"), "🟢", if(prop("Due") < now(), "🔴", "🔵"))))

Specifically, I’ve removed State’s reference to the Type property.

This will allow you to safely delete the Type property if (and only if) you’re automating your recurring tasks via either Make.com or Automate.io.

<aside> 💡 “Type” only exists in Ultimate Tasks in order to run a set of filters on nearly every task view. It prevents recurring tasks from disappearing from your views if the Done checkbox is checked. When you handle recurring tasks manually inside of Notion, you simply move the Due Date to the date displayed in Next Due. So the filter is just a failsafe to prevent confusion if a user checks Done on a recurring task, expecting that the task will automatically show back up (un-checked) later.

</aside>

If you’re not doing that, you can safely ignore this update.

You can learn how to create automated recurring tasks here: How to Create Recurring Tasks - in “The Automate Way” section of the article.