mixpanel-browser 2.46.0 → 2.48.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/.github/workflows/tests.yml +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/mixpanel.amd.js +250 -114
- package/dist/mixpanel.cjs.js +250 -114
- package/dist/mixpanel.globals.js +250 -114
- package/dist/mixpanel.min.js +105 -102
- package/dist/mixpanel.umd.js +250 -114
- package/doc/readme.io/javascript-full-api-reference.md +31 -1
- package/package.json +1 -1
- package/src/config.js +1 -1
- package/src/mixpanel-core.js +171 -54
- package/src/mixpanel-group.js +1 -1
- package/src/mixpanel-people.js +9 -7
- package/src/mixpanel-persistence.js +20 -30
- package/src/utils.js +48 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
**2.48.0** (7 Nov 2023)
|
|
2
|
+
- API endpoint routes can now be configured individually (i.e. rename /track, /engage, /groups)
|
|
3
|
+
- Event properties object passed to mixpanel.track() will no longer be mutated
|
|
4
|
+
- Super properties are now reloaded from persistence when making every tracking call (i.e., kept fresh when another tab/window in the same browser has updated them)
|
|
5
|
+
- Extra failsafe behavior for trying to clear queued requests when localStorage doesn't work on startup, e.g., when localStorage is full so writes fail
|
|
6
|
+
- Block Chrome-Lighthouse user agent
|
|
7
|
+
- Fix for error in add_group() when adding a new group to an existing list
|
|
8
|
+
|
|
9
|
+
**2.47.0** (27 Apr 2023)
|
|
10
|
+
- Collect richer marketing attribution properties for multi-touch attribution
|
|
11
|
+
- New implementation of previously-deprecated track_pageview() method and init option to send automatically
|
|
12
|
+
- Use performance.now when available for time-based entropy component of UUID-generation (thanks @adrianherd)
|
|
13
|
+
- Looser API Host check for default JSON-payload sending to mipxanel.com hosts
|
|
14
|
+
|
|
1
15
|
**2.46.0** (20 Mar 2023)
|
|
2
16
|
- Updates for new identity management system
|
|
3
17
|
- More aggressive deduplication within batch sender
|