Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@feathersjs/feathers

Package Overview
Dependencies
Maintainers
4
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feathersjs/feathers - npm Package Compare versions

Comparing version 3.3.1 to 4.0.0-pre.0

index.d.ts

23

CHANGELOG.md

@@ -6,2 +6,25 @@ # Change Log

# [4.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v3.2.0-pre.1...v4.0.0-pre.0) (2019-04-21)
### Bug Fixes
* Do not inherit app object from Object prototype ([#1153](https://github.com/feathersjs/feathers/issues/1153)) ([ed8c2e4](https://github.com/feathersjs/feathers/commit/ed8c2e4))
* Make Mocha a proper devDependency for every repository ([#1053](https://github.com/feathersjs/feathers/issues/1053)) ([9974803](https://github.com/feathersjs/feathers/commit/9974803))
* Normalize params to object even when it is falsy ([#1012](https://github.com/feathersjs/feathers/issues/1012)) ([af97818](https://github.com/feathersjs/feathers/commit/af97818))
* Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda))
* Update all dependencies to latest ([#1206](https://github.com/feathersjs/feathers/issues/1206)) ([e51e0f6](https://github.com/feathersjs/feathers/commit/e51e0f6))
### Features
* Add TypeScript definitions ([#1275](https://github.com/feathersjs/feathers/issues/1275)) ([9dd6713](https://github.com/feathersjs/feathers/commit/9dd6713))
* Allow registering a service at the root level ([#1115](https://github.com/feathersjs/feathers/issues/1115)) ([c73d322](https://github.com/feathersjs/feathers/commit/c73d322))
* Allow to skip sending service events ([#1270](https://github.com/feathersjs/feathers/issues/1270)) ([b487bbd](https://github.com/feathersjs/feathers/commit/b487bbd))
* Remove (hook, next) signature and SKIP support ([#1269](https://github.com/feathersjs/feathers/issues/1269)) ([211c0f8](https://github.com/feathersjs/feathers/commit/211c0f8))
## [3.3.1](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.3.0...@feathersjs/feathers@3.3.1) (2019-01-02)

@@ -8,0 +31,0 @@

2

lib/events.js

@@ -9,3 +9,3 @@ const { EventEmitter } = require('events');

const { app, service } = hook;
const eventName = app.eventMappings[hook.method];
const eventName = hook.event === null ? hook.event : app.eventMappings[hook.method];
const isHookEvent = service._hookEvents && service._hookEvents.indexOf(eventName) !== -1;

@@ -12,0 +12,0 @@

@@ -1,2 +0,1 @@

const { hooks } = require('@feathersjs/commons');
const Proto = require('uberproto');

@@ -22,3 +21,2 @@ const Application = require('./application');

createApplication.version = version;
createApplication.SKIP = hooks.SKIP;
createApplication.ACTIVATE_HOOKS = ACTIVATE_HOOKS;

@@ -25,0 +23,0 @@ createApplication.activateHooks = activateHooks;

@@ -1,1 +0,1 @@

module.exports = '3.3.1';
module.exports = '4.0.0-pre.0';
{
"name": "@feathersjs/feathers",
"description": "A REST and realtime API layer for modern applications.",
"version": "3.3.1",
"version": "4.0.0-pre.0",
"homepage": "http://feathersjs.com",

@@ -17,4 +17,5 @@ "repository": {

"main": "lib/index.js",
"types": "index.d.ts",
"author": {
"name": "Feathers contributor",
"name": "Feathers contributors",
"email": "hello@feathersjs.com",

@@ -42,11 +43,11 @@ "url": "https://feathersjs.com"

"dependencies": {
"@feathersjs/commons": "^4.0.0",
"debug": "^4.0.0",
"@feathersjs/commons": "^4.0.0-pre.0",
"debug": "^4.1.1",
"events": "^3.0.0",
"uberproto": "^2.0.2"
"uberproto": "^2.0.4"
},
"devDependencies": {
"mocha": "^5.2.0"
"mocha": "^6.0.2"
},
"gitHead": "8c3a740ada9c9a0a25204d72f8ce982ad2887331"
"gitHead": "f415041c465858436a475302aabc7b8cc75adfef"
}

@@ -166,4 +166,4 @@ <img style="width: 100%; max-width: 400px;" src="http://feathersjs.com/img/feathers-logo-wide.png" alt="Feathers logo">

Copyright (c) 2018 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
Copyright (c) 2019 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
Licensed under the [MIT license](LICENSE).
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