Skip to content
This repository has been archived by the owner on Feb 5, 2019. It is now read-only.

Commit

Permalink
Upgrade mixpanel version (#13)
Browse files Browse the repository at this point in the history
* Upgrade mixpanel version

* v2.1.0

* Bump version

* Changelog version

* update webtask.json
  • Loading branch information
FadyMak authored and shawnmclean committed Sep 26, 2018
1 parent b0f67c8 commit b23c844
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## [2.1.0] - 2018-09-19

- Update `mixpanel` dependency to version 0.9.2
2 changes: 1 addition & 1 deletion build/bundle.js

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions build/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@ const path = require('path');
const gulp = require('gulp');
const open = require('open');
const ngrok = require('ngrok');
const wormhole = require('wormhole');
const util = require('gulp-util');
const nodemon = require('gulp-nodemon');

gulp.task('run', () => {
ngrok.connect(3000, (ngrokError, url) => {
if (ngrokError) {
throw ngrokError;
const tunnel = process.env.WORMHOLE_REMOTE_HOST ? wormhole : ngrok;

tunnel.connect(3000, (error, url) => {
if (error) {
throw error;
}

nodemon({
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "auth0-logs-to-mixpanel",

"version": "2.0.1",
"preVersion": "1.4.2",
"version": "2.1.0",
"preVersion": "2.0.1",
"description": "This extension will take all of your Auth0 logs and export them to Mixpanel.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -41,7 +40,7 @@
"lodash@3.10.1",
"lru-cache@2.6.4",
"mime-db@1.10.0",
"mixpanel@0.4.0",
"mixpanel@0.9.2",
"moment@2.10.3",
"morgan@1.5.3",
"ms@0.7.1",
Expand Down Expand Up @@ -94,7 +93,7 @@
"jwt-decode": "^2.1.0",
"lodash": "3.10.1",
"lru-memoizer": "^1.6.0",
"mixpanel": "^0.4.1",
"mixpanel": "^0.9.2",
"moment": "^2.13.0",
"morgan": "^1.7.0",
"nconf": "^0.8.4",
Expand Down Expand Up @@ -168,6 +167,7 @@
"webpack-hot-middleware": "^2.10.0",
"webpack-sources": "^0.1.2",
"webpack-stats-plugin": "^0.1.1",
"webtask-bundle": "^2.1.1"
"webtask-bundle": "^2.1.1",
"wormhole": "auth0/wormhole"
}
}
3 changes: 2 additions & 1 deletion webtask.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"title": "Auth0 Logs to Mixpanel",
"name": "auth0-logs-to-mixpanel",
"version": "2.0.1",
"version": "2.1.0",
"preVersion": "2.0.1",
"author": "auth0",
"description": "This extension will take all of your Auth0 logs and export them to Mixpanel",
"type": "cron",
Expand Down
14 changes: 10 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4470,7 +4470,7 @@ https-browserify@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82"

https-proxy-agent@^2.2.1:
https-proxy-agent@2.2.1, https-proxy-agent@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0"
dependencies:
Expand Down Expand Up @@ -5987,9 +5987,11 @@ mixin-object@^2.0.1:
for-in "^0.1.3"
is-extendable "^0.1.1"

mixpanel@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/mixpanel/-/mixpanel-0.4.1.tgz#0e92ee336fb89a164f54830f093c9cae8517fb8f"
mixpanel@^0.9.2:
version "0.9.2"
resolved "https://registry.yarnpkg.com/mixpanel/-/mixpanel-0.9.2.tgz#b71c78e8914cb2c334e359673b1917740aa4d4ef"
dependencies:
https-proxy-agent "2.2.1"

mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
version "0.5.1"
Expand Down Expand Up @@ -9953,6 +9955,10 @@ worker-farm@^1.5.2:
dependencies:
errno "~0.1.7"

wormhole@auth0/wormhole:
version "1.0.0"
resolved "https://codeload.github.com/auth0/wormhole/tar.gz/d30ab3ddb7faf02fcf48cdf80f0fea8a57e3f9a6"

wrap-ansi@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
Expand Down

0 comments on commit b23c844

Please sign in to comment.