Merge branch 'release/2.8.1' into production
This commit is contained in:
commit
61bec45a99
64
CHANGES.md
64
CHANGES.md
|
@ -1,3 +1,11 @@
|
|||
2014-11-25, Version 2.8.1
|
||||
=========================
|
||||
|
||||
* Update docs.json (Rand McKinney)
|
||||
|
||||
* Update favicon.js (Rand McKinney)
|
||||
|
||||
|
||||
2014-11-19, Version 2.8.0
|
||||
=========================
|
||||
|
||||
|
@ -597,10 +605,6 @@
|
|||
|
||||
* Enhance the error message (Raymond Feng)
|
||||
|
||||
|
||||
2014-07-16, Version 2.0.0-beta7
|
||||
===============================
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* 2.0.0-beta6 (Miroslav Bajtoš)
|
||||
|
@ -741,6 +745,13 @@
|
|||
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)
|
||||
|
@ -1187,6 +1198,14 @@
|
|||
|
||||
* 2.0.0-beta1 (Ritchie Martori)
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* Add postgresql to the keywords (Raymond Feng)
|
||||
|
||||
* updated package.json with SOAP and framework keywords (altsang)
|
||||
|
||||
* updated package.json with keywords and updated description (Raymond Feng)
|
||||
|
||||
* Make app.datasources unique per app instance (Miroslav Bajtoš)
|
||||
|
||||
* Add RC version (Ritchie Martori)
|
||||
|
@ -1252,6 +1271,11 @@
|
|||
* Add Change model (Ritchie Martori)
|
||||
|
||||
|
||||
2014-05-27, Version 1.8.4
|
||||
=========================
|
||||
|
||||
|
||||
|
||||
2014-05-27, Version 1.8.5
|
||||
=========================
|
||||
|
||||
|
@ -1263,14 +1287,8 @@
|
|||
|
||||
* updated package.json with keywords and updated description (Raymond Feng)
|
||||
|
||||
|
||||
2014-05-27, Version 1.8.4
|
||||
=========================
|
||||
|
||||
* Add more keywords (Raymond Feng)
|
||||
|
||||
* Bump version (Raymond Feng)
|
||||
|
||||
* app: flatten model config (Miroslav Bajtoš)
|
||||
|
||||
* Fix the test for mocha 1.19.0 (Raymond Feng)
|
||||
|
@ -1591,15 +1609,6 @@
|
|||
|
||||
* Improve jsdox documentation of app object (Miroslav Bajtoš)
|
||||
|
||||
* Make sure methods are called in the context of the calling class (Raymond Feng)
|
||||
|
||||
* Start to move md to jsdoc (Ritchie Martori)
|
||||
|
||||
|
||||
2014-01-14, Version 1.5.0
|
||||
=========================
|
||||
|
||||
|
||||
|
||||
2014-01-14, Version 1.5.1
|
||||
=========================
|
||||
|
@ -1610,6 +1619,10 @@
|
|||
|
||||
* Start to move md to jsdoc (Ritchie Martori)
|
||||
|
||||
|
||||
2014-01-14, Version 1.5.0
|
||||
=========================
|
||||
|
||||
* Replace `on` with `once` in middleware examples (Miroslav Bajtoš)
|
||||
|
||||
* Fix incorrect transports (Ritchie Martori)
|
||||
|
@ -1722,18 +1735,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)
|
||||
|
|
11
docs.json
11
docs.json
|
@ -9,11 +9,12 @@
|
|||
"lib/model.js",
|
||||
"lib/persisted-model.js",
|
||||
{ "title": "Middleware", "depth": 2 },
|
||||
"lib/middleware/rest.js",
|
||||
"lib/middleware/static.js",
|
||||
"lib/middleware/status.js",
|
||||
"lib/middleware/token.js",
|
||||
"lib/middleware/urlNotFound.js",
|
||||
"server/middleware/favicon.js",
|
||||
"server/middleware/rest.js",
|
||||
"server/middleware/static.js",
|
||||
"server/middleware/status.js",
|
||||
"server/middleware/token.js",
|
||||
"server/middleware/urlNotFound.js",
|
||||
{ "title": "Built-in models", "depth": 2 },
|
||||
"common/models/access-token.js",
|
||||
"common/models/acl.js",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "loopback",
|
||||
"version": "2.8.0",
|
||||
"version": "2.8.1",
|
||||
"description": "LoopBack: Open Source Framework for Node.js",
|
||||
"homepage": "http://loopback.io",
|
||||
"keywords": [
|
||||
|
|
|
@ -1 +1,5 @@
|
|||
/**
|
||||
* Serve the LoopBack favicon.
|
||||
* @header loopback.favicon()
|
||||
*/
|
||||
module.exports = require('../../lib/express-middleware').favicon;
|
||||
|
|
Loading…
Reference in New Issue