Skip to content

Commit e4b5e83

Browse files
chore(release): 8.21.4 [skip ci]
## [8.21.4](v8.21.3...v8.21.4) (2023-01-18) ### Bug Fixes * remove events when 200, no need to check response ([#572](#572)) ([5b52d16](5b52d16)) * upgrade dependencies to resolve dependabot vulnerability alerts ([#567](#567)) ([9207b46](9207b46))
1 parent 48df749 commit e4b5e83

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [8.21.4](https://github.com/amplitude/amplitude-javascript/compare/v8.21.3...v8.21.4) (2023-01-18)
2+
3+
4+
### Bug Fixes
5+
6+
* remove events when 200, no need to check response ([#572](https://github.com/amplitude/amplitude-javascript/issues/572)) ([5b52d16](https://github.com/amplitude/amplitude-javascript/commit/5b52d166a077ff1ba27395d749f42bfc3097625d))
7+
* upgrade dependencies to resolve dependabot vulnerability alerts ([#567](https://github.com/amplitude/amplitude-javascript/issues/567)) ([9207b46](https://github.com/amplitude/amplitude-javascript/commit/9207b466b4998a6cc48a587a59530eaf5f896d7f))
8+
19
## [8.21.3](https://github.com/amplitude/amplitude-javascript/compare/v8.21.2...v8.21.3) (2022-12-09)
210

311

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": "8.21.3",
4+
"version": "8.21.4",
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
@@ -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-IPwZ5XfZ1WR50aTLVzfrheIeMsgo+FhR/m0oOZBZnx+vCJJ1Ldy2nKao2TRDtg8s';
12+
as.integrity = 'sha384-5fhzC8Xw3m+x5cBag4AMKRdf900vw3AoaLty2vYfcKIX1iEsYRHZF4RLXIsu2o+F';
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.21.3-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.21.4-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)