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: peaksandpies/universal-analytics
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0846ead22359690362e7b6515067f83ec96e90d0
Choose a base ref
...
head repository: peaksandpies/universal-analytics
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bb7abdd28760a03cc98a9862ad4e68ae6e5f9240
Choose a head ref
  • 6 commits
  • 17 files changed
  • 2 contributors

Commits on Oct 25, 2018

  1. Version 0.4.19

    jtillmann committed Oct 25, 2018
    Copy the full SHA
    127aa72 View commit details
  2. Version 0.4.20

    jtillmann committed Oct 25, 2018
    Copy the full SHA
    e534517 View commit details

Commits on May 5, 2020

  1. Upgrade package versions

    beeman committed May 5, 2020
    Copy the full SHA
    859bc37 View commit details
  2. Copy the full SHA
    fe696ff View commit details

Commits on Jul 2, 2020

  1. Merge pull request #144 from beeman/beeman/dependencies

    Upgrade package versions, replace `request` with `native-request`
    jtillmann authored Jul 2, 2020
    Copy the full SHA
    aa8a790 View commit details
  2. Version 0.4.21

    jtillmann committed Jul 2, 2020
    Copy the full SHA
    bb7abdd View commit details
Showing with 1,035 additions and 682 deletions.
  1. +12 −1 HISTORY.md
  2. +1 −1 lib/index.js
  3. +992 −650 package-lock.json
  4. +7 −7 package.json
  5. +3 −0 test/.mocharc.yml
  6. +1 −1 test/_enqueue.js
  7. +2 −2 test/event.js
  8. +2 −2 test/exception.js
  9. +3 −3 test/index.js
  10. +2 −2 test/item.js
  11. +1 −1 test/middleware.js
  12. +0 −3 test/mocha.opts
  13. +2 −2 test/pageview.js
  14. +1 −1 test/send.js
  15. +2 −2 test/set.js
  16. +2 −2 test/timing.js
  17. +2 −2 test/transaction.js
13 changes: 12 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# History

## 0.4.21

- Upgraded request to native-request

## 0.4.20

- Maintenance release

## 0.4.19

- Updated request package

## 0.4.18

- Fixed package-lock.json bug
- Updated request package

## 0.4.17

2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

var request = require("request");
var request = require("native-request");
var uuid = require("uuid");
var querystring = require("querystring");

Loading