v2.11.0
This commit is contained in:
parent
e4adbf8366
commit
24ef5cd59e
52
CHANGES.md
52
CHANGES.md
|
@ -1,3 +1,27 @@
|
|||
2015-01-27, Version 2.11.0
|
||||
==========================
|
||||
|
||||
* Document options for persistedmodel.save() (Rand McKinney)
|
||||
|
||||
* Add test case to demonstrate url-encoded http path (Pradnya Baviskar)
|
||||
|
||||
* Fix JSdocs per #888 (crandmck)
|
||||
|
||||
* Add test case for loopback issue #698 (Pradnya Baviskar)
|
||||
|
||||
* Remove usages of deprecated `req.param()` (Miroslav Bajtoš)
|
||||
|
||||
* Add error code property to known error responses. (Ron Edgecomb)
|
||||
|
||||
* test: use 127.0.0.1 instead of localhost (Ryan Graham)
|
||||
|
||||
* Extend AccessToken to parse Basic auth headers (Ryan Graham)
|
||||
|
||||
* tests: fix Bearer token test (Ryan Graham)
|
||||
|
||||
* don't send queries to the DB when no changes are detected (bitmage)
|
||||
|
||||
|
||||
2015-01-16, Version 2.10.2
|
||||
==========================
|
||||
|
||||
|
@ -755,6 +779,10 @@
|
|||
|
||||
* Enhance the error message (Raymond Feng)
|
||||
|
||||
|
||||
2014-07-16, Version 2.0.0-beta7
|
||||
===============================
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* 2.0.0-beta6 (Miroslav Bajtoš)
|
||||
|
@ -895,13 +923,6 @@
|
|||
2014-07-16, Version 1.10.0
|
||||
==========================
|
||||
|
||||
|
||||
|
||||
2014-07-16, Version 2.0.0-beta7
|
||||
===============================
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* Remove unused dep (Raymond Feng)
|
||||
|
||||
* Bump version and update deps (Raymond Feng)
|
||||
|
@ -1890,18 +1911,19 @@
|
|||
|
||||
* Add Model.requireToken, default swagger to false (Ritchie Martori)
|
||||
|
||||
* Add password reset (Ritchie Martori)
|
||||
|
||||
|
||||
2013-12-06, Version 1.3.3
|
||||
=========================
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* Add password reset (Ritchie Martori)
|
||||
|
||||
|
||||
2013-12-06, Version show
|
||||
========================
|
||||
|
||||
|
||||
|
||||
2013-12-06, Version 1.3.3
|
||||
=========================
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* Make loopback-datasource-juggler a peer dep (Raymond Feng)
|
||||
|
@ -2189,12 +2211,12 @@
|
|||
* Update docs for api->project rename. (Michael Schoonmaker)
|
||||
|
||||
|
||||
2013-09-12, Version strongloopsuite-1.0.0-5
|
||||
2013-09-12, Version strongloopsuite-1.0.0-4
|
||||
===========================================
|
||||
|
||||
|
||||
|
||||
2013-09-12, Version strongloopsuite-1.0.0-4
|
||||
2013-09-12, Version strongloopsuite-1.0.0-5
|
||||
===========================================
|
||||
|
||||
* Update docs for api->project rename. (Michael Schoonmaker)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "loopback",
|
||||
"version": "2.10.2",
|
||||
"version": "2.11.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.10.2"
|
||||
"sl-blip": "http://blip.strongloop.com/loopback@2.11.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue