Skip to content

Commit 230fc65

Browse files
chore(release): 8.5.0 [skip ci]
# [8.5.0](v8.4.0...v8.5.0) (2021-08-13) ### Bug Fixes * LGTM return fix for falsy str ([#416](#416)) ([f744fe7](f744fe7)) ### Features * add sendBeacon support ([#412](#412)) ([0517038](0517038))
1 parent 0517038 commit 230fc65

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [8.5.0](https://github.com/amplitude/amplitude-javascript/compare/v8.4.0...v8.5.0) (2021-08-13)
2+
3+
4+
### Bug Fixes
5+
6+
* LGTM return fix for falsy str ([#416](https://github.com/amplitude/amplitude-javascript/issues/416)) ([f744fe7](https://github.com/amplitude/amplitude-javascript/commit/f744fe7dbd02974d6e3adedf662c966a7012335d))
7+
8+
9+
### Features
10+
11+
* add sendBeacon support ([#412](https://github.com/amplitude/amplitude-javascript/issues/412)) ([0517038](https://github.com/amplitude/amplitude-javascript/commit/0517038951691a447a34a7581e9dddd86b6434bf))
12+
113
# [8.4.0](https://github.com/amplitude/amplitude-javascript/compare/v8.3.1...v8.4.0) (2021-07-30)
214

315

package.json

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

src/amplitude-snippet.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
var as = document.createElement('script');
1010
as.type = 'text/javascript';
1111
// Don't edit as.integrity, it is tracked by semantic-release-bot during releases
12-
as.integrity = 'sha384-9jIJQlEp6cEk6foaEO/N5yzaJmQbTtugbpg9l8P/javk55WlPh7fJGR1vHhyDjON';
12+
as.integrity = 'sha384-tzcaaCH5+KXD4sGaDozev6oElQhsVfbJvdi3//c2YvbY02LrNlbpGdt3Wq4rWonS';
1313
as.crossOrigin = 'anonymous';
1414
as.async = true;
1515
// Don't edit as.src, it is tracked by semantic-release-bot during releases
16-
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.4.0-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.5.0-min.gz.js';
1717
as.onload = function () {
1818
if (!window.amplitude.runQueuedFunctions) {
1919
console.log('[Amplitude] Error: could not load SDK');

0 commit comments

Comments
 (0)