mirror of
https://github.com/pressly/goose.git
synced 2025-04-27 13:13:52 +00:00
Release v3.21.1
This commit is contained in:
parent
7da8209abd
commit
3ad137847a
@ -7,7 +7,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [v3.21.0]
|
## [v3.21.1]
|
||||||
|
|
||||||
- Add `GetVersions` method to `goose.Provider`, returns the current (max db) version and the latest
|
- Add `GetVersions` method to `goose.Provider`, returns the current (max db) version and the latest
|
||||||
(max filesystem) version. (#756)
|
(max filesystem) version. (#756)
|
||||||
@ -20,6 +20,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
to get the latest version_id irrespective of the order of applied migrations.
|
to get the latest version_id irrespective of the order of applied migrations.
|
||||||
- Refactor existing portions of the code to use the new `GetLatestVersion` method.
|
- Refactor existing portions of the code to use the new `GetLatestVersion` method.
|
||||||
|
|
||||||
|
## [v3.21.0]
|
||||||
|
|
||||||
|
- Retracted. Broken release, please use v3.21.1 instead.
|
||||||
|
|
||||||
## [v3.20.0]
|
## [v3.20.0]
|
||||||
|
|
||||||
- Expand the `Store` interface by adding a `GetLatestVersion` method and make the interface public.
|
- Expand the `Store` interface by adding a `GetLatestVersion` method and make the interface public.
|
||||||
@ -183,7 +187,8 @@ Here's a quick summary:
|
|||||||
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
|
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
|
||||||
- Return error when no migration files found or dir is not a directory.
|
- Return error when no migration files found or dir is not a directory.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/pressly/goose/compare/v3.21.0...HEAD
|
[Unreleased]: https://github.com/pressly/goose/compare/v3.21.1...HEAD
|
||||||
|
[v3.21.1]: https://github.com/pressly/goose/compare/v3.20.0...v3.21.1
|
||||||
[v3.21.0]: https://github.com/pressly/goose/compare/v3.20.0...v3.21.0
|
[v3.21.0]: https://github.com/pressly/goose/compare/v3.20.0...v3.21.0
|
||||||
[v3.20.0]: https://github.com/pressly/goose/compare/v3.19.2...v3.20.0
|
[v3.20.0]: https://github.com/pressly/goose/compare/v3.19.2...v3.20.0
|
||||||
[v3.19.2]: https://github.com/pressly/goose/compare/v3.19.1...v3.19.2
|
[v3.19.2]: https://github.com/pressly/goose/compare/v3.19.1...v3.19.2
|
||||||
|
8
go.mod
8
go.mod
@ -76,14 +76,8 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
retract (
|
retract (
|
||||||
|
v3.21.0 // Invalid replace directives
|
||||||
v3.12.2 // Invalid module reference
|
v3.12.2 // Invalid module reference
|
||||||
v3.12.1 // Invalid module reference
|
v3.12.1 // Invalid module reference
|
||||||
v3.12.0 // Invalid module reference
|
v3.12.0 // Invalid module reference
|
||||||
)
|
)
|
||||||
|
|
||||||
// Pin these drivers to specific versions, as future versions force us to update the minimum Go
|
|
||||||
// version.
|
|
||||||
|
|
||||||
replace github.com/ClickHouse/clickhouse-go/v2 => github.com/ClickHouse/clickhouse-go/v2 v2.17.1
|
|
||||||
|
|
||||||
replace github.com/ydb-platform/ydb-go-sdk/v3 => github.com/ydb-platform/ydb-go-sdk/v3 v3.55.1
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user