Merge branch 'release/2.8.1' into production

This commit is contained in:
Miroslav Bajtoš 2014-11-25 11:21:48 +01:00
commit 61bec45a99
4 changed files with 50 additions and 31 deletions

View File

@ -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 2014-11-19, Version 2.8.0
========================= =========================
@ -597,10 +605,6 @@
* Enhance the error message (Raymond Feng) * Enhance the error message (Raymond Feng)
2014-07-16, Version 2.0.0-beta7
===============================
* Bump version (Raymond Feng) * Bump version (Raymond Feng)
* 2.0.0-beta6 (Miroslav Bajtoš) * 2.0.0-beta6 (Miroslav Bajtoš)
@ -741,6 +745,13 @@
2014-07-16, Version 1.10.0 2014-07-16, Version 1.10.0
========================== ==========================
2014-07-16, Version 2.0.0-beta7
===============================
* Bump version (Raymond Feng)
* Remove unused dep (Raymond Feng) * Remove unused dep (Raymond Feng)
* Bump version and update deps (Raymond Feng) * Bump version and update deps (Raymond Feng)
@ -1187,6 +1198,14 @@
* 2.0.0-beta1 (Ritchie Martori) * 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š) * Make app.datasources unique per app instance (Miroslav Bajtoš)
* Add RC version (Ritchie Martori) * Add RC version (Ritchie Martori)
@ -1252,6 +1271,11 @@
* Add Change model (Ritchie Martori) * Add Change model (Ritchie Martori)
2014-05-27, Version 1.8.4
=========================
2014-05-27, Version 1.8.5 2014-05-27, Version 1.8.5
========================= =========================
@ -1263,14 +1287,8 @@
* updated package.json with keywords and updated description (Raymond Feng) * updated package.json with keywords and updated description (Raymond Feng)
2014-05-27, Version 1.8.4
=========================
* Add more keywords (Raymond Feng) * Add more keywords (Raymond Feng)
* Bump version (Raymond Feng)
* app: flatten model config (Miroslav Bajtoš) * app: flatten model config (Miroslav Bajtoš)
* Fix the test for mocha 1.19.0 (Raymond Feng) * Fix the test for mocha 1.19.0 (Raymond Feng)
@ -1591,15 +1609,6 @@
* Improve jsdox documentation of app object (Miroslav Bajtoš) * 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 2014-01-14, Version 1.5.1
========================= =========================
@ -1610,6 +1619,10 @@
* Start to move md to jsdoc (Ritchie Martori) * Start to move md to jsdoc (Ritchie Martori)
2014-01-14, Version 1.5.0
=========================
* Replace `on` with `once` in middleware examples (Miroslav Bajtoš) * Replace `on` with `once` in middleware examples (Miroslav Bajtoš)
* Fix incorrect transports (Ritchie Martori) * Fix incorrect transports (Ritchie Martori)
@ -1722,18 +1735,19 @@
* Add Model.requireToken, default swagger to false (Ritchie Martori) * 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) * Bump version (Raymond Feng)
* Add password reset (Ritchie Martori)
2013-12-06, Version show 2013-12-06, Version show
======================== ========================
2013-12-06, Version 1.3.3
=========================
* Bump version (Raymond Feng) * Bump version (Raymond Feng)
* Make loopback-datasource-juggler a peer dep (Raymond Feng) * Make loopback-datasource-juggler a peer dep (Raymond Feng)

View File

@ -9,11 +9,12 @@
"lib/model.js", "lib/model.js",
"lib/persisted-model.js", "lib/persisted-model.js",
{ "title": "Middleware", "depth": 2 }, { "title": "Middleware", "depth": 2 },
"lib/middleware/rest.js", "server/middleware/favicon.js",
"lib/middleware/static.js", "server/middleware/rest.js",
"lib/middleware/status.js", "server/middleware/static.js",
"lib/middleware/token.js", "server/middleware/status.js",
"lib/middleware/urlNotFound.js", "server/middleware/token.js",
"server/middleware/urlNotFound.js",
{ "title": "Built-in models", "depth": 2 }, { "title": "Built-in models", "depth": 2 },
"common/models/access-token.js", "common/models/access-token.js",
"common/models/acl.js", "common/models/acl.js",

View File

@ -1,6 +1,6 @@
{ {
"name": "loopback", "name": "loopback",
"version": "2.8.0", "version": "2.8.1",
"description": "LoopBack: Open Source Framework for Node.js", "description": "LoopBack: Open Source Framework for Node.js",
"homepage": "http://loopback.io", "homepage": "http://loopback.io",
"keywords": [ "keywords": [

View File

@ -1 +1,5 @@
/**
* Serve the LoopBack favicon.
* @header loopback.favicon()
*/
module.exports = require('../../lib/express-middleware').favicon; module.exports = require('../../lib/express-middleware').favicon;