Skip to content

Commit

Permalink
Fix issue#518
Browse files Browse the repository at this point in the history
  • Loading branch information
jepiqueau committed Feb 22, 2024
1 parent 7ee2144 commit bfb3a67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- Remove the ability to run `migrations:generate` with the TypeOrm Cli as the way it has been implemented works from some Frameworks but not with Angular were developers could not anymore build there apps. see issue#516 Update 5.6.0.

### Bug Fixes

- Fix Electron Platform SQL92 false generates invalid SQL query issue#518


# 5.6.0 (2024-02-17)

Expand Down
Binary file modified android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified android/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion electron/src/electron-utils/UtilsSQL92Compatibility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class UtilsSQL92Compatibility {
for (let i = 1; i < setWhereSplit.length; i++) {
const wherePart = setWhereSplit[1].trim();
const modifiedWherePart = this.modWherePart(wherePart);
modifiedStatement += `WHERE ${modifiedWherePart}`;
modifiedStatement += ` WHERE ${modifiedWherePart}`;
}
return modifiedStatement;
}
Expand Down

0 comments on commit bfb3a67

Please sign in to comment.