Skip to content

Commit 217c0bb

Browse files
committed
v5.5.0
1 parent 7a4ce57 commit 217c0bb

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
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+
19
### 5.4.2 (October 1, 2019)
210

311
* Fix issues with react native device identification

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Please see our [installation guide](https://amplitude.zendesk.com/hc/en-us/artic
1111
[![npm version](https://badge.fury.io/js/amplitude-js.svg)](https://badge.fury.io/js/amplitude-js)
1212
[![Bower version](https://badge.fury.io/bo/amplitude-js.svg)](https://badge.fury.io/bo/amplitude-js)
1313

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)
1515

1616

1717
# JavaScript SDK Reference #

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "amplitude-js",
33
"author": "Amplitude <[email protected]>",
4-
"version": "5.4.2",
4+
"version": "5.5.0",
55
"license": "MIT",
66
"description": "Javascript library for Amplitude Analytics",
77
"keywords": [

src/amplitude-snippet.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
var amplitude = window.amplitude || {'_q':[],'_iq':{}};
33
var as = document.createElement('script');
44
as.type = 'text/javascript';
5-
as.integrity = 'sha384-qtXXo+BXbX4/x621hgrxkj1F9GJ+GhvAcFn1lg9vY1NuhksFrNQ3LCPFCd5kED5p';
5+
as.integrity = 'sha384-Dkbrd8ba0i/tDtA3AVvSIGmmbx0dfA26Pyyt3tsklN9V1ZcQfI3RxntMWPyHSnWt';
66
as.crossOrigin = 'anonymous';
77
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';
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);

0 commit comments

Comments
 (0)