@feathersjs/feathers
Advanced tools
Comparing version 3.3.1 to 4.0.0-pre.0
@@ -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 @@ |
@@ -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). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
73348
11
562
1
Updateddebug@^4.1.1
Updateduberproto@^2.0.4