From d789c00f5433e686301a744b588b597f53f2515d Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 7 Mar 2021 09:45:08 -0800 Subject: [PATCH] Reflect latest 1.x version --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- doc/differences-from-1-x.md | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a35cd59..9db4e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ # HoneySQL pre-2.x Changes +* 1.0.461 -- 2021-02-22 + * **Fix #299 potential SQL injection vulnerability.** + * Fix/Improve `merge-where` (and `merge-having`) behavior. #282 via #283 (@camsaul) + * 1.0.444 -- 2020-05-29 * Fix #259 so column names are always unqualified in inserts. (@jrdoane) * Fix #257 by adding support for `cross-join` / `merge-cross-join` / `:cross-join`. (@dcj) diff --git a/README.md b/README.md index ef11aae..a3158fb 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim ## Build -The latest stable version (1.0.444) on Clojars and on cljdoc (note: `honeysql/honeysql`): +The latest stable version (1.0.461) on Clojars and on cljdoc (note: `honeysql/honeysql`): -[![Clojars Project](https://clojars.org/honeysql/honeysql/latest-version.svg)](https://clojars.org/honeysql/honeysql) [![cljdoc badge](https://cljdoc.org/badge/honeysql/honeysql?1.0.444)](https://cljdoc.org/d/honeysql/honeysql/CURRENT) +[![Clojars Project](https://clojars.org/honeysql/honeysql/latest-version.svg)](https://clojars.org/honeysql/honeysql) [![cljdoc badge](https://cljdoc.org/badge/honeysql/honeysql?1.0.461)](https://cljdoc.org/d/honeysql/honeysql/1.0.461) This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository. diff --git a/doc/differences-from-1-x.md b/doc/differences-from-1-x.md index 5e5aef2..3277b6d 100644 --- a/doc/differences-from-1-x.md +++ b/doc/differences-from-1-x.md @@ -18,9 +18,9 @@ In addition, HoneySQL 2.x contains different namespaces so you can have both ver ```clojure ;; in deps.edn: -honeysql {:mvn/version "1.0.444"} +honeysql {:mvn/version "1.0.461"} ;; or, more correctly: -honeysql/honeysql {:mvn/version "1.0.444"} +honeysql/honeysql {:mvn/version "1.0.461"} ;; in use: (ns my.project