Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: wregis/migrate

Tags

v4.10.0

Toggle v4.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request golang-migrate#356 from jace-ys/master

Move migrate binary to /usr/local/bin in Dockerfile

v4.9.1

Toggle v4.9.1's commit message
Actually release windows 386 build

v4.9.0

Toggle v4.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request golang-migrate#343 from martinlindhe/win386

build-cli: Also build GOOS=windows GOARCH=386, fixes golang-migrate#339

v4.8.0

Toggle v4.8.0's commit message
Use new ql driver location

v4.7.1

Toggle v4.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request golang-migrate#305 from bxcodec/fixClickHouse

hotfix(dependency): resolve clickhouse dependency breaking changes

v4.7.0

Toggle v4.7.0's commit message
Add official support for firebird back

v4.6.2

Toggle v4.6.2's commit message
Improve error message in case no migration is found (golang-migrate#158)

* Improve error message in case no migration is found

* Return similar error

* Just log the error

* Fix error message

v4.6.1

Toggle v4.6.1's commit message
Properly filter out custom query params in MySQL DB driver

Addresses: golang-migrate#272

v4.6.0

Toggle v4.6.0's commit message
Let database.Open() use schemeFromURL as well (golang-migrate#271)

* Let database.Open() use schemeFromURL as well

Otherwise it will fail on MySQL DSNs.

Moved schemeFromURL into the database package. Also removed databaseSchemeFromURL
and sourceSchemeFromURL as they were just calling schemeFromURL.

Fixes golang-migrate#265 (comment)

* Moved url functions into internal/url

Also merged the test cases.

* Add some database tests to improve coverage

* Fix suggestions

v4.5.0

Toggle v4.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update migration docs

Correct and clarify information around empty migrations
Addresses: golang-migrate#244