From f32259373172c3b4d37f0ee12032bc7ce3096e8e Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Thu, 29 Jul 2021 23:20:58 -0700 Subject: [PATCH] bring change log up to date --- .circleci/config.yml | 2 +- CHANGELOG.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d8a8757..864ed3d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/next-jdbc docker: - - image: circleci/clojure:openjdk-11-tools-deps-1.10.3.855 + - image: circleci/clojure:openjdk-11-tools-deps-1.10.3.933 # environment: # JVM_OPTS: -Xmx3200m steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bd20c3..3170bc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ Only accretive/fixative changes will be made from now on. * 1.2.next in progress * Address #173 by extending `DatafiableRow` to `ResultSet` so there's a public method to call on (rows of) a JDBC result set directly. + * Address #171 by clarifying that you cannot use `clojure.java.jdbc` functions inside `next.jdbc/with-transaction` and discuss how to migrate transaction-based code in the **Migration** guide. * Address #169 by expanding the description of `with-transaction` in **Getting Started**. + * Cross-link to HoneySQL documentation for JSON/JSONB manipulation. + * Remove superfluous prev/next links in docs (cljdoc does this automatically now). + * Update `depstar`, `test-runner`, and CI versions. * 1.2.674 -- 2021-06-16 * Fix #167 by adding `:property-separator` to `next.jdbc.connection/dbtypes` and using it in `jdbc-url`.