dbmate 2.6.0 → 2.8.0

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -142,6 +142,7 @@ The following options are available with all commands. You must use command line
142
142
  - `--migrations-table "schema_migrations"` - database table to record migrations in. _(env: `DBMATE_MIGRATIONS_TABLE`)_
143
143
  - `--schema-file, -s "./db/schema.sql"` - a path to keep the schema.sql file. _(env: `DBMATE_SCHEMA_FILE`)_
144
144
  - `--no-dump-schema` - don't auto-update the schema.sql file on migrate/rollback _(env: `DBMATE_NO_DUMP_SCHEMA`)_
145
+ - `--strict` - fail if migrations would be applied out of order _(env: `DBMATE_STRICT`)_
145
146
  - `--wait` - wait for the db to become available before executing the subsequent command _(env: `DBMATE_WAIT`)_
146
147
  - `--wait-timeout 60s` - timeout for --wait flag _(env: `DBMATE_WAIT_TIMEOUT`)_
147
148
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dbmate",
3
- "version": "2.6.0",
3
+ "version": "2.8.0",
4
4
  "description": "A lightweight, framework-agnostic database migration tool",
5
5
  "repository": "https://github.com/amacneil/dbmate",
6
6
  "homepage": "https://github.com/amacneil/dbmate#readme",
@@ -24,12 +24,12 @@
24
24
  "build": "tsc --build"
25
25
  },
26
26
  "optionalDependencies": {
27
- "@dbmate/linux-ia32": "2.6.0",
28
- "@dbmate/linux-x64": "2.6.0",
29
- "@dbmate/linux-arm": "2.6.0",
30
- "@dbmate/linux-arm64": "2.6.0",
31
- "@dbmate/darwin-x64": "2.6.0",
32
- "@dbmate/darwin-arm64": "2.6.0",
33
- "@dbmate/win32-x64": "2.6.0"
27
+ "@dbmate/linux-ia32": "2.8.0",
28
+ "@dbmate/linux-x64": "2.8.0",
29
+ "@dbmate/linux-arm": "2.8.0",
30
+ "@dbmate/linux-arm64": "2.8.0",
31
+ "@dbmate/darwin-x64": "2.8.0",
32
+ "@dbmate/darwin-arm64": "2.8.0",
33
+ "@dbmate/win32-x64": "2.8.0"
34
34
  }
35
35
  }