From db1ad43f458706712584a7df003e8597d96a486f Mon Sep 17 00:00:00 2001 From: Dan Hough Date: Fri, 4 Dec 2015 15:33:12 +0700 Subject: [PATCH] Using the npm version of deepmerge, not my fork on gh. Exposing underlying express app as instance variable 'expressApp' --- npm-shrinkwrap.json | 2 +- package.json | 2 +- readme.md | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 012f1af..028a24d 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "interfake", - "version": "1.18.0", + "version": "1.19.0", "dependencies": { "api-easy": { "version": "0.3.8", diff --git a/package.json b/package.json index 7161154..022d6fa 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "interfake", "preferGlobal": true, - "version": "1.18.0", + "version": "1.19.0", "author": "Daniel Hough ", "description": "A simple way to create dummy APIs", "contributors": [ diff --git a/readme.md b/readme.md index 4ced5a1..88bc261 100644 --- a/readme.md +++ b/readme.md @@ -299,6 +299,7 @@ I tested this on my Mac. If you have trouble on Windows or any other platform, [ ## Version History +* 1.19.0: Using the npm version of `deepmerge`, not my fork on gh. Exposing underlying express app as instance variable `expressApp` * 1.18.0: Array support in query string params added thanks to [@roychoo](https://github.com/roychoo). Also, fixed a couple of tests which broke in Node 5.0. * 1.17.0: Regular expressions can now be specified in JSON route files and in the normal JavaScript API (`.createRoute()`) using `{ url : { pattern : '', regexp : true } }` * 1.16.0: Added automatic `OPTIONS` support for any routes specified (e.g. if `GET` has been defined then `OPTIONS` will say so. Also includes `access-control-allow-origin`)