From b45779f4ea5a39d45b0dfa22017f88153d3e59f5 Mon Sep 17 00:00:00 2001 From: lsm Date: Mon, 30 Nov 2015 17:46:25 -0800 Subject: [PATCH] 0.1.35 --- HISTORY.md | 17 +++++++++++++++++ package.json | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index e0b6ab9..7ea9b39 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,16 @@ +0.1.35 (2015/11/30) +=================== +- Bug fix for route handler can't get `next` +- Escape unsafe characters when render template with layout middleware `web/middleware/express-layout.js`. +- Accept using middleware name in route definition. +```javascript +route: { +'/hello': ['layout', handlerFn] +} +``` +- Fix incorrect parameter for express `router.param`. + + 0.1.34 (2015/11/25) =================== - [Breaking] Rename sub command `micromono asset` to `micromono bundle`. @@ -5,19 +18,23 @@ - [Breaking] Rename `-a` to `-b` for `--bundle-asset`. - Make main export stateless and export `MicroMonoServer` to support multipe micromono instances in one process. + 0.1.33 (2015/11/18) =================== - Make the layout middleware more friendly for isomorphic rendering. + 0.1.32 (2015/11/13) =================== - Expose more asset info in service announcement. - Fix bugs for bundling asset. + 0.1.31 (2015/11/09) =================== - Support using `^` to override `baseUrl`. + 0.1.30 (2015/10/30) =================== - Bundle static asset on the fly with option `-a` or `--bundle-asset`. diff --git a/package.json b/package.json index 267aafb..5cc4683 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "micromono", - "version": "0.1.34", + "version": "0.1.35", "description": "Monolithic micro-services framework", "main": "lib/index.js", "bin": { @@ -47,7 +47,7 @@ "eventemitter3": "1.1.1", "express": "4.13.3", "http-proxy": "1.12.0", - "jspm": "0.16.14", + "jspm": "0.16.15", "lodash.assign": "3.2.0", "lodash.difference": "3.2.2", "lodash.isarray": "3.0.4",