knex-migrator 4.2.2 → 4.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/knex-migrator-health +1 -1
- package/bin/knex-migrator-init +1 -1
- package/bin/knex-migrator-migrate +1 -1
- package/bin/knex-migrator-reset +1 -1
- package/bin/knex-migrator-rollback +1 -1
- package/lib/index.js +1 -1
- package/package.json +4 -3
- package/logging.js +0 -8
package/bin/knex-migrator-health
CHANGED
package/bin/knex-migrator-init
CHANGED
package/bin/knex-migrator-reset
CHANGED
package/lib/index.js
CHANGED
|
@@ -5,7 +5,7 @@ const debug = require('debug')('knex-migrator:index');
|
|
|
5
5
|
const database = require('./database');
|
|
6
6
|
const utils = require('./utils');
|
|
7
7
|
const errors = require('./errors');
|
|
8
|
-
const logging = require('
|
|
8
|
+
const logging = require('@tryghost/logging');
|
|
9
9
|
const migrations = require('../migrations');
|
|
10
10
|
const locking = require('./locking');
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "knex-migrator",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.3",
|
|
4
4
|
"description": "Database migrations with knex.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ghost",
|
|
@@ -47,12 +47,13 @@
|
|
|
47
47
|
"node": "^12.22.1 || ^14.17.0 || ^16.13.0"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
+
"@tryghost/logging": "2.0.4",
|
|
50
51
|
"bluebird": "3.7.2",
|
|
51
52
|
"commander": "5.1.0",
|
|
52
53
|
"compare-ver": "2.0.2",
|
|
53
|
-
"debug": "4.3.
|
|
54
|
+
"debug": "4.3.4",
|
|
54
55
|
"ghost-ignition": "4.6.3",
|
|
55
|
-
"knex": "0.21.
|
|
56
|
+
"knex": "0.21.21",
|
|
56
57
|
"lodash": "4.17.21",
|
|
57
58
|
"moment": "2.24.0",
|
|
58
59
|
"nconf": "0.11.3",
|