Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-pg-migrate

Package Overview
Dependencies
Maintainers
3
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pg-migrate - npm Package Compare versions

Comparing version 3.17.0 to 3.18.0

6

CHANGELOG.md
# Change Log
## [3.18.0](2019-03-07)
### Added
- Returning list of run migrations [#411](https://github.com/salsita/node-pg-migrate/pull/411)
## [3.17.0](2019-03-05)

@@ -4,0 +10,0 @@

8

dist/runner.js

@@ -226,3 +226,3 @@ "use strict";

log("No migrations to run!");
return;
return [];
} // TODO: add some fancy colors to logging

@@ -252,2 +252,8 @@

}
return toRun.map(m => ({
path: m.path,
name: m.name,
timestamp: m.timestamp
}));
} finally {

@@ -254,0 +260,0 @@ db.close();

@@ -200,3 +200,3 @@ const path = require("path");

log("No migrations to run!");
return;
return [];
}

@@ -225,2 +225,8 @@

}
return toRun.map(m => ({
path: m.path,
name: m.name,
timestamp: m.timestamp
}));
} finally {

@@ -227,0 +233,0 @@ db.close();

2

package.json
{
"name": "node-pg-migrate",
"version": "3.17.0",
"version": "3.18.0",
"description": "Postgresql database migration management tool for node.js",

@@ -5,0 +5,0 @@ "author": "Theo Ephraim",

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