dbmate 2.19.0 → 2.21.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.
- package/README.md +1 -1
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -609,7 +609,7 @@ _If you notice any inaccuracies in this table, please [propose a change](https:/
|
|
|
609
609
|
|
|
610
610
|
Dbmate is written in Go, pull requests are welcome.
|
|
611
611
|
|
|
612
|
-
Tests are run against a real database using docker
|
|
612
|
+
Tests are run against a real database using docker compose. To build a docker image and run the tests:
|
|
613
613
|
|
|
614
614
|
```sh
|
|
615
615
|
$ make docker-all
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dbmate",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.21.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.
|
|
28
|
-
"@dbmate/linux-x64": "2.
|
|
29
|
-
"@dbmate/linux-arm": "2.
|
|
30
|
-
"@dbmate/linux-arm64": "2.
|
|
31
|
-
"@dbmate/darwin-x64": "2.
|
|
32
|
-
"@dbmate/darwin-arm64": "2.
|
|
33
|
-
"@dbmate/win32-x64": "2.
|
|
27
|
+
"@dbmate/linux-ia32": "2.21.0",
|
|
28
|
+
"@dbmate/linux-x64": "2.21.0",
|
|
29
|
+
"@dbmate/linux-arm": "2.21.0",
|
|
30
|
+
"@dbmate/linux-arm64": "2.21.0",
|
|
31
|
+
"@dbmate/darwin-x64": "2.21.0",
|
|
32
|
+
"@dbmate/darwin-arm64": "2.21.0",
|
|
33
|
+
"@dbmate/win32-x64": "2.21.0"
|
|
34
34
|
}
|
|
35
35
|
}
|