File tree Expand file tree Collapse file tree 7 files changed +8
-6
lines changed
Expand file tree Collapse file tree 7 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -16,3 +16,4 @@ amplitude.native.js
1616amplitude-segment-snippet.min.js
1717.watchmanconfig
1818package-lock.json
19+ amplitude.umd.js
Original file line number Diff line number Diff line change 1+ ### 6.0.1 (April 17, 2020)
12### 6.0.0 (April 17, 2020)
23* Use a more compact cookie format
34* Fix issue where a cookie key could have a space appear inside of it
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ README.md: $(SNIPPET_OUT) version
6464# Target for `amplitude.js` file.
6565#
6666
67- $(OUT ) : node_modules $(SRC ) package.json rollup.config.js rollup.min.js rollup.native.js rollup.esm.js
67+ $(OUT ) : node_modules $(SRC ) package.json rollup.config.js rollup.min.js rollup.native.js rollup.esm.js rollup.umd.js
6868 @$(JSHINT ) --verbose $(SRC )
6969 @NODE_ENV=production $(ROLLUP ) --config rollup.config.js
7070 @NODE_ENV=production $(ROLLUP ) --config rollup.esm.js
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.0 - Released on April 17, 2020] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
21+ [ 6.0.1 - Released on April 17, 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.0 " ,
4+ "version" : " 6.0.1 " ,
55 "license" : " MIT" ,
66 "description" : " Javascript library for Amplitude Analytics" ,
77 "keywords" : [
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export default {
88 input : 'src/index.js' ,
99 output : {
1010 name : 'amplitude' ,
11- file : 'amplitude.js' ,
11+ file : 'amplitude.umd. js' ,
1212 format : 'umd' ,
1313 amd : {
1414 id : 'amplitude' ,
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-JuTNYkgKcv1YWHTHxD083VG16UGvE0QIORVstsbIKtGUBrB1ldQRU9eyEZEreszu ' ;
5+ as . integrity = 'sha384-35+p+zAMRt40eCQKk1/Xowd25miK7ZUBRbn6ikyGdVMfY6iKSyDDJwxFc9z4+HhF ' ;
66 as . crossOrigin = 'anonymous' ;
77 as . async = true ;
8- as . src = 'https://cdn.amplitude.com/libs/amplitude-6.0.0 -min.gz.js' ;
8+ as . src = 'https://cdn.amplitude.com/libs/amplitude-6.0.1 -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