From db39f2281588774c10d1ad09b2d1bcc222c48257 Mon Sep 17 00:00:00 2001 From: Mike Fridman Date: Mon, 11 Mar 2024 09:46:37 -0400 Subject: [PATCH] Release v3.19.1 --- CHANGELOG.md | 18 +++++++++++++++++- cmd/goose/driver_duckdb.go | 5 ++--- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d07be7962..7a982c4df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,23 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [v3.19.1] - 2024-03-11 + +- Add [duckdb](https://duckdb.org/) support + - Note, not `windows` support +- Fix selecting dialect for `redshift` +- Add `GOOSE_MIGRATION_DIR` documentation +- Bump github.com/opencontainers/runc to `v1.1.12` (security fix) +- Update CI tests for go1.22 +- Make goose annotations case-insensitive + - All `-- +goose` annotations are now case-insensitive. This means that `-- +goose Up` and `-- ++goose up` are now equivalent. This change was made to improve the user experience and to make the + annotations more consistent. + ## [v3.19.0] - 2024-03-11 +- Use [v3.19.1] instead. This was tagged but not released and does not contain release binaries. + - Add [duckdb](https://duckdb.org/) support - Fix selecting dialect for `redshift` - Add `GOOSE_MIGRATION_DIR` documentation @@ -139,7 +154,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.19.0...HEAD +[Unreleased]: https://github.com/pressly/goose/compare/v3.19.1...HEAD +[v3.19.1]: https://github.com/pressly/goose/compare/v3.19.0...v3.19.1 [v3.19.0]: https://github.com/pressly/goose/compare/v3.18.0...v3.19.0 [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 diff --git a/cmd/goose/driver_duckdb.go b/cmd/goose/driver_duckdb.go index 2035ea80d..4168baaec 100644 --- a/cmd/goose/driver_duckdb.go +++ b/cmd/goose/driver_duckdb.go @@ -1,6 +1,5 @@ -//go:build !no_duckdb && !(windows && arm64) -// +build !no_duckdb -// +build !windows !arm64 +//go:build !no_duckdb && !windows +// +build !no_duckdb,!windows package main