File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ### 7.1.1 (August 26, 2020)
2
+ * Fix an issue with detection of whether or not cookies are enabled on a device
3
+
1
4
### 7.1.0 (Jun 28, 2020)
2
5
* Sync with upstream ua-parser to detect more browsers and devices
3
6
* Fix race condition where the SDK might write to the wrong cookie domain
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" : " 7.1.0 " ,
4
+ "version" : " 7.1.1 " ,
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 8
8
var amplitude = window . amplitude || { '_q' :[ ] , '_iq' :{ } } ;
9
9
var as = document . createElement ( 'script' ) ;
10
10
as . type = 'text/javascript' ;
11
- as . integrity = 'sha384-cukXwabQy+j/QA1+RqiXSzxhgQg5Rrn3zVszlwH3pWj/bXJxlA8Ge7NhcD6vP2Ik ' ;
11
+ as . integrity = 'sha384-+EOJUyXoWkQo2G0XTc+u2DOlZkrMUcc5yOqCuE2XHRnytSyqpFQSbgFZAlGmjpLI ' ;
12
12
as . crossOrigin = 'anonymous' ;
13
13
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' ;
15
15
as . onload = function ( ) { if ( ! window . amplitude . runQueuedFunctions ) { console . log ( '[Amplitude] Error: could not load SDK' ) ; } } ;
16
16
var s = document . getElementsByTagName ( 'script' ) [ 0 ] ;
17
17
s . parentNode . insertBefore ( as , s ) ;
You can’t perform that action at this time.
0 commit comments