From 9024628f7981ab9d83467875645edb99542db0bb 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 | 17 +++++++++++++++-- cmd/goose/driver_duckdb.go | 5 ++--- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d07be7962..add0072ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,21 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [v3.19.1] - 2024-03-11 + +- 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 -- Add [duckdb](https://duckdb.org/) support +- Use [v3.19.1] instead. This was tagged but not released and does not contain release binaries. + - Fix selecting dialect for `redshift` - Add `GOOSE_MIGRATION_DIR` documentation - Bump github.com/opencontainers/runc to `v1.1.12` (security fix) @@ -139,7 +151,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..4854341f1 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 && !linux && !darwin +// +build !no_duckdb,!windows,!linux,!darwin package main