npm @ngx-loading-bar/core 6.0.0
v6.0.0

latest releases: 6.0.2, 6.0.1
2 years ago

⚠ 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

Don't miss a new core release

NewReleases is sending notifications on new releases.