@feathersjs/feathers
Advanced tools
Comparing version 4.5.16 to 4.5.17
@@ -6,2 +6,13 @@ # Change Log | ||
## [4.5.17](https://github.com/feathersjs/feathers/compare/v4.5.16...v4.5.17) (2023-07-17) | ||
### Bug Fixes | ||
* **core:** Ensure .service does not access Object properties ([#3240](https://github.com/feathersjs/feathers/issues/3240)) ([7969334](https://github.com/feathersjs/feathers/commit/7969334ae9d3cfb4ae0e63564a99a18454482cb0)) | ||
## [4.5.16](https://github.com/feathersjs/feathers/compare/v4.5.15...v4.5.16) (2023-02-24) | ||
@@ -8,0 +19,0 @@ |
@@ -70,3 +70,3 @@ const debug = require('debug')('feathers:application'); | ||
const location = stripSlashes(path) || '/'; | ||
const current = this.services[location]; | ||
const current = this.services.hasOwnProperty(location) ? this.services[location] : undefined | ||
@@ -73,0 +73,0 @@ if (typeof current === 'undefined' && typeof this.defaultService === 'function') { |
@@ -1,1 +0,1 @@ | ||
module.exports = '4.5.16'; | ||
module.exports = '4.5.17'; |
{ | ||
"name": "@feathersjs/feathers", | ||
"description": "A framework for real-time applications and REST API with JavaScript and TypeScript", | ||
"version": "4.5.16", | ||
"version": "4.5.17", | ||
"homepage": "http://feathersjs.com", | ||
@@ -65,3 +65,3 @@ "repository": { | ||
}, | ||
"gitHead": "18872c070d9db0258f06cc66f08c0c6a9311b0b2" | ||
"gitHead": "022a407dab1e813d23b283d145dfff9a870541ee" | ||
} |
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
87740