File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change
1
+ ### 5.7.0 (November 22, 2019)
2
+ * Namespace AsyncStorage with api key to prevent cross domain contamination
3
+
1
4
### 5.6.0 (October 21, 2019)
2
5
3
6
* Drop esm module from package.json to prevent it from being the default build.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Please see our [installation guide](https://amplitude.zendesk.com/hc/en-us/artic
11
11
[ ![ npm version] ( https://badge.fury.io/js/amplitude-js.svg )] ( https://badge.fury.io/js/amplitude-js )
12
12
[ ![ Bower version] ( https://badge.fury.io/bo/amplitude-js.svg )] ( https://badge.fury.io/bo/amplitude-js )
13
13
14
- [ 5.6 .0 - Released on October 21 , 2019] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
14
+ [ 5.7 .0 - Released on November 22 , 2019] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
15
15
16
16
17
17
# JavaScript SDK Reference #
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " amplitude-js" ,
3
3
"author" :
" Amplitude <[email protected] >" ,
4
- "version" : " 5.6 .0" ,
4
+ "version" : " 5.7 .0" ,
5
5
"license" : " MIT" ,
6
6
"description" : " Javascript library for Amplitude Analytics" ,
7
7
"keywords" : [
Original file line number Diff line number Diff line change 2
2
var amplitude = window . amplitude || { '_q' :[ ] , '_iq' :{ } } ;
3
3
var as = document . createElement ( 'script' ) ;
4
4
as . type = 'text/javascript' ;
5
- as . integrity = 'sha384-t5vT47el2d0e6uQ1h75P9Lbzo8by6pbk+Rg41Gm4xuTGR+eDLpbWslKUtZMDe9Bj ' ;
5
+ as . integrity = 'sha384-rSEVPt+HsYVwBs0EY4dB3fOcSZOW9cbAQV2CqsLFDjNbdiNyoXcGruquK0IyWxAZ ' ;
6
6
as . crossOrigin = 'anonymous' ;
7
7
as . async = true ;
8
- as . src = 'https://cdn.amplitude.com/libs/amplitude-5.6 .0-min.gz.js' ;
8
+ as . src = 'https://cdn.amplitude.com/libs/amplitude-5.7 .0-min.gz.js' ;
9
9
as . onload = function ( ) { if ( ! window . amplitude . runQueuedFunctions ) { console . log ( '[Amplitude] Error: could not load SDK' ) ; } } ;
10
10
var s = document . getElementsByTagName ( 'script' ) [ 0 ] ;
11
11
s . parentNode . insertBefore ( as , s ) ;
You can’t perform that action at this time.
0 commit comments