Registry_name not changing friendly_name in custom component in 0.96

Hi,

I have a custom component that in the code it setup the registry_name in order to setup the friendly_name.
Since version 0.96, the friendly name is no more updated.

I did not find information regarding this change of Entity usage.

Anyone help could be great.

Thanks

Final some git historical as get out a change in home assistant source code.
registry_name as been replaced by registry_entry
Now I need to figure out how to use it.
https://github.com/home-assistant/home-assistant/commit/06af6f19a3b51d16aac0586ebbb3a1c07f7682d7#diff-2f6e7e067d836cc94edba0d7d51d0241

Finally solution found.

replace usage of self.registry_name by self.name directly but in my Entity class constructor I initialize entity id like this
self.entity_id = “{}.{}day{}”.format(‘sensor’, COMPONENT_NAME, index)

This was something I missed in comments from changing the way of custom components

Now my Home assistant display will be back to normal
info_panel.png