Skip to content

Releases: doug-martin/goqu

v2.0.2

29 May 14:33
Compare
Choose a tag to compare
  • Changed references to "github.com/doug-martin/goqu" to "gopkg.in/doug-martin/goqu.v2"

v2.0.1

27 May 14:39
Compare
Choose a tag to compare
  • Fixed issue when ScanStruct(s) was used with SelectDistinct and caused a panic.

v2.0.0

23 May 04:39
Compare
Choose a tag to compare
  • When scanning a struct or slice of structs, the struct(s) will be parsed for the column names to select. #9- @TechnotronicOz

v1.0.0

19 Mar 15:41
Compare
Choose a tag to compare
  • You can now passed an IdentiferExpression to As #8- @croachrose

v0.3.1

15 Mar 16:45
Compare
Choose a tag to compare
  • Fixed issue setting Logger when starting a new transaction.

v0.3.0

14 Mar 01:53
Compare
Choose a tag to compare
  • Changed sql generation methods to use a common naming convention. To(Sql|Insert|Update|Delete)
    • Also changed to have common return values string, []interface{}, error)
  • Added Dataset.Prepared which allows a user to specify whether or not SQL should be interpolated. #7
  • Updated Docs
    • More examples
  • Increased test coverage.

v0.2.0

11 Mar 03:52
Compare
Choose a tag to compare
  • Changed CrudExec to not wrap driver errors in a GoquError #2
  • Added ability to use a dataset in an Ex map or Eq expression without having to use In #3
    • db.From("test").Where(goqu.Ex{"a": db.From("test").Select("b")})
  • Updated readme with links to DefaultAdapter

v0.1.1

09 Mar 03:38
Compare
Choose a tag to compare

v0.1.0

08 Mar 18:40
Compare
Choose a tag to compare
  • Added:
  • More tests and examples
  • Added CONTRIBUTING.md
  • Added LICENSE information
  • Removed godoc introduction in favor of just maintaining the README.

v0.0.2

06 Mar 21:38
Compare
Choose a tag to compare
  • Fixed issue with goqu.New not returning a pointer to a Database