From 504675fc78715f7e4bf4bb3a7ccf36125e8a4a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Fri, 5 Feb 2016 16:42:46 +0100 Subject: [PATCH] 3.0.0-alpha.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Implementtaion of replace (Amir Jafarian) * Fix conversion for `updateAttributes` (Amir Jafarian) * Prevent constructor to be property name (Jue Hou) * Revert "Change "npm test" to call mocha directly" (Miroslav Bajtoš) * Change "npm test" to call mocha directly (Hans(Zhenghan) Zhang) * Refactor `updateAttributes` (Amir Jafarian) * Update README.md (Simon Ho) * Add unit test to verify fix for #754 (Tom Kirkpatrick) * Update package.json (Janny) * Try mocha test (Janny) * Implement `findOrCreate` for memory connector (Amir Jafarian) * Fix a bug when validation is off for findOrCreate (Amir Jafarian) * Use bluebird in utils.js Replace `global.Promise` with `bluebird` (Jue Hou) * Fix broken code fencings in the docs (Farid Nouri Neshat) * Revert "Correct syntax for should and more" (Simon Ho) * Fix test for shouldjs 8.0.2 upgrade (Simon Ho) * Upgrade shouldjs to 8.0.2 (Simon Ho) * Enhance "persist" hook in DAO.updateOrCreate (Miroslav Bajtoš) * Enhance "persisted" hook in DAO.updateAttributes (Miroslav Bajtoš) * "loaded" hook in DAO.find: ctx.data, not instance (Miroslav Bajtoš) * describe-operation-hooks: add "loaded" hook (Miroslav Bajtoš) --- CHANGES.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++---- package.json | 2 +- 2 files changed, 49 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e0d9bdf7..8cdb31a6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,49 @@ +2016-02-05, Version 3.0.0-alpha.2 +================================= + + * Implementtaion of replace (Amir Jafarian) + + * Fix conversion for `updateAttributes` (Amir Jafarian) + + * Prevent constructor to be property name (Jue Hou) + + * Revert "Change "npm test" to call mocha directly" (Miroslav Bajtoš) + + * Change "npm test" to call mocha directly (Hans(Zhenghan) Zhang) + + * Refactor `updateAttributes` (Amir Jafarian) + + * Update README.md (Simon Ho) + + * Add unit test to verify fix for #754 (Tom Kirkpatrick) + + * Update package.json (Janny) + + * Try mocha test (Janny) + + * Implement `findOrCreate` for memory connector (Amir Jafarian) + + * Fix a bug when validation is off for findOrCreate (Amir Jafarian) + + * Use bluebird in utils.js Replace `global.Promise` with `bluebird` (Jue Hou) + + * Fix broken code fencings in the docs (Farid Nouri Neshat) + + * Revert "Correct syntax for should and more" (Simon Ho) + + * Fix test for shouldjs 8.0.2 upgrade (Simon Ho) + + * Upgrade shouldjs to 8.0.2 (Simon Ho) + + * Enhance "persist" hook in DAO.updateOrCreate (Miroslav Bajtoš) + + * Enhance "persisted" hook in DAO.updateAttributes (Miroslav Bajtoš) + + * "loaded" hook in DAO.find: ctx.data, not instance (Miroslav Bajtoš) + + * describe-operation-hooks: add "loaded" hook (Miroslav Bajtoš) + + 2015-12-22, Version 3.0.0-alpha.1 ================================= @@ -1463,8 +1509,6 @@ 2014-06-24, Version 2.0.0-beta2 =============================== - * 2.0.0-beta2 (Miroslav Bajtoš) - * validations: support non-V8 browsers (Miroslav Bajtoš) * Work around for Date default (Raymond Feng) @@ -2082,12 +2126,12 @@ * Update LDL doc for the strict mode (Raymond Feng) -2013-09-12, Version strongloopsuite-1.0.0-4 +2013-09-12, Version strongloopsuite-1.0.0-5 =========================================== -2013-09-12, Version strongloopsuite-1.0.0-5 +2013-09-12, Version strongloopsuite-1.0.0-4 =========================================== * Allow connector to report failure during initialization (Raymond Feng) diff --git a/package.json b/package.json index 1dec2b9c..947d872e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "loopback-datasource-juggler", - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "publishConfig": { "tag": "next" },