Skip to content

v6.0.0

Compare
Choose a tag to compare
@aitboudad aitboudad released this 23 Dec 16:41
· 12 commits to main since this release

⚠ BREAKING CHANGES

  • core: The library now requires Angular 13

Features

  • core: update to angular 13 (#191) (fe51b29), closes #190

  • http-client: To ignore a particular HTTP request, use "NGX_LOADING_BAR_IGNORED" HttpContextToken instead of http headers:

Before:

httpClient.get('/status', {
  headers: { ignoreLoadingBar: '' },
});

After:

httpClient.get('/status', {
  context: new HttpContext().set(NGX_LOADING_BAR_IGNORED, true),
});

Special Thanks to @Totati