Skip to content

Commit

Permalink
Version 0.1.34
Browse files Browse the repository at this point in the history
  • Loading branch information
lsm committed Nov 26, 2015
1 parent ffc1cd4 commit 2c259db
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
0.1.34 (2015/11/25)
===================
- [Breaking] Rename sub command `micromono asset` to `micromono bundle`.
- [Breaking] `Service#use` now accepts http method prefix same as in `route`. e.g. `post::/user/update`.
- [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.
Expand Down
2 changes: 1 addition & 1 deletion example/home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var Home = module.exports = Service.extend({
use: {
// tell micromono to use `layout` middleware at the server side
// for request urls in the array.
'layout': ['/private$', '^/public$', '^/$', '/:username/:project']
'layout': ['get::/private$', '^/public$', '^/$', '/:username/:project']
},

route: {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "micromono",
"version": "0.1.33",
"version": "0.1.34",
"description": "Monolithic micro-services framework",
"main": "lib/index.js",
"bin": {
Expand Down

0 comments on commit 2c259db

Please sign in to comment.