Socket
Socket
Sign inDemoInstall

feathers-sequelize

Package Overview
Dependencies
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feathers-sequelize - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

15

CHANGELOG.md
# Change Log
## [v3.0.0](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v3.0.0) (2017-12-04)
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-sequelize/compare/v2.4.0...v3.0.0)
**Closed issues:**
- Populate joined table on create [\#180](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/180)
- Return associated data from joined table? [\#177](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/177)
- How to work with the relationship from URL query? [\#176](https://github.com/feathersjs-ecosystem/feathers-sequelize/issues/176)
**Merged pull requests:**
- Upgrade to Feathers Buzzard \(v3\) [\#183](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/183) ([daffl](https://github.com/daffl))
- Update to new plugin infrastructure [\#182](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/182) ([daffl](https://github.com/daffl))
- Update dependencies to enable Greenkeeper 🌴 [\#170](https://github.com/feathersjs-ecosystem/feathers-sequelize/pull/170) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
## [v2.4.0](https://github.com/feathersjs-ecosystem/feathers-sequelize/tree/v2.4.0) (2017-11-06)

@@ -4,0 +19,0 @@ [Full Changelog](https://github.com/feathersjs-ecosystem/feathers-sequelize/compare/v2.3.2...v2.4.0)

11

lib/index.js

@@ -288,6 +288,13 @@ const omit = require('lodash.omit');

module.exports = function init (options) {
function init (options) {
return new Service(options);
};
module.exports.Service = Service;
module.exports = init;
// Exposed Modules
Object.assign(module.exports, {
default: init,
Service
});

6

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

@@ -73,9 +73,9 @@ "main": "lib/",

"istanbul": "^1.1.0-alpha.1",
"mocha": "^4.0.0",
"mocha": "^5.0.0",
"mysql2": "^1.4.2",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"semistandard": "^11.0.0",
"semistandard": "^12.0.0",
"sqlite3": "^3.1.7"
}
}

@@ -45,3 +45,3 @@ # feathers-sequelize

- `Model` (**required**) - The Sequelize model definition
- `id` (*optional*, default: `'_id'`) - The name of the id field property.
- `id` (*optional*, default: `'id'`) - The name of the id field property.
- `raw` (*optional*, default: `true`) - Runs queries faster by returning plain objects instead of Sequelize models.

@@ -48,0 +48,0 @@ - `events` (*optional*) - A list of [custom service events](https://docs.feathersjs.com/api/events.html#custom-events) sent by this service

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