File tree Expand file tree Collapse file tree 5 files changed +10
-27
lines changed
Expand file tree Collapse file tree 5 files changed +10
-27
lines changed Original file line number Diff line number Diff line change 1+ ### 6.1.0 (April 23, 2020)
2+ * Use a more compact format for newly generated device IDs
3+ * Fix issue with react native failing to initialize metadatastorage
4+
15### 6.0.1 (April 17, 2020)
6+ * Fix issue where the umd module did not build.
7+
28### 6.0.0 (April 17, 2020)
39* Use a more compact cookie format
410* Fix issue where a cookie key could have a space appear inside of it
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Please see our [installation guide](https://amplitude.zendesk.com/hc/en-us/artic
1818[ ![ npm version] ( https://badge.fury.io/js/amplitude-js.svg )] ( https://badge.fury.io/js/amplitude-js )
1919[ ![ Bower version] ( https://badge.fury.io/bo/amplitude-js.svg )] ( https://badge.fury.io/bo/amplitude-js )
2020
21- [ 6.0.1 - Released on April 17 , 2020] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
21+ [ 6.1.0 - Released on April 23 , 2020] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
2222
2323
2424# JavaScript SDK Reference #
Original file line number Diff line number Diff line change 11{
22 "name" : " amplitude-js" ,
33 "author" : " Amplitude <support@amplitude.com>" ,
4- "version" : " 6.0.1 " ,
4+ "version" : " 6.1.0 " ,
55 "license" : " MIT" ,
66 "description" : " Javascript library for Amplitude Analytics" ,
77 "keywords" : [
Original file line number Diff line number Diff line change 22 var amplitude = window . amplitude || { '_q' :[ ] , '_iq' :{ } } ;
33 var as = document . createElement ( 'script' ) ;
44 as . type = 'text/javascript' ;
5- as . integrity = 'sha384-35+p+zAMRt40eCQKk1/Xowd25miK7ZUBRbn6ikyGdVMfY6iKSyDDJwxFc9z4+HhF ' ;
5+ as . integrity = 'sha384-Gy2AHb2HVvf1J0ItM7ITMckyDf0I9i7uPEmPo50aphYwVy6mw4HgQM0g1CwkBhaF ' ;
66 as . crossOrigin = 'anonymous' ;
77 as . async = true ;
8- as . src = 'https://cdn.amplitude.com/libs/amplitude-6.0.1 -min.gz.js' ;
8+ as . src = 'https://cdn.amplitude.com/libs/amplitude-6.1.0 -min.gz.js' ;
99 as . onload = function ( ) { if ( ! window . amplitude . runQueuedFunctions ) { console . log ( '[Amplitude] Error: could not load SDK' ) ; } } ;
1010 var s = document . getElementsByTagName ( 'script' ) [ 0 ] ;
1111 s . parentNode . insertBefore ( as , s ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments