Skip to content

Commit 6d3af68

Browse files
committed
build 2.42.1
1 parent ec55238 commit 6d3af68

File tree

9 files changed

+23
-11
lines changed

9 files changed

+23
-11
lines changed

dist/mixpanel.amd.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ define(function () { 'use strict';
22

33
var Config = {
44
DEBUG: false,
5-
LIB_VERSION: '2.42.0'
5+
LIB_VERSION: '2.42.1'
66
};
77

88
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -944,10 +944,12 @@ define(function () { 'use strict';
944944
// This is to block various web spiders from executing our JS and
945945
// sending false tracking data
946946
var BLOCKED_UA_STRS = [
947+
'ahrefsbot',
947948
'baiduspider',
948949
'bingbot',
949950
'bingpreview',
950951
'facebookexternal',
952+
'petalbot',
951953
'pinterest',
952954
'screaming frog',
953955
'yahoo! slurp',

dist/mixpanel.cjs.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var Config = {
44
DEBUG: false,
5-
LIB_VERSION: '2.42.0'
5+
LIB_VERSION: '2.42.1'
66
};
77

88
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -944,10 +944,12 @@ _.UUID = (function() {
944944
// This is to block various web spiders from executing our JS and
945945
// sending false tracking data
946946
var BLOCKED_UA_STRS = [
947+
'ahrefsbot',
947948
'baiduspider',
948949
'bingbot',
949950
'bingpreview',
950951
'facebookexternal',
952+
'petalbot',
951953
'pinterest',
952954
'screaming frog',
953955
'yahoo! slurp',

dist/mixpanel.globals.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
var Config = {
55
DEBUG: false,
6-
LIB_VERSION: '2.42.0'
6+
LIB_VERSION: '2.42.1'
77
};
88

99
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -945,10 +945,12 @@
945945
// This is to block various web spiders from executing our JS and
946946
// sending false tracking data
947947
var BLOCKED_UA_STRS = [
948+
'ahrefsbot',
948949
'baiduspider',
949950
'bingbot',
950951
'bingpreview',
951952
'facebookexternal',
953+
'petalbot',
952954
'pinterest',
953955
'screaming frog',
954956
'yahoo! slurp',

dist/mixpanel.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mixpanel.umd.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
var Config = {
88
DEBUG: false,
9-
LIB_VERSION: '2.42.0'
9+
LIB_VERSION: '2.42.1'
1010
};
1111

1212
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -948,10 +948,12 @@
948948
// This is to block various web spiders from executing our JS and
949949
// sending false tracking data
950950
var BLOCKED_UA_STRS = [
951+
'ahrefsbot',
951952
'baiduspider',
952953
'bingbot',
953954
'bingpreview',
954955
'facebookexternal',
956+
'petalbot',
955957
'pinterest',
956958
'screaming frog',
957959
'yahoo! slurp',

examples/commonjs-browserify/bundle.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
var Config = {
55
DEBUG: false,
6-
LIB_VERSION: '2.42.0'
6+
LIB_VERSION: '2.42.1'
77
};
88

99
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -945,10 +945,12 @@ _.UUID = (function() {
945945
// This is to block various web spiders from executing our JS and
946946
// sending false tracking data
947947
var BLOCKED_UA_STRS = [
948+
'ahrefsbot',
948949
'baiduspider',
949950
'bingbot',
950951
'bingpreview',
951952
'facebookexternal',
953+
'petalbot',
952954
'pinterest',
953955
'screaming frog',
954956
'yahoo! slurp',

examples/es2015-babelify/bundle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Object.defineProperty(exports, '__esModule', {
163163
});
164164
var Config = {
165165
DEBUG: false,
166-
LIB_VERSION: '2.42.0'
166+
LIB_VERSION: '2.42.1'
167167
};
168168

169169
exports['default'] = Config;
@@ -7237,7 +7237,7 @@ _.UUID = (function () {
72377237
// _.isBlockedUA()
72387238
// This is to block various web spiders from executing our JS and
72397239
// sending false tracking data
7240-
var BLOCKED_UA_STRS = ['baiduspider', 'bingbot', 'bingpreview', 'facebookexternal', 'pinterest', 'screaming frog', 'yahoo! slurp', 'yandexbot',
7240+
var BLOCKED_UA_STRS = ['ahrefsbot', 'baiduspider', 'bingbot', 'bingpreview', 'facebookexternal', 'petalbot', 'pinterest', 'screaming frog', 'yahoo! slurp', 'yandexbot',
72417241

72427242
// a whole bunch of goog-specific crawlers
72437243
// https://developers.google.com/search/docs/advanced/crawling/overview-google-crawlers

examples/umd-webpack/bundle.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
var Config = {
7171
DEBUG: false,
72-
LIB_VERSION: '2.42.0'
72+
LIB_VERSION: '2.42.1'
7373
};
7474

7575
// since es6 imports are static and we run unit tests from the console, window won't be defined when importing this file
@@ -1011,10 +1011,12 @@
10111011
// This is to block various web spiders from executing our JS and
10121012
// sending false tracking data
10131013
var BLOCKED_UA_STRS = [
1014+
'ahrefsbot',
10141015
'baiduspider',
10151016
'bingbot',
10161017
'bingpreview',
10171018
'facebookexternal',
1019+
'petalbot',
10181020
'pinterest',
10191021
'screaming frog',
10201022
'yahoo! slurp',

src/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var Config = {
22
DEBUG: false,
3-
LIB_VERSION: '2.42.0'
3+
LIB_VERSION: '2.42.1'
44
};
55

66
export default Config;

0 commit comments

Comments
 (0)