From 45a962a8a8930ad6706372e4d770a23cd1ee777c Mon Sep 17 00:00:00 2001 From: Dannon Baker Date: Fri, 11 Jan 2019 15:01:57 -0500 Subject: [PATCH] Update proxy dependencies -- mine wouldn't build anymore with an older version of sqlite3. I'm hoping the versions I've updated to are backwards compatible in terms of compilation (seem to be in terms of functionality -- it's working for me), but I'd appreciate someone else checking. --- lib/galaxy/web/proxy/js/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/galaxy/web/proxy/js/package.json b/lib/galaxy/web/proxy/js/package.json index 46bb56e05a92..e74db4d284f9 100644 --- a/lib/galaxy/web/proxy/js/package.json +++ b/lib/galaxy/web/proxy/js/package.json @@ -11,9 +11,9 @@ "url": "https://bitbucket.org/galaxy/galaxy-central" }, "dependencies": { - "commander": "~2.14.1", - "eventemitter3": "0.1.6", - "http-proxy": "1.16.2", - "sqlite3": "3.1.13" + "commander": "~2.19.0", + "eventemitter3": "3.1.0", + "http-proxy": "1.17.0", + "sqlite3": "4.0.4" } }