Merge tag 'v2.12.0'
2.12.0 * Fix the test case (Raymond Feng) * Enable remoting for hasOne relations (Raymond Feng) * README: add Gitter badge (Miroslav Bajtoš)
This commit is contained in:
commit
c7f1143f5b
37
CHANGES.md
37
CHANGES.md
|
@ -1,3 +1,13 @@
|
|||
2015-02-03, Version 2.12.0
|
||||
==========================
|
||||
|
||||
* Fix the test case (Raymond Feng)
|
||||
|
||||
* Enable remoting for hasOne relations (Raymond Feng)
|
||||
|
||||
* README: add Gitter badge (Miroslav Bajtoš)
|
||||
|
||||
|
||||
2015-01-27, Version 2.11.0
|
||||
==========================
|
||||
|
||||
|
@ -43,12 +53,6 @@
|
|||
|
||||
* Allow accessType per remote method (Raymond Feng)
|
||||
|
||||
* Update juggler dep (Raymond Feng)
|
||||
|
||||
* Fix Geo test cases (Raymond Feng)
|
||||
|
||||
* Allow User.hashPassword/validatePassword to be overridden (Raymond Feng)
|
||||
|
||||
* Use User.remoteMethod instead of loopbacks method This is needed for loopback-connector-remote authorization. Addresses https://github.com/strongloop/loopback/issues/622. (Berkeley Martinez)
|
||||
|
||||
* API and REST tests added to ensure complete and valid credentials are supplied for verified error message to be returned - tests added as suggested and fail under previous version of User model - strongloop/loopback#931 (Ron Edgecomb)
|
||||
|
@ -56,11 +60,6 @@
|
|||
* Require valid login credentials before verified email check. - strongloop/loopback#931. (Ron Edgecomb)
|
||||
|
||||
|
||||
2015-01-07, Version 2.8.8
|
||||
=========================
|
||||
|
||||
|
||||
|
||||
2015-01-07, Version 2.9.0
|
||||
=========================
|
||||
|
||||
|
@ -77,12 +76,20 @@
|
|||
|
||||
* Update juggler dep (Raymond Feng)
|
||||
|
||||
* Fix context middleware to preserve domains (Pham Anh Tuan)
|
||||
|
||||
* Fix Geo test cases (Raymond Feng)
|
||||
|
||||
* Allow User.hashPassword/validatePassword to be overridden (Raymond Feng)
|
||||
|
||||
* API and REST tests added to ensure complete and valid credentials are supplied for verified error message to be returned - tests added as suggested and fail under previous version of User model - strongloop/loopback#931 (Ron Edgecomb)
|
||||
|
||||
* Require valid login credentials before verified email check. - strongloop/loopback#931. (Ron Edgecomb)
|
||||
|
||||
|
||||
2015-01-07, Version 2.8.8
|
||||
=========================
|
||||
|
||||
* Fix context middleware to preserve domains (Pham Anh Tuan)
|
||||
|
||||
* Additional password reset unit tests for API and REST - strongloop/loopback#944 (Ron Edgecomb)
|
||||
|
||||
* Small formatting update to have consistency with identical logic in other areas. - strongloop/loopback#944 (Ron Edgecomb)
|
||||
|
@ -97,10 +104,6 @@
|
|||
|
||||
* Update to demonstrate unit test is actually failing due to incorrect values of invalidCredentials - strongloop/loopback#944 (Ron Edgecomb)
|
||||
|
||||
* API and REST tests added to ensure complete and valid credentials are supplied for verified error message to be returned - tests added as suggested and fail under previous version of User model - strongloop/loopback#931 (Ron Edgecomb)
|
||||
|
||||
* Require valid login credentials before verified email check. - strongloop/loopback#931. (Ron Edgecomb)
|
||||
|
||||
* fix jscs warning (Clark Wang)
|
||||
|
||||
* fix nestRemoting is nesting hooks from other relations (Clark Wang)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "loopback",
|
||||
"version": "2.11.0",
|
||||
"version": "2.12.0",
|
||||
"description": "LoopBack: Open Source Framework for Node.js",
|
||||
"homepage": "http://loopback.io",
|
||||
"keywords": [
|
||||
|
@ -102,6 +102,6 @@
|
|||
"url": "https://github.com/strongloop/loopback/blob/master/LICENSE"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"sl-blip": "http://blip.strongloop.com/loopback@2.11.0"
|
||||
"sl-blip": "http://blip.strongloop.com/loopback@2.12.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue