New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@feathersjs/express

Package Overview
Dependencies
Maintainers
4
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feathersjs/express - npm Package Compare versions

Comparing version 1.2.1 to 1.2.2

14

CHANGELOG.md
# 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:**

2

lib/index.js

@@ -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/",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc