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
+12
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
7
7
## [Unreleased]
8
8
9
+
## [3.0.0] - 2021-08-17
10
+
11
+
### Added
12
+
13
+
- Compatibility with other frameworks in addition to angular was added to the library. The behavior of the http.service.ts file was changed, it stopped using http client by axios to give compatibility with other libraries. It changed the way the library is initialized, a bootstrap was created that is found in the jsonapi-bootstrap file ([#326](https://github.com/reyesoft/ngx-jsonapi/pull/326))
14
+
9
15
## [2.3.0] - 2021-05-19
10
16
11
17
### Changed
12
18
13
19
- Angular version upgraded to 10, and vulnerabilities updated. ([#306](https://github.com/reyesoft/ngx-jsonapi/pull/306))
14
20
21
+
## [2.2.3] - 2021-06-24
22
+
23
+
### Fixed
24
+
25
+
- Fix trackBy params of document-collection.ts. ([#299](https://github.com/reyesoft/ngx-jsonapi/pull/299))
ngx-jsonapi v3 has arrived! While this is a major version change (from 2.x to 3.x), we've put in a lot of work to keep the hard breaking changes to a minimum.
4
+
5
+
## Library bootstrap
6
+
7
+
### Before
8
+
9
+
```typescript
10
+
import { NgxJsonapiModule } from'ngx-jsonapi';
11
+
12
+
@NgModule({
13
+
imports: [
14
+
NgxJsonapiModule.forRoot({
15
+
url: '//jsonapiplayground.reyesoft.com/v2/'
16
+
})
17
+
]
18
+
})
19
+
exportclassAppModule {}
20
+
```
21
+
22
+
#### Enable Local Cache
23
+
24
+
```typescrypt
25
+
import { NgxJsonapiModule } from 'ngx-jsonapi';
26
+
import { JSONAPI_RIPPER_SERVICE, JSONAPI_STORE_SERVICE } from './core';
27
+
import { StoreService } from 'ngx-jsonapi/sources/store.service';
28
+
import { JsonRipper } from 'ngx-jsonapi/services/json-ripper';
0 commit comments