Socket
Socket
Sign inDemoInstall

db-migrate

Package Overview
Dependencies
Maintainers
2
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

db-migrate - npm Package Compare versions

Comparing version 0.10.1 to 0.10.2

17

CHANGELOG.md

@@ -0,2 +1,19 @@

<a name="0.10.2"></a>
## [0.10.2](https://github.com/db-migrate/node-db-migrate/compare/v0.10.1...v0.10.2) (2017-12-01)
### Bug Fixes
* **log:** error ended up in unreadable errors ([97de65d](https://github.com/db-migrate/node-db-migrate/commit/97de65d)), closes [#524](https://github.com/db-migrate/node-db-migrate/issues/524) [#521](https://github.com/db-migrate/node-db-migrate/issues/521)
<a name="0.10.1"></a>
## [0.10.1](https://github.com/db-migrate/node-db-migrate/compare/v0.10.0...v0.10.1) (2017-11-27)
### Bug Fixes
* **db:** wrong reference to connect causes db:create to fail ([56cb75a](https://github.com/db-migrate/node-db-migrate/commit/56cb75a)), closes [#520](https://github.com/db-migrate/node-db-migrate/issues/520)
## 0.10.0

@@ -3,0 +20,0 @@

7

lib/commands/on-complete.js

@@ -11,8 +11,3 @@ var assert = require('assert');

if ((err || originalErr) && typeof callback === 'function') {
callback(
new Error({
err: err,
originalErr: originalErr
})
);
callback(originalErr || err);
return;

@@ -19,0 +14,0 @@ } else {

@@ -77,5 +77,4 @@ var internals = {};

return callback(
new Error({
stack:
'No such driver found, please try to install it via ' +
new Error(
'No such driver found, please try to install it via ' +
'npm install db-migrate-' +

@@ -86,3 +85,3 @@ config.driver +

config.driver
})
)
);

@@ -89,0 +88,0 @@ }

@@ -34,3 +34,3 @@ {

],
"version": "0.10.1",
"version": "0.10.2",
"engines": {

@@ -37,0 +37,0 @@ "node": ">=0.6.0"

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