Not to my knowledge! That’s always been the behaviour - component tags are standard Python objects, and their attributes do not exist before you create them.
This morning we have fixed the app that started crashing yesterday morning. We replaced all the instances of .tag.xxx with .tag['xxx'] and added the initialization .tag = {}.
I can’t test it now, but looking at the diff of the last check-in and looking at the app log, it looks like the line shown below was working until yesterday at 7:56 (but I don’t know if the user did hit any of the broken lines) and stopped working at 11:00. After 11 the app log has a bunch of crashes until the fix this morning.
The line causing the crash was this:
if ele.tag.name == 'machine_dd':
The error message from the app log is this:
AttributeError: 'ComponentTag' object has no attribute 'name_$rn$'at [Main, line 99](javascript:void(0))
I think it was crashing when ele.tag.name was undefined, while it wasn’t crashing until yesterday.