Skip to content

Commit

Permalink
chore(release): 8.21.5 [skip ci]
Browse files Browse the repository at this point in the history
## [8.21.5](v8.21.4...v8.21.5) (2023-02-16)

### Bug Fixes

* wait to create cookie storage based on user options in init() ([#579](#579)) ([a682c5b](a682c5b))
  • Loading branch information
amplitude-sdk-bot committed Feb 16, 2023
1 parent a682c5b commit 04ed78d
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.5](https://github.com/amplitude/amplitude-javascript/compare/v8.21.4...v8.21.5) (2023-02-16)


### Bug Fixes

* wait to create cookie storage based on user options in init() ([#579](https://github.com/amplitude/amplitude-javascript/issues/579)) ([a682c5b](https://github.com/amplitude/amplitude-javascript/commit/a682c5bb3511b1a65e063cc665ac4cfd9446a6c8))

## [8.21.4](https://github.com/amplitude/amplitude-javascript/compare/v8.21.3...v8.21.4) (2023-01-18)


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

0 comments on commit 04ed78d

Please sign in to comment.