Skip to content

Commit

Permalink
chore(release): 8.21.4 [skip ci]
Browse files Browse the repository at this point in the history
## [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))
  • Loading branch information
amplitude-sdk-bot committed Jan 18, 2023
1 parent 48df749 commit e4b5e83
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [8.21.4](https://github.com/amplitude/amplitude-javascript/compare/v8.21.3...v8.21.4) (2023-01-18)


### Bug Fixes

* 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))
* 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.21.3](https://github.com/amplitude/amplitude-javascript/compare/v8.21.2...v8.21.3) (2022-12-09)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "amplitude-js",
"author": "Amplitude <support@amplitude.com>",
"version": "8.21.3",
"version": "8.21.4",
"license": "MIT",
"description": "Javascript library for Amplitude Analytics",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/amplitude-snippet.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
var as = document.createElement('script');
as.type = 'text/javascript';
// Don't edit as.integrity, it is tracked by semantic-release-bot during releases
as.integrity = 'sha384-IPwZ5XfZ1WR50aTLVzfrheIeMsgo+FhR/m0oOZBZnx+vCJJ1Ldy2nKao2TRDtg8s';
as.integrity = 'sha384-5fhzC8Xw3m+x5cBag4AMKRdf900vw3AoaLty2vYfcKIX1iEsYRHZF4RLXIsu2o+F';
as.crossOrigin = 'anonymous';
as.async = true;
// Don't edit as.src, it is tracked by semantic-release-bot during releases
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.21.3-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.21.4-min.gz.js';
as.onload = function () {
if (!window.amplitude.runQueuedFunctions) {
console.log('[Amplitude] Error: could not load SDK');
Expand Down

0 comments on commit e4b5e83

Please sign in to comment.