Socket
Socket
Sign inDemoInstall

feathers-sequelize

Package Overview
Dependencies
5
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.1 to 4.0.2

8

CHANGELOG.md
# Change Log
## [v4.0.1](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v4.0.1) (2018-12-21)
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-sequelize/compare/v4.0.0...v4.0.1)
**Merged pull requests:**
- Add service.Model back [\#259](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/259) ([daffl](https://github.com/daffl))
- Convert all Sequelize errors into a safe FeathersError [\#258](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/258) ([daffl](https://github.com/daffl))
## [v4.0.0](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v4.0.0) (2018-12-20)

@@ -4,0 +12,0 @@ [Full Changelog](https://github.com/feathersjs-ecosystem/feathers-sequelize/compare/v3.1.3...v4.0.0)

8

lib/index.js

@@ -70,3 +70,3 @@ const errors = require('@feathersjs/errors');

return Object.keys(query).reduce((result, prop) => {
const converted = Object.keys(query).reduce((result, prop) => {
const value = query[prop];

@@ -79,2 +79,8 @@ const key = operators[prop] ? operators[prop] : prop;

}, {});
Object.getOwnPropertySymbols(query).forEach(symbol => {
converted[symbol] = query[symbol];
});
return converted;
};

@@ -81,0 +87,0 @@

4

package.json
{
"name": "feathers-sequelize",
"description": "A service adapter for Sequelize an SQL ORM",
"version": "4.0.1",
"version": "4.0.2",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-sequelize",

@@ -60,3 +60,3 @@ "main": "lib/",

"dependencies": {
"@feathersjs/adapter-commons": "^1.0.5",
"@feathersjs/adapter-commons": "^1.0.6",
"@feathersjs/commons": "^4.0.0",

@@ -63,0 +63,0 @@ "@feathersjs/errors": "^3.3.5"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc