angular v12.0.0-next.7 Release Notes

Release Date: 2021-04-01 // about 3 years ago
  • ๐Ÿ› Bug Fixes

    • common: temporarily re-export and deprecate XhrFactory (#41393) (7dfa446)
    • compiler: handle case-sensitive CSS custom properties (#41380) (e112e32), closes #41364
    • compiler: include used components during JIT compilation of partial component declaration (#41353) (ff9470b), closes #41104 #41318
    • language-service: Only provide Angular property completions in templates (#41278) (0226a11)
    • ๐Ÿ’ป platform-browser: configure XhrFactory to use BrowserXhr (#41313) (e0028e5), closes #41311

    ๐Ÿ”‹ Features

    • core: add migration for XhrFactory import (#41313) (95ff5ec)
    • language-service: add perf tracing to LanguageService (#41319) (90f85da)

    ๐Ÿ’ฅ BREAKING CHANGES

    • ๐Ÿ’ป platform-browser: XhrFactory has been moved from @angular/common/http to @angular/common.

    Before

    import {XhrFactory} from '@angular/common/http';
    

    After

    import {XhrFactory} from '@angular/common';