As reported by @mmikeyy in #72
I assigned values to the wiring property in initialize so these values would belong to the context instance, and then these changes were processed by this._configureWirings(wiring);, which was called at the very end of the constructor, after initialize was called.
Now, with 0.7.1, this._configureWirings(wiring) is called before this.initialize.apply(this, arguments).
and
Now, I have a problem with a view class that is sent to a layout that instantiates it and renders it in a region. That used to work well with 0.7.0. Now, with 0.7.1, instead of receiving a view class to instantiate, the layout receives:
function () {
return applyToConstructor(clazz, _.toArray(arguments));
}
As reported by @mmikeyy in #72
and