Skip to content

Commit db39f22

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

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,23 @@ 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+
- Add [duckdb](https://duckdb.org/) support
13+
- Note, not `windows` support
14+
- Fix selecting dialect for `redshift`
15+
- Add `GOOSE_MIGRATION_DIR` documentation
16+
- Bump github.com/opencontainers/runc to `v1.1.12` (security fix)
17+
- Update CI tests for go1.22
18+
- Make goose annotations case-insensitive
19+
- All `-- +goose` annotations are now case-insensitive. This means that `-- +goose Up` and `--
20+
+goose up` are now equivalent. This change was made to improve the user experience and to make the
21+
annotations more consistent.
22+
1023
## [v3.19.0] - 2024-03-11
1124

25+
- Use [v3.19.1] instead. This was tagged but not released and does not contain release binaries.
26+
1227
- Add [duckdb](https://duckdb.org/) support
1328
- Fix selecting dialect for `redshift`
1429
- Add `GOOSE_MIGRATION_DIR` documentation
@@ -139,7 +154,8 @@ Here's a quick summary:
139154
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
140155
- Return error when no migration files found or dir is not a directory.
141156

142-
[Unreleased]: https://github.com/pressly/goose/compare/v3.19.0...HEAD
157+
[Unreleased]: https://github.com/pressly/goose/compare/v3.19.1...HEAD
158+
[v3.19.1]: https://github.com/pressly/goose/compare/v3.19.0...v3.19.1
143159
[v3.19.0]: https://github.com/pressly/goose/compare/v3.18.0...v3.19.0
144160
[v3.18.0]: https://github.com/pressly/goose/compare/v3.17.0...v3.18.0
145161
[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
2+
// +build !no_duckdb,!windows
43

54
package main
65

0 commit comments

Comments
 (0)