honeysql/CHANGES.md

39 lines
1.2 KiB
Markdown
Raw Normal View History

2015-05-10 17:00:35 +00:00
## 0.6.1 In development
2015-05-10 16:56:54 +00:00
## 0.6.0
2015-05-08 23:38:14 +00:00
* Convert seq param values to literal sql param lists (@dball)
* Apply seq to sets when converting to sql (@dball)
2015-05-08 23:39:06 +00:00
2015-05-08 23:00:38 +00:00
## 0.5.3
2014-10-07 21:46:52 +00:00
2015-04-24 06:44:19 +00:00
* Support exists syntax (@cddr)
2015-04-20 01:57:44 +00:00
* Support locking selects (@dball)
* Add sql array type and reader literal (@loganmhb)
2015-04-22 00:49:41 +00:00
* Allow user to specify where in sort order NULLs fall (@mishok13)
2014-10-07 21:46:52 +00:00
## 0.5.2
* Add value type to inhibit interpreting clojure sequences as subqueries (@MichaelParam)
* Improve documentation (@hlship)
* Add type hints to avoid reflection (@MichaelBlume)
* Allow database-specific query parameterization (@icambron, @MichaelBlume)
## 0.5.1
* Add :url to project.clj (@MichaelBlume)
## 0.5.0
* Support basic common table expressions (:with, :with-recursive) (@akhudek)
* Make clause order extensible (@MichaelBlume)
* Support extended INSERT INTO...SELECT syntax (@ddellacosta)
* Update clojure version to 1.6.0 (@MichaelBlume)
* Implement ToSql on Object, vastly improving performance (@MichaelBlume)
* Support CAST(foo AS type) (@senior)
* Support postgres-native parameters (@icambron)
* Support :full-join (@justindell)
* Expose :arglist metadata in defhelper (@hlship)
* Improvements to the documentation, especially showing some recently added features, such as inserts
and updates.