From e3ff1b7218f561841ebd7c7880d5e02eb303d717 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 24 Sep 2023 17:03:11 -0700 Subject: [PATCH] update changelog to match release notes adds the database driver update note --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c2975f..50e3dc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Only accretive/fixative changes will be made from now on. * 1.3.894 -- 2023-09-24 * Fix [#257](https://github.com/seancorfield/next-jdbc/issues/257) by making the `fdef` spec for `with-transaction` more permissive. Also add specs for `on-connection` and the `+options` variants of both macros. * Address [#256](https://github.com/seancorfield/next-jdbc/issues/256) by adding `with-transaction+options` and `on-connection+options`. + * Updates most of the JDBC drivers used for testing, including SQLite 3.43.0.0 which now throws an exception when `.getGeneratedKeys()` is called so you cannot use `:return-generated-keys true` with it but you can add `RETURNING *` to your SQL statements instead (the tests have been updated to reflect this). * Update `tools.build` to 0.9.5 (and remove `:java-opts` from `build/test`) * 1.3.883 -- 2023-06-25