Skip to content

Commit 2b69a4f

Browse files
committed
v7.1.1
1 parent 16d017f commit 2b69a4f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 7.1.1 (August 26, 2020)
2+
* Fix an issue with detection of whether or not cookies are enabled on a device
3+
14
### 7.1.0 (Jun 28, 2020)
25
* Sync with upstream ua-parser to detect more browsers and devices
36
* Fix race condition where the SDK might write to the wrong cookie domain

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": "7.1.0",
4+
"version": "7.1.1",
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
@@ -8,10 +8,10 @@
88
var amplitude = window.amplitude || {'_q':[],'_iq':{}};
99
var as = document.createElement('script');
1010
as.type = 'text/javascript';
11-
as.integrity = 'sha384-cukXwabQy+j/QA1+RqiXSzxhgQg5Rrn3zVszlwH3pWj/bXJxlA8Ge7NhcD6vP2Ik';
11+
as.integrity = 'sha384-+EOJUyXoWkQo2G0XTc+u2DOlZkrMUcc5yOqCuE2XHRnytSyqpFQSbgFZAlGmjpLI';
1212
as.crossOrigin = 'anonymous';
1313
as.async = true;
14-
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.1.0-min.gz.js';
14+
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.1.1-min.gz.js';
1515
as.onload = function() {if(!window.amplitude.runQueuedFunctions) {console.log('[Amplitude] Error: could not load SDK');}};
1616
var s = document.getElementsByTagName('script')[0];
1717
s.parentNode.insertBefore(as, s);

0 commit comments

Comments
 (0)