Skip to content

Commit cb938d7

Browse files
Build 2.55.1
1 parent 5bf4d47 commit cb938d7

15 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**2.55.1** (27 Aug 2024)
2+
- Adds a minimum recording length option for session recording
3+
- Fixes and improvements for session recording batcher to support offline queueing and retry
4+
15
**2.55.0** (2 Aug 2024)
26
- Added new build to support native JavaScript modules
37

dist/mixpanel-core.cjs.js

Lines changed: 1 addition & 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.55.1-rc1'
5+
LIB_VERSION: '2.55.1'
66
};
77

88
/* eslint camelcase: "off", eqeqeq: "off" */

dist/mixpanel-recorder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4510,7 +4510,7 @@
45104510

45114511
var Config = {
45124512
DEBUG: false,
4513-
LIB_VERSION: '2.55.1-rc1'
4513+
LIB_VERSION: '2.55.1'
45144514
};
45154515

45164516
/* eslint camelcase: "off", eqeqeq: "off" */

dist/mixpanel-recorder.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mixpanel-with-async-recorder.cjs.js

Lines changed: 1 addition & 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.55.1-rc1'
5+
LIB_VERSION: '2.55.1'
66
};
77

88
/* eslint camelcase: "off", eqeqeq: "off" */

dist/mixpanel.amd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4509,7 +4509,7 @@ define((function () { 'use strict';
45094509

45104510
var Config = {
45114511
DEBUG: false,
4512-
LIB_VERSION: '2.55.1-rc1'
4512+
LIB_VERSION: '2.55.1'
45134513
};
45144514

45154515
/* eslint camelcase: "off", eqeqeq: "off" */

dist/mixpanel.cjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4509,7 +4509,7 @@ var IncrementalSource = /* @__PURE__ */ ((IncrementalSource2) => {
45094509

45104510
var Config = {
45114511
DEBUG: false,
4512-
LIB_VERSION: '2.55.1-rc1'
4512+
LIB_VERSION: '2.55.1'
45134513
};
45144514

45154515
/* eslint camelcase: "off", eqeqeq: "off" */

dist/mixpanel.globals.js

Lines changed: 1 addition & 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.55.1-rc1'
6+
LIB_VERSION: '2.55.1'
77
};
88

99
/* eslint camelcase: "off", eqeqeq: "off" */

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.module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4507,7 +4507,7 @@ var IncrementalSource = /* @__PURE__ */ ((IncrementalSource2) => {
45074507

45084508
var Config = {
45094509
DEBUG: false,
4510-
LIB_VERSION: '2.55.1-rc1'
4510+
LIB_VERSION: '2.55.1'
45114511
};
45124512

45134513
/* eslint camelcase: "off", eqeqeq: "off" */

dist/mixpanel.umd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4513,7 +4513,7 @@
45134513

45144514
var Config = {
45154515
DEBUG: false,
4516-
LIB_VERSION: '2.55.1-rc1'
4516+
LIB_VERSION: '2.55.1'
45174517
};
45184518

45194519
/* eslint camelcase: "off", eqeqeq: "off" */

examples/commonjs-browserify/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4510,7 +4510,7 @@ var IncrementalSource = /* @__PURE__ */ ((IncrementalSource2) => {
45104510

45114511
var Config = {
45124512
DEBUG: false,
4513-
LIB_VERSION: '2.55.1-rc1'
4513+
LIB_VERSION: '2.55.1'
45144514
};
45154515

45164516
/* eslint camelcase: "off", eqeqeq: "off" */

examples/es2015-babelify/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10982,7 +10982,7 @@ Object.defineProperty(exports, '__esModule', {
1098210982
});
1098310983
var Config = {
1098410984
DEBUG: false,
10985-
LIB_VERSION: '2.55.1-rc1'
10985+
LIB_VERSION: '2.55.1'
1098610986
};
1098710987

1098810988
exports['default'] = Config;

examples/umd-webpack/bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4576,7 +4576,7 @@
45764576

45774577
var Config = {
45784578
DEBUG: false,
4579-
LIB_VERSION: '2.55.1-rc1'
4579+
LIB_VERSION: '2.55.1'
45804580
};
45814581

45824582
/* eslint camelcase: "off", eqeqeq: "off" */

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.55.1-rc1'
3+
LIB_VERSION: '2.55.1'
44
};
55

66
export default Config;

0 commit comments

Comments
 (0)