From b7541c1a7e80c18a001fc796ae4695336f703773 Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Tue, 3 Mar 2015 11:14:55 -0800 Subject: [PATCH] 2.14.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Replace deprecated hooks with Operation hooks (Miroslav Bajtoš) * test: don't warn about running deprecated paths (Miroslav Bajtoš) * karma conf: prevent timeouts on Travis CI (Miroslav Bajtoš) * Pass options from User.login to createAccessToken (Raymond Feng) * Config option to disable legacy explorer routes Setting legacyExplorer to false in the loopback config will disable the routes /routes and /models made available in loopback.rest. The deprecate module has been added to the project with a reference added for the legacyExplorer option as it is no longer required by loopback-explorer. Tests added to validate functionality of disabled and enabled legacy explorer routes. (Ron Edgecomb) * test: setup GUID for all models tracking changes (Miroslav Bajtoš) * Change tracking requires a string id set to GUID (Miroslav Bajtoš) --- CHANGES.md | 18 ++++++++++++++++++ package.json | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1916ebd8..8d9b96b6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,21 @@ +2015-03-03, Version 2.14.0 +========================== + + * Replace deprecated hooks with Operation hooks (Miroslav Bajtoš) + + * test: don't warn about running deprecated paths (Miroslav Bajtoš) + + * karma conf: prevent timeouts on Travis CI (Miroslav Bajtoš) + + * Pass options from User.login to createAccessToken (Raymond Feng) + + * Config option to disable legacy explorer routes Setting legacyExplorer to false in the loopback config will disable the routes /routes and /models made available in loopback.rest. The deprecate module has been added to the project with a reference added for the legacyExplorer option as it is no longer required by loopback-explorer. Tests added to validate functionality of disabled and enabled legacy explorer routes. (Ron Edgecomb) + + * test: setup GUID for all models tracking changes (Miroslav Bajtoš) + + * Change tracking requires a string id set to GUID (Miroslav Bajtoš) + + 2015-02-25, Version 2.13.0 ========================== diff --git a/package.json b/package.json index b0196f31..c427bfe4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "loopback", - "version": "2.13.0", + "version": "2.14.0", "description": "LoopBack: Open Source Framework for Node.js", "homepage": "http://loopback.io", "keywords": [ @@ -103,6 +103,6 @@ "url": "https://github.com/strongloop/loopback/blob/master/LICENSE" }, "optionalDependencies": { - "sl-blip": "http://blip.strongloop.com/loopback@2.13.0" + "sl-blip": "http://blip.strongloop.com/loopback@2.14.0" } }