Skip to content

Commit e8c6650

Browse files
committed
Merge remote-tracking branch 'public/master' into testServer
Conflicts: README.md
2 parents 43d2a83 + 34e5d15 commit e8c6650

7 files changed

+60
-22
lines changed

CHANGELOG.md

+19-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,30 @@
1-
**2.4.0**
2-
- add `people.union()`
1+
**2.4.2** (23 Mar 2015)
2+
- remove (undocumented) `token` property override in `track()`
33

4-
**2.3.5**
4+
**2.4.1** (12 Mar 2015)
5+
- fix for minification issue in `track()` colliding `token` and `ad`
6+
7+
**2.4.0** (10 Mar 2015)
8+
- add `people.union()` (thanks @mogstad)
9+
- remove refs to global RegExp object
10+
11+
**2.3.6** (20 Feb 2015)
12+
- Bower support (thanks @dehau)
13+
14+
**2.3.5** (18 Feb 2015)
515
- notification caching fix
616

7-
**2.3.4**
17+
**2.3.4** (17 Feb 2015)
818
- ensure notification-tracking on dismissal
919

10-
**2.3.3**
11-
- fix Control-click with `track_links()` on Windows/Linux ([https://github.com/mixpanel/mixpanel-js/issues/20](https://github.com/mixpanel/mixpanel-js/issues/20))
20+
**2.3.3** (17 Feb 2015)
21+
- fix Control-click with `track_links()` on Windows/Linux (thanks @pfhayes, [https://github.com/mixpanel/mixpanel-js/issues/20](https://github.com/mixpanel/mixpanel-js/issues/20))
1222

13-
**2.3.2**
23+
**2.3.2** (9 Dec 2014)
1424
- add `resource_type` to notification-tracking
1525

16-
**2.3.1**
26+
**2.3.1** (24 Nov 2014)
1727
- fix error when calling `identify()` with no `distinct_id`
1828

19-
**2.3.0**
29+
**2.3.0** (13 Nov 2014)
2030
- web notifications support

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,6 @@ If you originally installed Mixpanel via Bower at its previous home ([https://gi
4343

4444
In the future we plan to automate the last step with a headless browser to streamline development (although
4545
Mixpanel production releases are tested against a large matrix of browsers and operating systems).
46+
47+
## Thanks
48+
For patches and support: @dehau, @drubin, @mogstad, @pfhayes, @sandorfr

mixpanel-jslib-snippet.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mixpanel-jslib-snippet.min.test.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mixpanel.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Mixpanel JS Library v2.4.0
2+
* Mixpanel JS Library v2.4.2
33
*
44
* Copyright 2012, Mixpanel, Inc. All Rights Reserved
55
* http://mixpanel.com/
@@ -79,7 +79,7 @@ Globals should be all caps
7979
*/
8080
var HTTP_PROTOCOL = (("https:" == document.location.protocol) ? "https://" : "http://"),
8181

82-
LIB_VERSION = '2.4.0',
82+
LIB_VERSION = '2.4.2',
8383
SNIPPET_VERSION = (mixpanel && mixpanel['__SV']) || 0,
8484

8585
// http://hacks.mozilla.org/2009/07/cross-site-xmlhttprequest-with-cors/
@@ -2250,7 +2250,7 @@ Globals should be all caps
22502250

22512251
// set defaults
22522252
properties = properties || {};
2253-
properties['token'] = properties.token || this.get_config('token');
2253+
properties['token'] = this.get_config('token');
22542254

22552255
// update cookie
22562256
this['cookie'].update_search_keyword(document.referrer);

mixpanel.min.js

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)