Skip to content

Commit d423824

Browse files
chore(release): 8.18.2 [skip ci]
## [8.18.2](v8.18.1...v8.18.2) (2022-05-12) ### Bug Fixes * assign domain after cookie storage options are given ([#528](#528)) ([2440e9a](2440e9a)) * fix perms for github token in release workflow ([#532](#532)) ([195c6ef](195c6ef)) * fix release work flow perms to include write access to contents ([#533](#533)) ([c8845ca](c8845ca)) * replace String.prototype.includes with String.prototype.indexOf ([#530](#530)) ([b0992f8](b0992f8)) * update analytics connector 1.4.2 ([#531](#531)) ([fba43bf](fba43bf))
1 parent c8845ca commit d423824

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [8.18.2](https://github.com/amplitude/amplitude-javascript/compare/v8.18.1...v8.18.2) (2022-05-12)
2+
3+
4+
### Bug Fixes
5+
6+
* assign domain after cookie storage options are given ([#528](https://github.com/amplitude/amplitude-javascript/issues/528)) ([2440e9a](https://github.com/amplitude/amplitude-javascript/commit/2440e9a0309236a27bd639ced87b2d2187d2d48b))
7+
* fix perms for github token in release workflow ([#532](https://github.com/amplitude/amplitude-javascript/issues/532)) ([195c6ef](https://github.com/amplitude/amplitude-javascript/commit/195c6ef158ec3d81b3a9308988f2aec6e19f7ffb))
8+
* fix release work flow perms to include write access to contents ([#533](https://github.com/amplitude/amplitude-javascript/issues/533)) ([c8845ca](https://github.com/amplitude/amplitude-javascript/commit/c8845caec66b12d954ebb0ddeb2aa4e2d8dc29b8))
9+
* replace String.prototype.includes with String.prototype.indexOf ([#530](https://github.com/amplitude/amplitude-javascript/issues/530)) ([b0992f8](https://github.com/amplitude/amplitude-javascript/commit/b0992f818e5986985a62f8c2b178729c805d4060))
10+
* update analytics connector 1.4.2 ([#531](https://github.com/amplitude/amplitude-javascript/issues/531)) ([fba43bf](https://github.com/amplitude/amplitude-javascript/commit/fba43bfe55cc50a80cdbb83dd3616cc3392007c4))
11+
112
## [8.18.1](https://github.com/amplitude/amplitude-javascript/compare/v8.18.0...v8.18.1) (2022-04-06)
213

314

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.18.1",
4+
"version": "8.18.2",
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-VuGgAcmMrGHihvjXxxBVMIqoDFXc8/PO9q/08kCgq4Wn1iPnSmUbI3xhXaFozVFv';
12+
as.integrity = 'sha384-piO8kfwxl9OAS2doXzmrLEai7u7SSevgU0P09hOnRm8ZjFfhZbHCudfgSxdTMd/s';
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.18.1-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.18.2-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)