Skip to content

Releases: src-d/go-kallax

v1.3.5

07 Jun 09:00
54324d6
Compare
Choose a tag to compare

Bug fixes:

  • Fixed ULID generation on low time resolution systems (e.g. MS Windows) (thank you @smola)

v1.3.4

07 Feb 00:01
6e31900
Compare
Choose a tag to compare

Enhancements

  • #256: Statement cacher can now be disabled on demand. This is not recommended for regular use as it degrades performance, use only if you need it.

Fixes

  • #254: Debug() instances now propagate to transaction stores.
  • #248: kallax gen now deletes a previously generated file before attempting to generate the new one.
  • #252: Added a warning about particular behaviour of UUID pointers.

v1.3.3

23 Nov 13:29
Compare
Choose a tag to compare

Bugs fixed

Improvements

v1.3.2

15 Nov 11:11
Compare
Choose a tag to compare

Bugs fixed

  • CLI errors (gen, migrate) are not silent anymore.

v1.3.1

15 Nov 11:13
Compare
Choose a tag to compare
do not remove the first field in updates

Signed-off-by: Miguel Molina <miguel@erizocosmi.co>

v1.3.0

03 Aug 13:46
Compare
Choose a tag to compare

New features

  • #214 due to the changes introduces in a bugfix, now infinitely nested saves are supported!
  • #215 unique constraint in schema generation with unique:"true" struct tag

Performance improvements

  • Reduced the allocations and memory consumption of inserts, updates and deletes in more than a half in almost all cases.

v1.2.21

01 Aug 12:27
Compare
Choose a tag to compare

Bugs fixed

  • When checking if an implicit foreign key equals the column it corresponds to, make sure the nullability of such foreign key is irrelevant because the correct one is the one in the column. This could cause some migrations to not be generated because the nullability was not property recognized.

v1.2.20

01 Aug 09:00
Compare
Choose a tag to compare

Bugs fixed

  • [ #212 ] scanning bytea does no longer throw an error. Now []byte and bytea are equivalent, before it was smallint[]. Even though this could be considered a breaking change, it has been considered as a bug as it made no sense the way it was before.

v1.2.19

26 Jul 09:06
Compare
Choose a tag to compare

Docs

  • Document both in the generated code and the README that RemoveXXX functions must not have that XXX relationship empty for them to work as expected.

v1.2.18

18 Jul 15:27
Compare
Choose a tag to compare

Bugs fixed

  • #205 fixed a small issue that prevented the use of Count in some cases