core: Because all lifecycle hooks are now interfaces the code that uses 'extends' keyword will no longer compile. Introduced by (ee747f7).
To migrate the code follow the example below:
Before:
@Component()
class SomeComponent extends OnInit {}
After:
@Component()
class SomeComponent implements OnInit {}
Based on our research we don't expect anyone to be affected by this change.
RootRenderer cannot be used any more, use RendererFactoryV2 instead. Introduced by (ccb636c).
Note: Renderer can still be injected/used, but is deprecated.
Universal, the project that allows developers to run Angular on a server, is now up to date with Angular again, and has been adopted by the Angular team. This release now includes the results of the work from the Universal team over the last few months. The majority of the Universal code is now in platform-server. To learn more about this change, take a look the new renderModuleFactory method, or Rob Wormald’s Demo Repository. More documentation is forthcoming.
We’ve made changes under to hood to what AOT generated code looks like. These changes should reduce the size of the generated code for your components by more than half in some cases. Read the Design Doc for the View Engine updates.