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

@feathersjs/feathers

Package Overview
Dependencies
Maintainers
3
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 4.5.16 to 4.5.17

11

CHANGELOG.md

@@ -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 @@

2

lib/application.js

@@ -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"
}
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