countly-sdk-web 21.11.3 → 22.2.1
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.
- package/CHANGELOG.md +15 -0
- package/README.md +3 -3
- package/cypress/integration/device_id.js +830 -0
- package/cypress/integration/reponse_validation.js +170 -0
- package/cypress/integration/utm.js +236 -0
- package/cypress/support/commands.js +6 -3
- package/cypress/support/helper.js +1 -1
- package/cypress/support/index.js +0 -1
- package/lib/countly.js +405 -167
- package/lib/countly.min.js +116 -109
- package/package.json +2 -2
- package/countly-sdk-web-21.11.3.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 22.02.1
|
|
2
|
+
- Fixed a bug where heatmap files were not loading
|
|
3
|
+
|
|
4
|
+
## 22.02.0
|
|
5
|
+
- !! Major breaking change !! Device ID provided during the init will be ignored if a device ID was provided previously
|
|
6
|
+
- Added a new init time flag which erases the previously stored device ID. This allows to set new device ID during init
|
|
7
|
+
- Added a new functionality with which it is possible to check the device ID type
|
|
8
|
+
- Now it appends the device ID type with each request
|
|
9
|
+
- Fixed a bug where custom utm tags were being overridden
|
|
10
|
+
- Added a safety check preventing the user from changing the device ID at offline
|
|
11
|
+
|
|
12
|
+
## 21.11.4
|
|
13
|
+
- Fixed a bug where some server response formats were rejected
|
|
14
|
+
- Fixed a bug where some widgets' text color was not displayed correctly
|
|
15
|
+
|
|
1
16
|
## 21.11.3
|
|
2
17
|
- Fixed a bug with `recordRatingWidgetWithID` where it would not record ratings
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ or
|
|
|
30
30
|
|
|
31
31
|
Countly web SDK is available on CDNJS. Use either
|
|
32
32
|
|
|
33
|
-
[https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/
|
|
33
|
+
[https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/22.02.1/countly.min.js](https://cdnjs.cloudflare.com/ajax/libs/countly-sdk-web/22.02.1/countly.min.js)
|
|
34
34
|
|
|
35
35
|
or
|
|
36
36
|
|
|
@@ -106,11 +106,11 @@ Glad you asked. We need ideas, feedbacks and constructive comments. All your sug
|
|
|
106
106
|
|
|
107
107
|
If you like Countly, [why not use one of our badges](https://count.ly/brand-assets) and give a link back to us, so others know about this wonderful platform?
|
|
108
108
|
|
|
109
|
-
<a href="https://count.ly/f/badge" rel="nofollow"><img style="width:145px;height:60px" src="https://count.ly/badges/dark.svg" alt="Countly - Product Analytics" /></a>
|
|
109
|
+
<a href="https://count.ly/f/badge" rel="nofollow"><img style="width:145px;height:60px" src="https://count.ly/badges/dark.svg?v2" alt="Countly - Product Analytics" /></a>
|
|
110
110
|
|
|
111
111
|
<a href="https://count.ly/f/badge" rel="nofollow"><img style="width:145px;height:60px" src="https://count.ly/badges/dark.svg" alt="Countly - Product Analytics" /></a>
|
|
112
112
|
|
|
113
|
-
<a href="https://count.ly/f/badge" rel="nofollow"><img style="width:145px;height:60px" src="https://count.ly/badges/light.svg" alt="Countly - Product Analytics" /></a>
|
|
113
|
+
<a href="https://count.ly/f/badge" rel="nofollow"><img style="width:145px;height:60px" src="https://count.ly/badges/light.svg?v2" alt="Countly - Product Analytics" /></a>
|
|
114
114
|
|
|
115
115
|
<a href="https://count.ly/f/badge" rel="nofollow"><img style="width:145px;height:60px" src="https://count.ly/badges/light.svg" alt="Countly - Product Analytics" /></a>
|
|
116
116
|
|