Skip to content

Commit 064944c

Browse files
chore(release): 8.16.0 [skip ci]
# [8.16.0](v8.15.1...v8.16.0) (2022-01-21) ### Bug Fixes * catch errors with Request.send ([#490](#490)) ([333f8a4](333f8a4)) ### Features * accept custom session id paramter in config ([#485](#485)) ([b64b8b0](b64b8b0)) * allow cors header to be excluded from request headers ([#489](#489)) ([0119ac7](0119ac7))
1 parent 2c31cb0 commit 064944c

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [8.16.0](https://github.com/amplitude/amplitude-javascript/compare/v8.15.1...v8.16.0) (2022-01-21)
2+
3+
4+
### Bug Fixes
5+
6+
* catch errors with Request.send ([#490](https://github.com/amplitude/amplitude-javascript/issues/490)) ([333f8a4](https://github.com/amplitude/amplitude-javascript/commit/333f8a4b6dca512c7c57e64ef2d6072020e5debd))
7+
8+
9+
### Features
10+
11+
* accept custom session id paramter in config ([#485](https://github.com/amplitude/amplitude-javascript/issues/485)) ([b64b8b0](https://github.com/amplitude/amplitude-javascript/commit/b64b8b0d0619c5f749e71dca45773d7c869631bb))
12+
* allow cors header to be excluded from request headers ([#489](https://github.com/amplitude/amplitude-javascript/issues/489)) ([0119ac7](https://github.com/amplitude/amplitude-javascript/commit/0119ac7b92ba969e70189a6d212e7092e9e27818))
13+
114
## [8.15.1](https://github.com/amplitude/amplitude-javascript/compare/v8.15.0...v8.15.1) (2022-01-18)
215

316

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.15.1",
4+
"version": "8.16.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-ZSWQxGy+r85AnmSJi9kNpGJispc8WL7VYKr8OqFLNuRUsvsiQ+uxLfqtsCCC+goD';
12+
as.integrity = 'sha384-G5p3YHHIMhqDroi1wiIRIEJZZCcdNsFWb90cB5FCjJEkCV1NN5gal4aaJRDHU6Qy';
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.15.1-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.16.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)