I am using the Beacon pattern for some proxies that refer to the same implementation. Multiple BeaconProxies refer to the same UpgradeableBeacon for the implementation address.
Whenever I want to upgrade the implementation I simply have to call the "upgradeTo" method in the UpgradeableBeacon, but what if I need to run some new initialization code on all BeaconProxies refering to the UpgradeableBeacon? How tu run a recursive "UpgradeToAndCall" on all BeaconProxies?