jet v2.1.0 Release Notes

Release Date: 2019-09-30 // over 4 years ago
    • ๐Ÿ‘€ Window function support. Sample usage can be seen here.
    • ๐Ÿ‘ Database views support
      • Jet generator now generates view sqlbuilder and model types.
      • sqlBuilder types are generated in view folder and will behave the same as table sqlbuilder types.
      • model types are generated in model folder. To use view model type as grouping destination primary_key tag has to be specified manually. More information here.
    • Jet internal types are now aliased. This allows passing of manually constructed expression slices as variadic argument of some operators and functions.
    • โช [API break] ColumnList is aliased and reverted to be defined as slice of Columns. This will allow conditionally constructing the list of columns, by appending to a slice, before the statements.
      ๐Ÿ— To fix build, just replace parentheses with braces. ColumnList(.....) -> ColumnList{......}