You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,13 @@
1
1
# Changelog
2
2
3
+
## v16.1.0
4
+
- Add full standalone components support.
5
+
- Deprecate `NgHttpLoaderModule` and `forRoot`.
6
+
-`PendingRequestsInterceptor` has been refactored from `class` to `function`.
7
+
- Needed`getters` and `setters` have been extracted in a new `PendingRequestsInterceptorConfigurer`. If you had injected `PendingRequestsInterceptor` somewhere, you must switch to `PendingRequestsInterceptorConfigurer`. This is a needed BC break.
8
+
- Note that `^16.0.0` is the last release supporting `NgModule`.
9
+
- This is not semver compliant, I agree. But the direct usage of `PendingRequestsInterceptor` must be **very** low.
Copy file name to clipboardExpand all lines: README.md
+17-49Lines changed: 17 additions & 49 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,46 +51,29 @@ If you experience errors like below, **please double-check the version you use.*
51
51
52
52
`ERROR in Error: Metadata version mismatch for module [...]/angular/node_modules/ng-http-loader/ng-http-loader.module.d.ts, found version x, expected y [...]`
53
53
54
-
## Requirements - HttpClientModule
54
+
## Requirements - HttpClient
55
55
56
-
Performing HTTP requests with the `HttpClientModule` API is **mandatory**. Otherwise, the spinner will not be fired **at all**.
57
-
58
-
See this [blog post](http://blog.ninja-squad.com/2017/07/17/http-client-module/) for an `HttpClientModule` introduction.
56
+
Performing HTTP requests with the `HttpClient` API is **mandatory**. Otherwise, the spinner will not be fired **at all**.
59
57
60
58
## Usage
61
59
62
-
From your Angular `AppModule`:
60
+
From your Angular root component (`app.component.ts` for example):
0 commit comments