Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

0.9.6

Compare
Choose a tag to compare
@aljimenez aljimenez released this 15 Jul 23:13
· 38 commits to develop since this release

version 0.9.6

Features

  • Clearer and more specific error messages regarding invalid mojits and exceptions.
  • Routes.json now accepts an annotations object (see express annotations). Also the "client" annotation can be used to specify whether to expose the route to the client; by default, routes are exposed to the client.

Ex. routes.json:

...
"route": {
     "verbs": ["get"],
     "path": "/path",
     "call": "spec.action",
     "annotations": {
        "client": false
     }
}
...

Bug Fixes

  • Catching any uncaught exception during binder execution. This prevents binder errors from interfering with other binders and the mojito client.