Skip to content

Commit

Permalink
Release v3.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Mar 11, 2024
1 parent 5765bc0 commit 9024628
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions cmd/goose/driver_duckdb.go
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 9024628

Please sign in to comment.