dbmate 2.4.0 → 2.6.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
@@ -167,6 +167,7 @@ protocol://username:password@host:port/database_name?options
167
167
  ```
168
168
 
169
169
  - `protocol` must be one of `mysql`, `postgres`, `postgresql`, `sqlite`, `sqlite3`, `clickhouse`
170
+ - `username` and `password` must be URL encoded (you will get an error if you use special charactors)
170
171
  - `host` can be either a hostname or IP address
171
172
  - `options` are driver-specific (refer to the underlying Go SQL drivers if you wish to use these)
172
173
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dbmate",
3
- "version": "2.4.0",
3
+ "version": "2.6.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.4.0",
28
- "@dbmate/linux-x64": "2.4.0",
29
- "@dbmate/linux-arm": "2.4.0",
30
- "@dbmate/linux-arm64": "2.4.0",
31
- "@dbmate/darwin-x64": "2.4.0",
32
- "@dbmate/darwin-arm64": "2.4.0",
33
- "@dbmate/win32-x64": "2.4.0"
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"
34
34
  }
35
35
  }