From 1e8fe6a0d7b5c84a3f67ad4d6a05ddaa8d1229ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 7 Apr 2016 09:21:38 +0200 Subject: [PATCH] 3.0.0-alpha.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Partition by foreign key for pagination (Raymond Feng) * Fix style errors (Raymond Feng) * fix remaining eslint issues (Miroslav Bajtoš) * eslint --fix (Miroslav Bajtoš) * Add eslint as "npm run lint" and "posttest" hook (Miroslav Bajtoš) * Remove unused support/ files (Miroslav Bajtoš) * Insert copyright headers (Ryan Graham) * Relicense as MIT only (Ryan Graham) * Fix Mongo compatibility issue (Amir Jafarian) * Add automigrate to setup tables for replace test cases (Amir Jafarian) * Allow test folder to be published (Amir Jafarian) * support custom field settings under the connector's namespace (bitmage) * Update error message for missing connector (gunjpan) * Fix tests for mysql (Amir Jafarian) * Add forgotten unit test (Miroslav Bajtoš) * fix nin support for in memory datasource (Horia Radu) * Improve error message on connector init error (Miroslav Bajtoš) * discoverSchemas returns an error when modelName is not found, discoverSchema forwards that error and does not hang when no columns, no errors are returned (bitmage) --- CHANGES.md | 40 ++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c64edaff2..1bb64a365 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,43 @@ +2016-04-07, Version 3.0.0-alpha.4 +================================= + + * Partition by foreign key for pagination (Raymond Feng) + + * Fix style errors (Raymond Feng) + + * fix remaining eslint issues (Miroslav Bajtoš) + + * eslint --fix (Miroslav Bajtoš) + + * Add eslint as "npm run lint" and "posttest" hook (Miroslav Bajtoš) + + * Remove unused support/ files (Miroslav Bajtoš) + + * Insert copyright headers (Ryan Graham) + + * Relicense as MIT only (Ryan Graham) + + * Fix Mongo compatibility issue (Amir Jafarian) + + * Add automigrate to setup tables for replace test cases (Amir Jafarian) + + * Allow test folder to be published (Amir Jafarian) + + * support custom field settings under the connector's namespace (bitmage) + + * Update error message for missing connector (gunjpan) + + * Fix tests for mysql (Amir Jafarian) + + * Add forgotten unit test (Miroslav Bajtoš) + + * fix nin support for in memory datasource (Horia Radu) + + * Improve error message on connector init error (Miroslav Bajtoš) + + * discoverSchemas returns an error when modelName is not found, discoverSchema forwards that error and does not hang when no columns, no errors are returned (bitmage) + + 2016-02-22, Version 3.0.0-alpha.3 ================================= diff --git a/package.json b/package.json index 3fde290c9..a185920f3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "loopback-datasource-juggler", - "version": "3.0.0-alpha.3", + "version": "3.0.0-alpha.4", "publishConfig": { "tag": "next", "export-tests": true