Skip to content

Commit 1eab9e4

Browse files
author
Travis CI
committed
v1.0.0-beta.12 Release 🎉 🎆 🔔
[skip ci]
1 parent 16255ff commit 1eab9e4

File tree

2 files changed

+27
-9
lines changed

2 files changed

+27
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [v1.0.0-beta.12](https://github.com/leapfrogtechnology/sync-db/tree/v1.0.0-beta.12) (2021-03-29)
4+
5+
[Full Changelog](https://github.com/leapfrogtechnology/sync-db/compare/v1.0.0-beta.11...v1.0.0-beta.12)
6+
7+
**Changes**
8+
9+
- Bump version to 1.0.0-beta.12 [\#121](https://github.com/leapfrogtechnology/sync-db/pull/121) ([samirsilwal](https://github.com/samirsilwal))
10+
- Ability to provide custom configuration with --config flag [\#120](https://github.com/leapfrogtechnology/sync-db/pull/120) ([samirsilwal](https://github.com/samirsilwal))
11+
312
## [v1.0.0-beta.11](https://github.com/leapfrogtechnology/sync-db/tree/v1.0.0-beta.11) (2021-03-25)
413

514
[Full Changelog](https://github.com/leapfrogtechnology/sync-db/compare/v1.0.0-beta.10...v1.0.0-beta.11)

README.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $ npm install -g @leapfrogtechnology/sync-db
4545
$ sync-db COMMAND
4646
running command...
4747
$ sync-db (-v|--version|version)
48-
@leapfrogtechnology/sync-db/1.0.0-beta.11 linux-x64 node-v15.12.0
48+
@leapfrogtechnology/sync-db/1.0.0-beta.12 linux-x64 node-v15.12.0
4949
$ sync-db --help [COMMAND]
5050
USAGE
5151
$ sync-db COMMAND
@@ -79,7 +79,7 @@ USAGE
7979
$ sync-db
8080
```
8181

82-
_See code: [src/commands/index.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/index.ts)_
82+
_See code: [src/commands/index.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/index.ts)_
8383

8484
## `sync-db help [COMMAND]`
8585

@@ -110,12 +110,13 @@ ARGUMENTS
110110
NAME Object or filename to generate.
111111
112112
OPTIONS
113+
-c, --config=config Custom configuration file.
113114
-t, --type=TYPE [default: migration] Type of file to generate.
114115
--create Generate create table stub.
115116
--object-name=object-name Name of table/view/routine to migrate.
116117
```
117118

118-
_See code: [src/commands/make.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/make.ts)_
119+
_See code: [src/commands/make.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/make.ts)_
119120

120121
## `sync-db make-publish`
121122

@@ -124,9 +125,12 @@ Publish migration templates files.
124125
```
125126
USAGE
126127
$ sync-db make-publish
128+
129+
OPTIONS
130+
-c, --config=config Custom configuration file.
127131
```
128132

129-
_See code: [src/commands/make-publish.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/make-publish.ts)_
133+
_See code: [src/commands/make-publish.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/make-publish.ts)_
130134

131135
## `sync-db migrate-latest`
132136

@@ -137,12 +141,13 @@ USAGE
137141
$ sync-db migrate-latest
138142
139143
OPTIONS
144+
-c, --config=config Custom configuration file.
140145
--connection-resolver=PATH Path to the connection resolver.
141146
--dry-run Dry run migration.
142147
--only=CONNECTION_ID Filter only a single connection.
143148
```
144149

145-
_See code: [src/commands/migrate-latest.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/migrate-latest.ts)_
150+
_See code: [src/commands/migrate-latest.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/migrate-latest.ts)_
146151

147152
## `sync-db migrate-list`
148153

@@ -153,11 +158,12 @@ USAGE
153158
$ sync-db migrate-list
154159
155160
OPTIONS
161+
-c, --config=config Custom configuration file.
156162
--connection-resolver=PATH Path to the connection resolver.
157163
--only=CONNECTION_ID Filter only a single connection.
158164
```
159165

160-
_See code: [src/commands/migrate-list.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/migrate-list.ts)_
166+
_See code: [src/commands/migrate-list.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/migrate-list.ts)_
161167

162168
## `sync-db migrate-rollback`
163169

@@ -168,12 +174,13 @@ USAGE
168174
$ sync-db migrate-rollback
169175
170176
OPTIONS
177+
-c, --config=config Custom configuration file.
171178
--connection-resolver=PATH Path to the connection resolver.
172179
--dry-run Dry run rollback.
173180
--only=CONNECTION_ID Filter only a single connection.
174181
```
175182

176-
_See code: [src/commands/migrate-rollback.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/migrate-rollback.ts)_
183+
_See code: [src/commands/migrate-rollback.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/migrate-rollback.ts)_
177184

178185
## `sync-db prune`
179186

@@ -184,12 +191,13 @@ USAGE
184191
$ sync-db prune
185192
186193
OPTIONS
194+
-c, --config=config Custom configuration file.
187195
--connection-resolver=PATH Path to the connection resolver.
188196
--dry-run Dry run prune.
189197
--only=CONNECTION_ID Filter only a single connection.
190198
```
191199

192-
_See code: [src/commands/prune.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/prune.ts)_
200+
_See code: [src/commands/prune.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/prune.ts)_
193201

194202
## `sync-db synchronize`
195203

@@ -200,14 +208,15 @@ USAGE
200208
$ sync-db synchronize
201209
202210
OPTIONS
211+
-c, --config=config Custom configuration file.
203212
-f, --force Force synchronization.
204213
--connection-resolver=PATH Path to the connection resolver.
205214
--dry-run Dry run synchronization.
206215
--only=CONNECTION_ID Filter only a single connection.
207216
--skip-migration Skip running migrations.
208217
```
209218

210-
_See code: [src/commands/synchronize.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.11/src/commands/synchronize.ts)_
219+
_See code: [src/commands/synchronize.ts](https://github.com/leapfrogtechnology/sync-db/blob/v1.0.0-beta.12/src/commands/synchronize.ts)_
211220

212221
<!-- commandsstop -->
213222

0 commit comments

Comments
 (0)