Skip to content

v1.6.0

Compare
Choose a tag to compare
@kyleconroy kyleconroy released this 23 Nov 03:14
c1f847b

Notes

The new MySQL engine, code-named Dolphin, is now default. The old engine has been removed. Your generated code will be different, but should be easy to adapt. Please open an issue if your code is now broken. If you were using the mysql:beta engine, you'll need to change that to mysql.

Changelog

Core

  • Add option to return emit db tags for struct fields (#656)
  • Add support for variadic stored procedures and functions (#798)
  • Fix issue installing sqlc via go get (#744)
  • Add support for nontrivial import paths for overrides (#785)

Go

  • You can now specify the go_type import path of an override using an object instead of a string.
overrides:
  - db_type: "uuid"
    go_type:
      import: "gopkg.in/guregu/null.v3"
      package: "null"
      type: "Bool"

MySQL

  • Add function definitions for all built-in MySQL functions (#796)
  • Upgrade to the latest version of pingcap/parser (#744)