@kelvininc/web-client-sdk 6.1.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.0.0](https://bitbucket.org/kelvininc/kelvinjs/compare/v6.2.0...v7.0.0) (2022-02-01)
7
+
8
+
9
+ * feat(angular-sdk-client)!: migrate to angular 11 with new configurations [SA-539] ([9c5af3d](https://bitbucket.org/kelvininc/kelvinjs/commits/9c5af3da34f3ef0362309dee98ffb7b6a2fe3731))
10
+
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ * drop support to angular 10 & rxjs 6.5.x
15
+
16
+ - add support to angular 11
17
+ - add support to rxjs 6.6.7
18
+ - Update angular sample to 11
19
+ - Remove loglevel from js-client-sdk
20
+
21
+
22
+
23
+
24
+
25
+ # [6.2.0](https://bitbucket.org/kelvininc/kelvinjs/compare/v6.1.0...v6.2.0) (2022-01-28)
26
+
27
+ **Note:** Version bump only for package @kelvininc/web-client-sdk
28
+
29
+
30
+
31
+
32
+
6
33
  # [6.1.0](https://bitbucket.org/kelvininc/kelvinjs/compare/v6.0.0...v6.1.0) (2022-01-26)
7
34
 
8
35
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kelvininc/web-client-sdk",
3
- "version": "6.1.0",
3
+ "version": "7.0.0",
4
4
  "description": "Kelvin SDK Client for modern frontend Javascript frameworks, like Vue or React",
5
5
  "homepage": "https://docs.kelvininc.com",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -31,18 +31,18 @@
31
31
  "build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json"
32
32
  },
33
33
  "dependencies": {
34
- "@kelvininc/js-client-sdk": "^6.1.0"
34
+ "@kelvininc/js-client-sdk": "^7.0.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/axios": "^0.14.0",
38
- "rxjs": "~6.5.4",
38
+ "rxjs": "~6.6.7",
39
39
  "tslint": "^6.1.3",
40
40
  "tslint-defocus": "^2.0.6",
41
41
  "typescript": "^4.1.5"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "axios": "^0.21.1",
45
- "rxjs": "~6.5.4"
45
+ "rxjs": "~6.6.7"
46
46
  },
47
- "gitHead": "7d84851effdce7938dbce6197a6bfc9f091046cb"
47
+ "gitHead": "c018cb299cba0b7b217696432bd970dca1d831cd"
48
48
  }