Socket
Socket
Sign inDemoInstall

feathers-sequelize

Package Overview
Dependencies
8
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.3.2 to 6.3.3

4

CHANGELOG.md
# Changelog
## [v6.3.2](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v6.3.2) (2021-10-19)
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-sequelize/compare/v6.3.1...v6.3.2)
## [v6.3.1](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v6.3.1) (2021-10-14)

@@ -4,0 +8,0 @@

2

lib/index.js

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

filtered.query = convertOperators(filtered.query);
filtered.query = Object.assign({}, convertOperators(filtered.query));

@@ -108,0 +108,0 @@ return filtered;

@@ -39,4 +39,4 @@ const errors = require('@feathersjs/errors');

if (Array.isArray(sort[name])) {
direction = parseInt(sort[name][0], 10) === 1 ? 'ASC' : 'DESC';
direction += parseInt(sort[name][1], 10) === 1 ? ' NULLS FIRST': ' NULLS LAST';
direction = parseInt(sort[name][0], 10) === 1 ? 'ASC' : 'DESC';
direction += parseInt(sort[name][1], 10) === 1 ? ' NULLS FIRST' : ' NULLS LAST';
} else {

@@ -43,0 +43,0 @@ direction = parseInt(sort[name], 10) === 1 ? 'ASC' : 'DESC';

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

@@ -69,24 +69,24 @@ "main": "lib/",

"dependencies": {
"@feathersjs/adapter-commons": "^4.5.11",
"@feathersjs/commons": "^4.5.11",
"@feathersjs/errors": "^4.5.11"
"@feathersjs/adapter-commons": "^4.5.12",
"@feathersjs/commons": "^4.5.12",
"@feathersjs/errors": "^4.5.12"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"dtslint": "^4.1.6",
"mocha": "^9.1.2",
"mysql2": "^2.3.0",
"npm-check-updates": "^11.8.5",
"@feathersjs/adapter-tests": "^4.5.12",
"@feathersjs/express": "^4.5.12",
"@feathersjs/feathers": "^4.5.12",
"body-parser": "^1.19.2",
"chai": "^4.3.6",
"dtslint": "^4.2.1",
"mocha": "^9.2.2",
"mysql2": "^2.3.3",
"npm-check-updates": "^12.5.4",
"nyc": "^15.1.0",
"pg": "^8.7.1",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"semistandard": "^16.0.1",
"sequelize": "^6.6.5",
"sequelize": "^6.17.0",
"sqlite3": "^5.0.2",
"typescript": "^4.4.3"
"typescript": "^4.6.3"
}
}
# feathers-sequelize
[![CI](https://github.com/feathersjs-ecosystem/feathers-sequelize/workflows/CI/badge.svg)](https://github.com/feathersjs-ecosystem/feathers-sequelize/actions?query=workflow%3ACI)
[![Dependency Status](https://img.shields.io/david/feathersjs-ecosystem/feathers-sequelize.svg?style=flat-square)](https://david-dm.org/feathersjs-ecosystem/feathers-sequelize)
[![Download Status](https://img.shields.io/npm/dm/feathers-sequelize.svg?style=flat-square)](https://www.npmjs.com/package/feathers-sequelize)

@@ -24,2 +23,3 @@

- [Querying](#querying)
- [Querying a nested column](#querying-a-nested-column)
- [Working with Sequelize Model instances](#working-with-sequelize-model-instances)

@@ -26,0 +26,0 @@ - [Validation](#validation)

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