mirror of
https://github.com/pressly/goose.git
synced 2025-05-31 11:42:04 +00:00
Release v3.18.0
This commit is contained in:
parent
d9fa72578a
commit
6f5c152c33
@ -7,6 +7,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [v3.18.0] - 2024-01-31
|
||||||
|
|
||||||
- Add environment variable substitution for SQL migrations. (#604)
|
- Add environment variable substitution for SQL migrations. (#604)
|
||||||
|
|
||||||
- This feature is **disabled by default**, and can be enabled by adding an annotation to the
|
- 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}';
|
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)
|
- Fixed query for list migrations in YDB (#684)
|
||||||
|
|
||||||
## [v3.17.0] - 2023-12-15
|
## [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.
|
- 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.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.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.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
|
[v3.15.1]: https://github.com/pressly/goose/compare/v3.15.0...v3.15.1
|
||||||
|
2
goose.go
2
goose.go
@ -9,7 +9,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Deprecated: VERSION will no longer be supported in the next major release.
|
// Deprecated: VERSION will no longer be supported in the next major release.
|
||||||
const VERSION = "v3.17.0"
|
const VERSION = "v3.18.0"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
minVersion = int64(0)
|
minVersion = int64(0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user