Skip to content

Releases: src-d/go-kallax

v1.3.5

Choose a tag to compare

@nadiamoe nadiamoe released this 07 Jun 09:00
54324d6

Bug fixes:

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

v1.3.4

Choose a tag to compare

@nadiamoe nadiamoe released this 07 Feb 00:01
6e31900

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

Choose a tag to compare

@nadiamoe nadiamoe released this 23 Nov 13:29

Bugs fixed

Improvements

v1.3.2

Choose a tag to compare

@nadiamoe nadiamoe released this 15 Nov 11:11

Bugs fixed

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

v1.3.1

Choose a tag to compare

@nadiamoe nadiamoe released this 15 Nov 11:13
do not remove the first field in updates

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

v1.3.0

Choose a tag to compare

@erizocosmico erizocosmico released this 03 Aug 13:46

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

Choose a tag to compare

@erizocosmico erizocosmico released this 01 Aug 12:27

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

Choose a tag to compare

@erizocosmico erizocosmico released this 01 Aug 09:00

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

Choose a tag to compare

@erizocosmico erizocosmico released this 26 Jul 09:06

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

Choose a tag to compare

@erizocosmico erizocosmico released this 18 Jul 15:27

Bugs fixed

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