Skip to content

Releases: src-d/go-kallax

v1.2.7

07 Jun 11:46
Compare
Choose a tag to compare

Bug fixes

  • Correct generation of constructors parameter/result types #164

v1.2.6

07 Jun 11:43
Compare
Choose a tag to compare

Bug fixes

  • floa64 fields generated double columns, which was not correct. Now they generate a correct double precision column.

v1.2.5

24 May 08:06
Compare
Choose a tag to compare

Fixes

  • Fixes the issue of not being able to correctly detect kallax types when they are vendored.

v1.2.4

16 May 10:10
Compare
Choose a tag to compare

Fixes

  • Fixes tests and behavior of the generator in windows.
  • Setup appveyor for tracking future windows regressions.

v1.2.3

16 May 07:14
Compare
Choose a tag to compare

Fixes

  • kallax:"new_column_name" was not working properly.

v1.2.2

15 May 16:57
Compare
Choose a tag to compare

Fixes

  • Models with no fields but its autoincrementable primary key return an error on Insert now, as opposed to a SQL invalid syntax error.
  • INSERTs and DELETEs now log their debug output.

v1.2.1

09 May 08:23
Compare
Choose a tag to compare

New features

  • Added benchmark against sqlboiler
  • Added FindAll method to all typed stores to avoid having to use ResultSet.All after Find.

v1.2.0

08 May 15:49
Compare
Choose a tag to compare

New features

  • Implemented automatic migration generation.
  • Integrated mattes/migrate to perform migrations.
  • New API for creating operators.

Fixes

Documentation

  • New caveats added.
  • Transaction documentation.
  • Documentation about creating custom operators.

Notes

This update requires regenerating models. It is backwards compatible, though, so the only downside of not regenerating the models is the fact that your time.Time fields will not be truncated before saving.

v1.1.4

03 May 14:56
Compare
Choose a tag to compare

New features

  • Added NOT SIMILAR TO and ILIKE operators.
  • Added Debug and DebugWith methods to Store and typed stores to debug SQL statements.

v1.1.3

03 May 07:31
Compare
Choose a tag to compare
  • Added SIMILAR TO operator.