Releases: belchior/sql_query_builder
Releases · belchior/sql_query_builder
1.0.2
This release contains
- Documentation improvements - f717250
1.0.1
This release contains
- Documentation improvement - e453911
1.0.0
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.5
This release contains
- Added method on_conflict in InsertBuilder - 7ca5cfe
- Implemented ValuesBuilder command - b0b39e4
0.10.5
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
This release contains
- Documentation improvement - 6035feb
0.9.4
This release contains
- Added method from as a
postgresql
syntax in UpdateBuilder - 70ab823
- Documentation improvements - 212c254
0.8.4
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
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