Skip to content

Commit

Permalink
chore(release): 8.21.6 [skip ci]
Browse files Browse the repository at this point in the history
## [8.21.6](v8.21.5...v8.21.6) (2023-03-07)

### Bug Fixes

* skip top domain when cookie is disabled ([#580](#580)) ([a9ff324](a9ff324))
  • Loading branch information
amplitude-sdk-bot committed Mar 7, 2023
1 parent a9ff324 commit 1b2fa0f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [8.21.6](https://github.com/amplitude/amplitude-javascript/compare/v8.21.5...v8.21.6) (2023-03-07)


### Bug Fixes

* skip top domain when cookie is disabled ([#580](https://github.com/amplitude/amplitude-javascript/issues/580)) ([a9ff324](https://github.com/amplitude/amplitude-javascript/commit/a9ff3247829bba9fccb60dcf83337809e83f1c04))

## [8.21.5](https://github.com/amplitude/amplitude-javascript/compare/v8.21.4...v8.21.5) (2023-02-16)


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.5",
"version": "8.21.6",
"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-z1lEgTAEHoRlV9nEGObR5P3JwUdQpR/QClJkxu4a98x9S7ovuD0L3x4AzhVEfNZ+';
as.integrity = 'sha384-/fergcq2ihqjH4RAcCAaUKH+Gl6Qa2F/X+b6Z00PAXRg1IffkDgBX/eJQjCKIDFh';
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.5-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.21.6-min.gz.js';
as.onload = function () {
if (!window.amplitude.runQueuedFunctions) {
console.log('[Amplitude] Error: could not load SDK');
Expand Down

0 comments on commit 1b2fa0f

Please sign in to comment.