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.0 to 4.0.1

26

CHANGELOG.md
# Change Log
## [v4.0.0](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v4.0.0) (2018-12-20)
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-sequelize/compare/v3.1.3...v4.0.0)
**Implemented enhancements:**
- Use Sequelize Symbol based operators for better security [\#244](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/244)
**Fixed bugs:**
- Ensure `params` are always passed through to all service calls [\#234](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/234)
- Remove error details in production [\#231](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/231)
**Closed issues:**
- Include as array, no longer working [\#239](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/239)
- feathers-sequelize with hook update only selected columns. [\#238](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/238)
**Merged pull requests:**
- Securely hide original Sequelize error [\#257](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/257) ([daffl](https://github.com/daffl))
- Upgrade to @feathersjs/adapter-commons and latest common service features [\#256](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/256) ([daffl](https://github.com/daffl))
- Update dependencies [\#255](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/255) ([daffl](https://github.com/daffl))
- Migrate tests to async/await [\#254](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/254) ([daffl](https://github.com/daffl))
- De-duplicate connection setup [\#253](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/253) ([daffl](https://github.com/daffl))
- Fixed issue where params are ignored on update service calls. [\#252](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/252) ([AndrewJDR](https://github.com/AndrewJDR))
## [v3.1.3](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v3.1.3) (2018-10-29)

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

4

lib/index.js

@@ -43,2 +43,6 @@ const errors = require('@feathersjs/errors');

get Model () {
return this.getModel();
}
getModel (params) {

@@ -45,0 +49,0 @@ return this.options.Model;

5

lib/utils.js

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

if (name) {
if (name.startsWith('Sequelize')) {
switch (name) {

@@ -28,3 +28,6 @@ case 'SequelizeValidationError':

case 'SequelizeHostNotFoundError':
case 'SequelizeDatabaseError':
throw wrap(new errors.NotFound(message), error);
default:
throw wrap(new errors.GeneralError(message), error);
}

@@ -31,0 +34,0 @@ }

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

@@ -6,0 +6,0 @@ "main": "lib/",

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