Skip to content

Commit 88f3583

Browse files
chore(release): 7.3.3 [skip ci]
## [7.3.3](v7.3.2...v7.3.3) (2020-11-12) ### Bug Fixes * **validation:** Be able to take in and validate null object event/user properties ([1ed41a3](1ed41a3))
1 parent b2a0da9 commit 88f3583

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [7.3.3](https://github.com/amplitude/amplitude-javascript/compare/v7.3.2...v7.3.3) (2020-11-12)
2+
3+
4+
### Bug Fixes
5+
6+
* **validation:** Be able to take in and validate null object event/user properties ([1ed41a3](https://github.com/amplitude/amplitude-javascript/commit/1ed41a3d7713c3930db0d1bffb54f9d8693b46b5))
7+
18
## [7.3.2](https://github.com/amplitude/amplitude-javascript/compare/v7.3.1...v7.3.2) (2020-11-05)
29

310

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": "7.3.2",
4+
"version": "7.3.3",
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-jKvd3wo7GNJMYGHsLuOhgS5AKkxB4UvWfK8HeyoXuqBXNEqKp6g0yK8TXUx/Kuot';
12+
as.integrity = 'sha384-BFhCFljbuMkiF3EzVMjFk+zh1dxo9ckGpYDTPLhKibORvR5LPenaPdnGFD9VNZJr';
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-7.3.2-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.3.3-min.gz.js';
1717
as.onload = function() {if(!window.amplitude.runQueuedFunctions) {console.log('[Amplitude] Error: could not load SDK');}};
1818
var s = document.getElementsByTagName('script')[0];
1919
s.parentNode.insertBefore(as, s);

0 commit comments

Comments
 (0)