Skip to content

Commit 9024628

Browse files
committed
Release v3.19.1
1 parent 5765bc0 commit 9024628

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

CHANGELOG.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,21 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [v3.19.1] - 2024-03-11
11+
12+
- Fix selecting dialect for `redshift`
13+
- Add `GOOSE_MIGRATION_DIR` documentation
14+
- Bump github.com/opencontainers/runc to `v1.1.12` (security fix)
15+
- Update CI tests for go1.22
16+
- Make goose annotations case-insensitive
17+
- All `-- +goose` annotations are now case-insensitive. This means that `-- +goose Up` and `--
18+
+goose up` are now equivalent. This change was made to improve the user experience and to make the
19+
annotations more consistent.
20+
1021
## [v3.19.0] - 2024-03-11
1122

12-
- Add [duckdb](https://duckdb.org/) support
23+
- Use [v3.19.1] instead. This was tagged but not released and does not contain release binaries.
24+
1325
- Fix selecting dialect for `redshift`
1426
- Add `GOOSE_MIGRATION_DIR` documentation
1527
- Bump github.com/opencontainers/runc to `v1.1.12` (security fix)
@@ -139,7 +151,8 @@ Here's a quick summary:
139151
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
140152
- Return error when no migration files found or dir is not a directory.
141153

142-
[Unreleased]: https://github.com/pressly/goose/compare/v3.19.0...HEAD
154+
[Unreleased]: https://github.com/pressly/goose/compare/v3.19.1...HEAD
155+
[v3.19.1]: https://github.com/pressly/goose/compare/v3.19.0...v3.19.1
143156
[v3.19.0]: https://github.com/pressly/goose/compare/v3.18.0...v3.19.0
144157
[v3.18.0]: https://github.com/pressly/goose/compare/v3.17.0...v3.18.0
145158
[v3.17.0]: https://github.com/pressly/goose/compare/v3.16.0...v3.17.0

cmd/goose/driver_duckdb.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
//go:build !no_duckdb && !(windows && arm64)
2-
// +build !no_duckdb
3-
// +build !windows !arm64
1+
//go:build !no_duckdb && !windows && !linux && !darwin
2+
// +build !no_duckdb,!windows,!linux,!darwin
43

54
package main
65

0 commit comments

Comments
 (0)