From cd4fb88236eafd20fd5a53bc3114932a156583f1 Mon Sep 17 00:00:00 2001 From: Austin Burdine Date: Thu, 11 Aug 2016 01:40:51 -0600 Subject: [PATCH] deps: knex@0.11.10 (#7195) - add `useNullAsDefault` flag to sqlite test config to fix breaking sqlite builds - fixes npm install issue with lodash dependency --- config.example.js | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config.example.js b/config.example.js index 1e11478afe..2571511b42 100644 --- a/config.example.js +++ b/config.example.js @@ -96,7 +96,8 @@ config = { 'PRAGMA locking_mode=EXCLUSIVE;' + 'BEGIN EXCLUSIVE; COMMIT;', done); } - } + }, + useNullAsDefault: true }, server: { host: '127.0.0.1', diff --git a/package.json b/package.json index 3ede0cf11e..1bfa52e971 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "intl": "1.2.4", "intl-messageformat": "1.3.0", "jsonpath": "0.2.6", - "knex": "0.10.0", + "knex": "0.11.10", "lodash": "4.14.2", "moment": "2.14.1", "moment-timezone": "0.5.5",