rubenv / sql-migrate

SQL schema migration tool for Go.
MIT License
3.16k stars 269 forks source link

Possible release to fix build issue on Alpine Linux #260

Closed pejter closed 6 months ago

pejter commented 6 months ago

https://github.com/rubenv/sql-migrate/commit/bc5e259a9623795fe565877f8b711b78a2bc2933 fixed https://github.com/mattn/go-sqlite3/issues/1164 which causes a build issue on Alpine Linux. Is 1.6.1 release on the horizon so the fix is available?

Steps to reproduce:

  1. Launch a docker container with latest golang image (golang:1.21.6-alpine3.19 as of writing this)
  2. apk add build-base
  3. go install -v github.com/rubenv/sql-migrate/sql-migrate@v1.6.0 (this results in the error)
  4. go install -v github.com/rubenv/sql-migrate/sql-migrate@master (github.com/mattn/go-sqlite3 v1.14.19 used, no error)
rubenv commented 6 months ago

Done! Thanks for the reminder!