Skip to content

Commit

Permalink
v2.9.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Wymer committed Oct 5, 2016
1 parent a04b785 commit f8fe5b2
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**2.9.16** (5 Oct 2016)
Autotrack:
- Bugfix: Check tagNames instead of element references

**2.9.15** (28 Sep 2016)
Autotrack:
- Bugfix: Handle SVG class names properly, remove appHost param
Expand Down
4 changes: 2 additions & 2 deletions build/mixpanel.amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ define(function () { 'use strict';

var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

// 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 @@ -1625,7 +1625,7 @@ define(function () { 'use strict';
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down
4 changes: 2 additions & 2 deletions build/mixpanel.cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

// 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 @@ -1625,7 +1625,7 @@ var autotrack = {
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down
4 changes: 2 additions & 2 deletions build/mixpanel.globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

// 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 @@ -1626,7 +1626,7 @@
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down
4 changes: 2 additions & 2 deletions build/mixpanel.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

// 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 @@ -1629,7 +1629,7 @@
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down
4 changes: 2 additions & 2 deletions examples/commonjs-browserify/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

// 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 @@ -1626,7 +1626,7 @@ var autotrack = {
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down
4 changes: 2 additions & 2 deletions examples/es2015-babelify/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ var autotrack = {
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down Expand Up @@ -574,7 +574,7 @@ Object.defineProperty(exports, '__esModule', {
});
var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

exports['default'] = Config;
Expand Down
4 changes: 2 additions & 2 deletions examples/umd-webpack/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

// 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 @@ -1692,7 +1692,7 @@
},

/*
* Due to potential reference descrepencies (such as the webcomponents.js polyfill)
* Due to potential reference discrepancies (such as the webcomponents.js polyfill)
* We want to match tagNames instead of specific reference because something like element === document.body
* won't always work because element might not be a native element.
*/
Expand Down
2 changes: 1 addition & 1 deletion mixpanel.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mixpanel-browser",
"version": "2.9.15",
"version": "2.9.16",
"description": "The official Mixpanel JavaScript browser client library",
"main": "build/mixpanel.cjs.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var Config = {
DEBUG: false,
LIB_VERSION: '2.9.15'
LIB_VERSION: '2.9.16'
};

export default Config;

0 comments on commit f8fe5b2

Please sign in to comment.