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
+
1
5
### 6.0.1 (April 17, 2020)
6
+ * Fix issue where the umd module did not build.
7
+
2
8
### 6.0.0 (April 17, 2020)
3
9
* Use a more compact cookie format
4
10
* 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
18
18
[ ![ npm version] ( https://badge.fury.io/js/amplitude-js.svg )] ( https://badge.fury.io/js/amplitude-js )
19
19
[ ![ Bower version] ( https://badge.fury.io/bo/amplitude-js.svg )] ( https://badge.fury.io/bo/amplitude-js )
20
20
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 )
22
22
23
23
24
24
# 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" : " 6.0.1 " ,
4
+ "version" : " 6.1.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-35+p+zAMRt40eCQKk1/Xowd25miK7ZUBRbn6ikyGdVMfY6iKSyDDJwxFc9z4+HhF ' ;
5
+ as . integrity = 'sha384-Gy2AHb2HVvf1J0ItM7ITMckyDf0I9i7uPEmPo50aphYwVy6mw4HgQM0g1CwkBhaF ' ;
6
6
as . crossOrigin = 'anonymous' ;
7
7
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' ;
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 ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments