Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: amplitude/Amplitude-JavaScript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.11.0
Choose a base ref
...
head repository: amplitude/Amplitude-JavaScript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.11.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 16, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    355a05b View commit details
  2. chore(release): 8.11.1 [skip ci]

    ## [8.11.1](v8.11.0...v8.11.1) (2021-11-16)
    
    ### Bug Fixes
    
    * Add missing setTransport API to snippet ([#446](#446)) ([355a05b](355a05b))
    amplitude-sdk-bot committed Nov 16, 2021
    Copy the full SHA
    4659419 View commit details
Showing with 11 additions and 3 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −1 package.json
  3. +3 −2 src/amplitude-snippet.js
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [8.11.1](https://github.com/amplitude/amplitude-javascript/compare/v8.11.0...v8.11.1) (2021-11-16)


### Bug Fixes

* Add missing setTransport API to snippet ([#446](https://github.com/amplitude/amplitude-javascript/issues/446)) ([355a05b](https://github.com/amplitude/amplitude-javascript/commit/355a05baad6ac15b68cfe51ff95b28aff04850d0))

# [8.11.0](https://github.com/amplitude/amplitude-javascript/compare/v8.10.0...v8.11.0) (2021-11-16)


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.11.0",
"version": "8.11.1",
"license": "MIT",
"description": "Javascript library for Amplitude Analytics",
"keywords": [
5 changes: 3 additions & 2 deletions src/amplitude-snippet.js
Original file line number Diff line number Diff line change
@@ -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-4rr7CTymHc64YjTTL6O3ktfsHYI1yJnQdmKv4zFoe+frjXb05MfzzuLLIAgJ/XHs';
as.integrity = 'sha384-OKNHERsoFg8uHoGv+uLhuReE0PmPEmiaj4E39zD2+o7k+P9ztplFt/BQ4OuQvI6J';
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.11.0-min.gz.js';
as.src = 'https://cdn.amplitude.com/libs/amplitude-8.11.1-min.gz.js';
as.onload = function () {
if (!window.amplitude.runQueuedFunctions) {
console.log('[Amplitude] Error: could not load SDK');
@@ -80,6 +80,7 @@
'setSessionId',
'resetSessionId',
'setLibrary',
'setTransport',
];
function setUpProxy(instance) {
function proxyMain(fn) {