Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.2+1

- fix(querybuilder): remove unnecessary `update_` prefix from update bindings

## 1.0.2

- Fix(Cache): fixed cache issue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract mixin class UpdateQueryBuilderImpl implements QueryBuilder {

List<String> setStatements = [];
for (var entry in values.entries) {
final paramName = 'update_${entry.key}';
final paramName = entry.key;
bindings[paramName] = entry.value;
setStatements.add("${entry.key} = :$paramName");
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: vania
description: Fast, simple, and powerful backend framework for Dart built with
version: 1.0.2
version: 1.0.2+1
homepage: https://vdart.dev
repository: https://github.com/vania-dart/framework
issue_tracker: https://github.com/vania-dart/framework/issues
Expand Down