File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change
1
+ ### 5.5.0 (October 9, 2019)
2
+
3
+ * Fix bug where optOut settings would be overridden by cookie loading
4
+ * Fix initialization bugs introduced by removing legacy data migration code.
5
+ * Use ` @react-native-community/async-storage ` instead of the deprecated ` AsyncStorage ` .
6
+ * Pull react-native device identifier from device info when possible
7
+ * Pull react-native unsent events from async storage
8
+
1
9
### 5.4.2 (October 1, 2019)
2
10
3
11
* Fix issues with react native device identification
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.4.2 - Released on October 1 , 2019] ( https://github.com/amplitude/Amplitude-JavaScript/releases/latest )
14
+ [ 5.5.0 - Released on October 9 , 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.4.2 " ,
4
+ "version" : " 5.5.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-qtXXo+BXbX4/x621hgrxkj1F9GJ+GhvAcFn1lg9vY1NuhksFrNQ3LCPFCd5kED5p ' ;
5
+ as . integrity = 'sha384-Dkbrd8ba0i/tDtA3AVvSIGmmbx0dfA26Pyyt3tsklN9V1ZcQfI3RxntMWPyHSnWt ' ;
6
6
as . crossOrigin = 'anonymous' ;
7
7
as . async = true ;
8
- as . src = 'https://cdn.amplitude.com/libs/amplitude-5.4.2 -min.gz.js' ;
8
+ as . src = 'https://cdn.amplitude.com/libs/amplitude-5.5.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