0.83.2 breaking "hass.states[xxx].state" in custom component

I just posted a custom weather/animated radar card a few days ago, and now the 0.83.2 update has broken it.

It uses calls like ${hass.states[sensor.dark_sky_daily_summary].state} and worked beautifully.

Now it throws errors of cannot read state of "unknown" and causes the entire page to fail to render.

Is there some new syntax I can use, or is this simply borked?

There’s a Breaking Change in the dark_sky component.
Mayby some sensors get other entity_id’s.

Thanks for pointing that out. This is my first time working with real beta software where things change and break radically between updates. I’ll try to find a workaround for my component.

it’s prob that you have to put _0 for the day zero states (this is actually fixing an inconsistency they had before):

${hass.states[sensor.dark_sky_daily_summary_0].state}