Gizmo It is unfortunately not a bug and also mentioned in the release notes. The strftime function is deprecated in PHP since its latest version and therefore had to be removed in order to avoid compatibility issues with all future versions of PHP. I am aware that this is a breaking change that unfortunately can not be avoided since I have no influence in that matter. PHP 8.1 introduced many breaking changes, even though it is only a minor version and all PHP applications have somehow to deal with this now.
But there is a new alternative available in order to specify a locale. You can use the ICU syntax instead and all will be good. There is also an updated description in the docs for dateFormat
with examples.
I hope this helps and the migration to the next PHP version will be less painful for all of us!
Cheers!