File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1+ ### 6.2.0 (May 1, 2020)
2+ * Invoke the logEvent callbacks when a request is actually sent or when we give up on sending a request.
3+ * Pass the initialized amplitude instance to the ` onInit ` callback.
4+ * Fix language validation issue that occured when language was undefined.
5+
16### 6.1.0 (April 23, 2020)
27* Use a more compact format for newly generated device IDs
38* Fix issue with react native failing to initialize metadatastorage
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Please see our [installation guide](https://amplitude.zendesk.com/hc/en-us/artic
1717[ ![ npm version] ( https://badge.fury.io/js/amplitude-js.svg )] ( https://badge.fury.io/js/amplitude-js )
1818[ ![ Bower version] ( https://badge.fury.io/bo/amplitude-js.svg )] ( https://badge.fury.io/bo/amplitude-js )
1919
20- [ 6.1 .0 - Released on April 23 , 2020] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
20+ [ 6.2 .0 - Released on May 1 , 2020] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
2121
2222
2323## JavaScript SDK Reference
Original file line number Diff line number Diff line change 11{
22 "name" : " amplitude-js" ,
33 "author" :
" Amplitude <[email protected] >" ,
4- "version" : " 6.1 .0" ,
4+ "version" : " 6.2 .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-Gy2AHb2HVvf1J0ItM7ITMckyDf0I9i7uPEmPo50aphYwVy6mw4HgQM0g1CwkBhaF ' ;
5+ as . integrity = 'sha384-RsEu4WZflrqYcEacpfoGSib3qaSvdYwT4D+DrWqeBuDarSzjwUQR1jO8gDiXZd0E ' ;
66 as . crossOrigin = 'anonymous' ;
77 as . async = true ;
8- as . src = 'https://cdn.amplitude.com/libs/amplitude-6.1 .0-min.gz.js' ;
8+ as . src = 'https://cdn.amplitude.com/libs/amplitude-6.2 .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 ) ;
You can’t perform that action at this time.
0 commit comments