Releases: doug-martin/goqu
Releases · doug-martin/goqu
v9.3.0
- [ADDED] Using Update, Insert, or Delete datasets in sub selects and CTEs #164
v9.2.0
- [ADDED] exec.Scanner: New exposed scanner supports iterative scanning #157 - @akarl
v9.1.0
- [FIXED] ExampleDoUpdate does't work in postgres #156
- [FIXED] Issue with timezone being lost #163
v9.0.1
- [FIXED] Issue where
NULL
, TRUE
and FALSE
are interpolated when using an IS
clause. #165
v9.0.0
- Changed
NULL
, TRUE
, FALSE
to not be interpolated when creating prepared statements. #132, #158 - @marshallmcmullen
- Updated dependencies
github.com/lib/pq v1.1.1 -> v1.2.0
github.com/mattn/go-sqlite3 v1.10.0 -> v1.11.0
github.com/stretchr/testify v1.3.0 -> v1.4.0
v8.6.0
v8.6.0
- [ADDED]
SetError()
and Error()
to all datasets. #152 and #150 - @marshallmcmullen
v8.4.1
- [FIXED] Returning func be able to handle nil #140
v8.4.0
- Created new
sqlgen
module to encapsulate sql generation
- Broke SQLDialect inti new SQL generators for each statement type.
- Test refactor
- Moved to a test case pattern to allow for quickly adding new test cases.
v8.3.2
- [FIXED] Data race during query factory initialization #133 and #136 - @o1egl