countly-sdk-web 24.11.4 → 25.4.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.
- package/CHANGELOG.md +24 -0
- package/cypress/e2e/bridged_utils.cy.js +1 -1
- package/cypress/e2e/device_id_init_scenarios.cy.js +88 -83
- package/cypress/e2e/integration.cy.js +6 -33
- package/cypress/e2e/sdk_behavior.cy.js +233 -0
- package/cypress/support/helper.js +177 -1
- package/lib/countly.d.ts +5 -0
- package/lib/countly.js +528 -272
- package/lib/countly.min.js +201 -193
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 25.4.0
|
|
2
|
+
|
|
3
|
+
- ! Minor Breaking Change ! SDK now has Server Configuration feature and it is enabled by default. Changes made on SDK Manager > SDK Configuration on your server will affect SDK behavior directly.
|
|
4
|
+
|
|
5
|
+
- Mitigated an issue about orientation detection in Safari
|
|
6
|
+
|
|
7
|
+
- Improved init time Content Zone logic
|
|
8
|
+
- Improved error handler to include script loading issues
|
|
9
|
+
- Improved the wrapper of Feedback Widgets
|
|
10
|
+
|
|
11
|
+
- Added `refreshContentZone` method to Content interface for refreshing Content Zone requests
|
|
12
|
+
- Added `behavior_settings` init time method for providing server configuration during first initialization
|
|
13
|
+
- Added `content_whitelist` init time method that lets you whitelist your other domains for displaying Content
|
|
14
|
+
|
|
15
|
+
- `max_logs` config option value will not be used anymore (use `max_breadcrumb_count` instead)
|
|
16
|
+
|
|
17
|
+
## 25.1.0
|
|
18
|
+
|
|
19
|
+
- Improved orientation reporting precision.
|
|
20
|
+
- Reduced log verbosity.
|
|
21
|
+
- Added a new init time config option `crash_filter_callback` for filtering crashes.
|
|
22
|
+
|
|
23
|
+
- Mitigated an issue where content resizing did not work in certain orientations.
|
|
24
|
+
|
|
1
25
|
## 24.11.4
|
|
2
26
|
|
|
3
27
|
- Mitigated an issue where `content` and `feedback` interface methods would not have worked if async methods were used when multi instancing the SDK.
|