You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PowerSync/PowerSync.Common/CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,14 @@
1
1
# PowerSync.Common Changelog
2
2
3
+
## 0.0.8-alpha.1
4
+
- Replaced the old JSON-based method of extracting type information from queries with using Dapper internally for queries, improving memory usage and execution time for querying.
5
+
- Added non-generic overloads for `GetAll()`, `GetOptional()`, `Get()`, `Watch()` which return `dynamic`:
6
+
7
+
```csharp
8
+
dynamicasset=db.Get("SELECT id, description, make FROM assets");
9
+
Console.WriteLine($"Asset ID: {asset.id}");
10
+
```
11
+
3
12
## 0.0.7-alpha.1
4
13
- Added fallback to check the application's root directory for the PowerSync extension - fixing compatibility with WPF/WAP, .NET Framework <= 4.8, and other platforms that flatten DLLs into the base folder.
0 commit comments