Skip to content

Commit

Permalink
rebuild 2.48.1 + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tdumitrescu committed Nov 14, 2023
1 parent ac18edb commit 7d155e6
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
**2.48.1** (14 Nov 2023)
- UTM campaign properties will always be persisted super properties (fixes discrepancy between
minified and unminified package)

**2.48.0** (7 Nov 2023)
- API endpoint routes can now be configured individually (i.e. rename /track, /engage, /groups)
- Event properties object passed to mixpanel.track() will no longer be mutated
Expand Down
4 changes: 2 additions & 2 deletions dist/mixpanel.amd.js
Expand Up @@ -2,7 +2,7 @@ define(function () { 'use strict';

var Config = {
DEBUG: false,
LIB_VERSION: '2.48.0'
LIB_VERSION: '2.48.1'
};

// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
Expand Down Expand Up @@ -4416,7 +4416,7 @@ define(function () { 'use strict';
MixpanelLib.prototype._set_default_superprops = function() {
this['persistence'].update_search_keyword(document$1.referrer);
if (this.get_config('store_google')) {
this.register(_.info.campaignParams(), {persistent: false});
this.register(_.info.campaignParams());
}
if (this.get_config('save_referrer')) {
this['persistence'].update_referrer_info(document$1.referrer);
Expand Down
4 changes: 2 additions & 2 deletions dist/mixpanel.cjs.js
Expand Up @@ -2,7 +2,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.48.0'
LIB_VERSION: '2.48.1'
};

// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
Expand Down Expand Up @@ -4416,7 +4416,7 @@ MixpanelLib.prototype._loaded = function() {
MixpanelLib.prototype._set_default_superprops = function() {
this['persistence'].update_search_keyword(document$1.referrer);
if (this.get_config('store_google')) {
this.register(_.info.campaignParams(), {persistent: false});
this.register(_.info.campaignParams());
}
if (this.get_config('save_referrer')) {
this['persistence'].update_referrer_info(document$1.referrer);
Expand Down
4 changes: 2 additions & 2 deletions dist/mixpanel.globals.js
Expand Up @@ -3,7 +3,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.48.0'
LIB_VERSION: '2.48.1'
};

// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
Expand Down Expand Up @@ -4417,7 +4417,7 @@
MixpanelLib.prototype._set_default_superprops = function() {
this['persistence'].update_search_keyword(document$1.referrer);
if (this.get_config('store_google')) {
this.register(_.info.campaignParams(), {persistent: false});
this.register(_.info.campaignParams());
}
if (this.get_config('save_referrer')) {
this['persistence'].update_referrer_info(document$1.referrer);
Expand Down

0 comments on commit 7d155e6

Please sign in to comment.