@feathersjs/express
Advanced tools
Comparing version 1.2.1 to 1.2.2
# Change Log | ||
## [v1.2.1](https://github.com/feathersjs/express/tree/v1.2.1) (2018-03-29) | ||
[Full Changelog](https://github.com/feathersjs/express/compare/v1.2.0...v1.2.1) | ||
**Closed issues:** | ||
- Error in error hook results in unhandled rejection [\#21](https://github.com/feathersjs/express/issues/21) | ||
- Error handler in wrapper hides breaks and hides real error [\#13](https://github.com/feathersjs/express/issues/13) | ||
**Merged pull requests:** | ||
- Allow to set HTTP status code in a hook [\#23](https://github.com/feathersjs/express/pull/23) ([daffl](https://github.com/daffl)) | ||
- Update axios to the latest version 🚀 [\#22](https://github.com/feathersjs/express/pull/22) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) | ||
## [v1.2.0](https://github.com/feathersjs/express/tree/v1.2.0) (2018-02-09) | ||
@@ -11,3 +24,2 @@ [Full Changelog](https://github.com/feathersjs/express/compare/v1.1.2...v1.2.0) | ||
- Feathers-express blows up the feathers application version property and the example doesn't work [\#16](https://github.com/feathersjs/express/issues/16) | ||
- Error handler in wrapper hides breaks and hides real error [\#13](https://github.com/feathersjs/express/issues/13) | ||
@@ -14,0 +26,0 @@ **Merged pull requests:** |
@@ -44,3 +44,3 @@ const express = require('express'); | ||
const hasMethod = methods => methods.some(name => | ||
(service && typeof service[name] === 'function') | ||
(service && !Array.isArray(service) && typeof service[name] === 'function') | ||
); | ||
@@ -47,0 +47,0 @@ |
{ | ||
"name": "@feathersjs/express", | ||
"description": "Feathers Express framework bindings and REST provider", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"homepage": "https://github.com/feathersjs/express", | ||
@@ -6,0 +6,0 @@ "main": "lib/", |
18711