-
Notifications
You must be signed in to change notification settings - Fork 334
Open
Labels
Description
Description
- Version: v2.28.0
- Database: -
- Operating System: go version go1.25.4 darwin/arm64
Steps To Reproduce
go mod init foo
go: creating new go.mod: module foo
go: to add module requirements and sums:
go mod tidy
go get github.com/amacneil/dbmate/v2@v2.28.0
(... some downloads)
go: github.com/amacneil/dbmate/v2 imports
github.com/amacneil/dbmate/v2/pkg/driver/postgres: cannot find module providing package github.com/amacneil/dbmate/v2/pkg/driver/postgres
(exit code 1)
I guess this has to do something with the MRs that make up v2.28.0, as the same works for v2.27.0.
Or with the latest go version 1.25.4, as this also works with 1.24.10 (with both 2.27.0 and 2.28.0)
go mod init foo
go: creating new go.mod: module foo
go: to add module requirements and sums:
go mod tidy
go get github.com/amacneil/dbmate/v2@v2.27.0
(... some downloads)
(exit code 0)
Expected Behavior
The user should be able to go get v2.28.0 in go 1.25.4