Skip to content

Releases: belchior/sql_query_builder

1.0.2

11 Sep 13:13
Compare
Choose a tag to compare

This release contains

  • Documentation improvements - f717250

1.0.1

03 Sep 11:04
Compare
Choose a tag to compare

This release contains

  • Documentation improvement - e453911

1.0.0

27 Aug 21:25
Compare
Choose a tag to compare

This release represent the stability of the internal and public APIs and contains breaking changes on the import method

Before

use sql_query_builder::SelectBuilder;

let select = SelectBuilder::new();

After

use sql_query_builder as sql;

let select = sql::Select::new();

0.11.6

14 Aug 13:54
Compare
Choose a tag to compare

This release contains

  • Query debug improvements - 91c086d

0.11.5

07 Aug 12:43
Compare
Choose a tag to compare

This release contains

  • Added method on_conflict in InsertBuilder - 7ca5cfe
  • Implemented ValuesBuilder command - b0b39e4

0.10.5

27 Jul 10:02
Compare
Choose a tag to compare

This release contains

  • Documentation improvements - f7e9852
  • Changed combinator methods except, intersect and union to be a postgresql syntax. The feature flag postgresql should be enabled to use this methods - 2bfc0be

0.9.5

24 Jul 22:08
Compare
Choose a tag to compare

This release contains

  • Documentation improvement - 6035feb

0.9.4

23 Jul 16:51
Compare
Choose a tag to compare

This release contains

  • Added method from as a postgresql syntax in UpdateBuilder - 70ab823
  • Documentation improvements - 212c254

0.8.4

20 Jul 10:29
Compare
Choose a tag to compare

This release contains

  • Added more sql keywords to colorize method - 60fbac1
  • Added method with as a postgreql syntax - aa0aef1
  • Unified term feature flag in the code base - 10604fe

0.7.4

07 Jul 10:57
Compare
Choose a tag to compare

This release contains

  • Moved with method as Postgres syntax, available using the feature flag postgresql - 6be0303
  • Introduction of postgresql syntax as feature flag - 6ca11b0
  • Added and method to Delete and Update builders as alias to where_clause method - 75a064e