Release v3.18.0

pull/690/head v3.18.0
Mike Fridman 2024-01-31 09:24:07 -05:00
parent d9fa72578a
commit 6f5c152c33
No known key found for this signature in database
2 changed files with 7 additions and 2 deletions

View File

@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [v3.18.0] - 2024-01-31
- Add environment variable substitution for SQL migrations. (#604)
- This feature is **disabled by default**, and can be enabled by adding an annotation to the
@ -27,6 +29,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
SELECT * FROM regions WHERE name = '${REGION}';
```
- Add native [Turso](https://turso.tech/) support with libsql driver. (#658)
- Fixed query for list migrations in YDB (#684)
## [v3.17.0] - 2023-12-15
@ -123,7 +127,8 @@ Here's a quick summary:
- 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.
[Unreleased]: https://github.com/pressly/goose/compare/v3.17.0...HEAD
[Unreleased]: https://github.com/pressly/goose/compare/v3.18.0...HEAD
[v3.18.0]: https://github.com/pressly/goose/compare/v3.17.0...v3.18.0
[v3.17.0]: https://github.com/pressly/goose/compare/v3.16.0...v3.17.0
[v3.16.0]: https://github.com/pressly/goose/compare/v3.15.1...v3.16.0
[v3.15.1]: https://github.com/pressly/goose/compare/v3.15.0...v3.15.1

View File

@ -9,7 +9,7 @@ import (
)
// Deprecated: VERSION will no longer be supported in the next major release.
const VERSION = "v3.17.0"
const VERSION = "v3.18.0"
var (
minVersion = int64(0)