All Versions
47
Latest Version
Avg Release Cycle
62 days
Latest Release
564 days ago

Changelog History
Page 4

  • v0.6.0 Changes

    March 06, 2017
    • New: Select queries are now exposed as a SqlDelightStatement factory instead of string constants.
    • New: Query JavaDoc is now copied to statement and mapper factories.
    • New: Emit string constants for view names.
    • Fix: Queries on views which require factories now correctly require those factories are arguments.
    • Fix: Validate the number of arguments to an insert matches the number of columns specified.
    • Fix: Properly encode blob literals used in where clauses.
    • Gradle 3.3 or newer is required for this release.
  • v0.5.1 Changes

    October 24, 2016
    • New: Compiled statements extend an abstract type.
    • Fix: Primitive types in parameters will be boxed if nullable.
    • Fix: All required factories for bind args are present in factory method.
    • Fix: Escaped column names are marshalled correctly.
  • v0.5.0 Changes

    October 19, 2016
    • New: SQLite arguments can be passed typesafely through the Factory
    • New: IntelliJ plugin performs formatting on .sq files
    • New: Support for SQLite timestamp literals
    • Fix: Parameterized types can be clicked through in IntelliJ
    • Fix: Escaped column names no longer throw RuntimeExceptions if grabbed from Cursor.
    • Fix: Gradle plugin doesn't crash trying to print exceptions.
  • v0.4.4 Changes

    July 20, 2016
    • New: Native support for shorts as column java type
    • New: Javadoc on generated mappers and factory methods
    • Fix: group_concat and nullif functions have proper nullability
    • Fix: Compatibility with Android Studio 2.2-alpha
    • Fix: WITH RECURSIVE no longer crashes plugin
  • v0.4.3 Changes

    July 07, 2016
    • New: Compilation errors link to source file.
    • New: Right-click to copy SQLDelight code as valid SQLite.
    • New: Javadoc on named statements will appear on generated Strings.
    • Fix: Generated view models include nullability annotations.
    • Fix: Generated code from unions has proper type and nullability to support all possible columns.
    • Fix: sum and round SQLite functions have proper type in generated code.
    • Fix: CAST's, inner selects bugfixes.
    • Fix: Autocomplete in CREATE TABLE statements.
    • Fix: SQLite keywords can be used in packages.
  • v0.4.2 Changes

    June 16, 2016
    • New: Marshal can be created from the factory.
    • Fix: IntelliJ plugin generates factory methods with proper generic order.
    • Fix: Function names can use any casing.
  • v0.4.1 Changes

    June 14, 2016
    • Fix: IntelliJ plugin generates classes with proper generic order.
    • Fix: Column definitions can use any casing.
  • v0.4.0 Changes

    June 14, 2016
    • New: Mappers are generated per query instead of per table.
    • New: Java types can be imported in .sq files.
    • New: SQLite functions are validated.
    • Fix: Remove duplicate errors.
    • Fix: Uppercase column names and java keyword column names do not error.
  • v0.3.2 Changes

    May 14, 2016
    • New: Autocompletion and find usages now work for views and aliases.
    • Fix: Compile-time validation now allows functions to be used in selects.
    • Fix: Support insert statements which only declare default values.
    • Fix: Plugin no longer crashes when a project not using SQLDelight is imported.
  • v0.3.1 Changes

    April 27, 2016
    • Fix: Interface visibility changed back to public to avoid Illegal Access runtime exceptions from method references.
    • Fix: Subexpressions are evaluated properly.