dbmate 2.10.0 → 2.11.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 +3 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -88,7 +88,7 @@ scoop install dbmate
88
88
 
89
89
  **Docker**
90
90
 
91
- Docker images are published to both Docker Hub ([`amacneil/dbmate`](https://hub.docker.com/r/amacneil/dbmate)) and Github Container Registry ([`ghcr.io/amacneil/dbmate`](https://ghcr.io/amacneil/dbmate)).
91
+ Docker images are published to GitHub Container Registry ([`ghcr.io/amacneil/dbmate`](https://ghcr.io/amacneil/dbmate)).
92
92
 
93
93
  Remember to set `--network=host` or see [this comment](https://github.com/amacneil/dbmate/issues/128#issuecomment-615924611) for more tips on using dbmate with docker networking):
94
94
 
@@ -260,6 +260,7 @@ DATABASE_URL="clickhouse://username:password@127.0.0.1:9000/database_name"
260
260
  To work with ClickHouse cluster, there are 4 connection query parameters that can be supplied:
261
261
 
262
262
  - `on_cluster` - Indicataion to use cluster statements and replicated migration table. (default: `false`) If this parameter is not supplied, other cluster related query parameters are ignored.
263
+
263
264
  ```sh
264
265
  DATABASE_URL="clickhouse://username:password@127.0.0.1:9000/database_name?on_cluster"
265
266
 
@@ -552,7 +553,7 @@ Why another database schema migration tool? Dbmate was inspired by many other to
552
553
  | Ability to wait for database to become ready | :white_check_mark: | | | | | | |
553
554
  | Database connection string loaded from environment variables | :white_check_mark: | | | | | | :white_check_mark: |
554
555
  | Automatically load .env file | :white_check_mark: | | | | | | |
555
- | No separate configuration file | :white_check_mark: | :white_check_mark: | | :white_check_mark: | :white_check_mark: | :white_check_mark: | |
556
+ | No separate configuration file | :white_check_mark: | :white_check_mark: | | :white_check_mark: | :white_check_mark: | :white_check_mark: | |
556
557
  | Language/framework independent | :white_check_mark: | :white_check_mark: | | :white_check_mark: | | | :white_check_mark: | :white_check_mark: |
557
558
  | **Drivers** |
558
559
  | PostgreSQL | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dbmate",
3
- "version": "2.10.0",
3
+ "version": "2.11.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.10.0",
28
- "@dbmate/linux-x64": "2.10.0",
29
- "@dbmate/linux-arm": "2.10.0",
30
- "@dbmate/linux-arm64": "2.10.0",
31
- "@dbmate/darwin-x64": "2.10.0",
32
- "@dbmate/darwin-arm64": "2.10.0",
33
- "@dbmate/win32-x64": "2.10.0"
27
+ "@dbmate/linux-ia32": "2.11.0",
28
+ "@dbmate/linux-x64": "2.11.0",
29
+ "@dbmate/linux-arm": "2.11.0",
30
+ "@dbmate/linux-arm64": "2.11.0",
31
+ "@dbmate/darwin-x64": "2.11.0",
32
+ "@dbmate/darwin-arm64": "2.11.0",
33
+ "@dbmate/win32-x64": "2.11.0"
34
34
  }
35
35
  }