Skip to content

Releases: sqlc-dev/sqlc

v1.1.0

17 Mar 23:45
248e72b
Compare
Choose a tag to compare

Core

  • Allow sqlc.arg('argname') form for named params (#351)
  • Apply changes to the ValuesList slice (#372)

PostgreSQL

  • Add support for create-if-not-exists for 'create schema' (#362)
  • Add support for the ltree extension (#385)

Go

  • Support Postgres macaddr type in Go (#358)
  • Scan enums when using pgx (#386)
  • Fix column comment (#392

Kotlin

  • Add Query class to support timeout and cancellation (#368)

v1.0.0

18 Feb 19:08
2471b6d
Compare
Choose a tag to compare
  • Add experimental support for MySQL and Kotlin
  • Fix various bugs
  • Implement a new, more rigorous, testing framework

v0.1.0: Set stdout correctly (#232)

08 Jan 00:07
Compare
Choose a tag to compare
The `cmd.Do` function takes a writer to use as standard out, but doesn't
use it. Instead, there's a duplicate call to `cobra.Command.SetErr`.
This patch replaces one of the duplicates with `SetOut`.