From 761a819673c4147f332773ed8ed4e67adf534d67 Mon Sep 17 00:00:00 2001 From: Rand McKinney Date: Mon, 24 Nov 2014 14:17:39 -0800 Subject: [PATCH 1/4] Update docs.json Fix path to middleware functions. --- docs.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs.json b/docs.json index 478a791d..60283bf9 100644 --- a/docs.json +++ b/docs.json @@ -9,11 +9,11 @@ "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/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", From 2522b3f15e897b0f9770e76dee68f813fa3bf275 Mon Sep 17 00:00:00 2001 From: Rand McKinney Date: Mon, 24 Nov 2014 15:08:21 -0800 Subject: [PATCH 2/4] Update favicon.js Add basic JSdoc --- server/middleware/favicon.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/middleware/favicon.js b/server/middleware/favicon.js index 84ff0e28..d2e1fa40 100644 --- a/server/middleware/favicon.js +++ b/server/middleware/favicon.js @@ -1 +1,5 @@ +/** + * Serve the LoopBack favicon. + * @header loopback.favicon() + */ module.exports = require('../../lib/express-middleware').favicon; From 5695499f7204c84b4d455171368748775fc7a267 Mon Sep 17 00:00:00 2001 From: Rand McKinney Date: Mon, 24 Nov 2014 17:13:25 -0800 Subject: [PATCH 3/4] Update docs.json Add favicon middleware. --- docs.json | 1 + 1 file changed, 1 insertion(+) diff --git a/docs.json b/docs.json index 60283bf9..0a365d5f 100644 --- a/docs.json +++ b/docs.json @@ -9,6 +9,7 @@ "lib/model.js", "lib/persisted-model.js", { "title": "Middleware", "depth": 2 }, + "server/middleware/favicon.js", "server/middleware/rest.js", "server/middleware/static.js", "server/middleware/status.js", From d864972bc66ea6c631e01920e0f7ea8e3e9c2401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Tue, 25 Nov 2014 11:21:46 +0100 Subject: [PATCH 4/4] v2.8.1 --- CHANGES.md | 64 ++++++++++++++++++++++++++++++++-------------------- package.json | 2 +- 2 files changed, 40 insertions(+), 26 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1a66f035..7e8d3610 100644 --- a/CHANGES.md +++ b/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) diff --git a/package.json b/package.json index ae7c7005..c18c5292 100644 --- a/package.json +++ b/package.json @@ -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": [