Releases: golang-migrate/migrate
Releases · golang-migrate/migrate
v4.5.0
Breaking Changes
- For safety reasons, 
migrate downnow presents a confirmation prompt instead of running all down migrations thanks to @KlotzAndrew (#236)- For previous behavior, use 
migrate down -all. Namely, if you have scripts that runmigrate down, you'll now have to runmigrate down -all 
 - For previous behavior, use 
 
Changes
- Added support for Github Enterprise sources thanks to @kasparasg (#234)
 
v4.4.0
v4.3.1
Changes
- Additional linters were enabled thanks to @kmuratov (#206)
- Previously many errors in deferred calls were ignored. We're now using multierror for errors arising in a deferred call, so this may break any code that relied on specific errors.
 
 - Official support for Firebird is dropped. For more info, see: #49 (comment)
 - Another attempt at fixing #202
 
v4.3.0
Changes
- Fixed bug (#164) introduced by #150 by not re-creating the schema version table thanks to @lukaspj (#173)
- This change was made to all DB drivers and may break your dev workflow if you expect the schema version table to exist after 
Migrate.Drop()is run. 
 - This change was made to all DB drivers and may break your dev workflow if you expect the schema version table to exist after 
 - Support Go 1.12.x and drop support for Go 1.10.x
- Distributed CLI binaries are now built with Go 1.12.x
 
 - Updated dependencies
- Fixes issue with dependencies using wrong golint import path (#202)
 
 - Support gitlab as a migration source thanks to @bpatyi (#184)
 - Support migrations for the Firebird database thanks to @kmuratov (#191)
 
v4.2.5
v4.2.4
v4.2.3
v4.2.2
v4.2.1
v4.2.0
Breaking Changes
- Update 
github.com/docker/dockerchecksum ingo.sumwhich is computed differently in Go 1.11.4- If you're using Go modules, you'll need to use Go 1.11.4 with this version.
 
 
Changes
- Update 
github.com/go-sql-driver/mysqlfromv1.4.0tov1.4.1to fix issue with connecting to a MySQL RDBMS w/o a password. Thanks to @fsouza for reporting (#139) and fixing (#141) the issue. - More tolerant URL parsing by file source driver thanks to @coolaj86 (#143)
 - Support 
NilVersionin ClickHouse db driver thanks to @bobrovde (#145)- To use this, you'll need to manually 
ALTERtheversioncolumn in the schema version table. e.g.ALTER schema_migrations MODIFY COLUMN version Int64 
 - To use this, you'll need to manually