@feathersjs/feathers
Advanced tools
Comparing version 3.3.0 to 3.3.1
@@ -6,2 +6,14 @@ # Change Log | ||
## [3.3.1](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.3.0...@feathersjs/feathers@3.3.1) (2019-01-02) | ||
### 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)) | ||
* Update adapter common tests ([#1135](https://github.com/feathersjs/feathers/issues/1135)) ([8166dda](https://github.com/feathersjs/feathers/commit/8166dda)) | ||
<a name="3.3.0"></a> | ||
@@ -8,0 +20,0 @@ # [3.3.0](https://github.com/feathersjs/feathers/compare/@feathersjs/feathers@3.2.3...@feathersjs/feathers@3.3.0) (2018-12-16) |
@@ -6,5 +6,8 @@ const { hooks } = require('@feathersjs/commons'); | ||
const { ACTIVATE_HOOKS, activateHooks } = require('./hooks'); | ||
// A base object Prototype that does not inherit from a | ||
// potentially polluted Object prototype | ||
const baseObject = Object.create(null); | ||
function createApplication () { | ||
const app = {}; | ||
const app = Object.create(baseObject); | ||
@@ -11,0 +14,0 @@ // Mix in the base application |
@@ -1,1 +0,1 @@ | ||
module.exports = '3.3.0'; | ||
module.exports = '3.3.1'; |
{ | ||
"name": "@feathersjs/feathers", | ||
"description": "A REST and realtime API layer for modern applications.", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"homepage": "http://feathersjs.com", | ||
@@ -49,3 +49,3 @@ "repository": { | ||
}, | ||
"gitHead": "3bbba49daf1e62f358b426002ec9684f4bcaac89" | ||
"gitHead": "8c3a740ada9c9a0a25204d72f8ce982ad2887331" | ||
} |
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
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
65464
399