Commit Graph

70 Commits

Author SHA1 Message Date
Simon Binder f9a163532b Disable third-party warnings in cocoapods project 2024-04-21 18:36:10 +02:00
Simon Binder e1ab8abcb2
Explain build_runner is necessary for web samples 2024-01-03 23:04:58 +01:00
Simon Binder 7964782c2d
Re-run generator 2023-12-12 12:15:17 +01:00
Simon Binder 28c3c444e7
Re-run builders, add changelog entry 2023-11-22 13:09:09 +01:00
Simon Binder 8077c564d7
Highlight Android workarounds more 2023-10-24 21:14:57 +02:00
Simon Binder 86c071a965 Re-run build 2023-10-22 12:33:10 +02:00
Simon Binder 026fae935c
Integrate db viewer into devtools 2023-10-18 23:16:52 +02:00
Paul Crimes c3d63c36e7 updated to gradle wrapper and tools to 7.5 to match the properties of dependency filepicker 2023-09-19 20:30:31 +02:00
Simon Binder 17b1738819 Add macOS target to example app 2023-09-07 15:20:10 +02:00
Simon Binder 6408d93a7c Merge branch 'elitree/develop' into develop 2023-08-19 23:03:41 +02:00
Simon Binder 895ff52761 Add API for finegrained control for steps by steps 2023-08-19 22:39:38 +02:00
Eli Geller 4e28e5f5b9
remove leading slashes from URI paths 2023-08-14 18:21:09 -04:00
Simon Binder fae8be00d2
Re-run builder in example app 2023-08-09 21:03:36 +02:00
Simon Binder addb68fb45
Upgrade go_router in example app 2023-07-22 15:14:38 +02:00
Amir Panahandeh cb7de63a3f
Fix Assertion failure during setting up router 2023-07-22 09:26:26 +03:30
Simon Binder 312fa3219f
Add docs for step-by-step migrations 2023-07-01 18:11:41 +02:00
Simon Binder 81315c3d69
Migrate mentions of `flutter pub run` 2023-06-19 16:09:47 +02:00
Simon Binder 342027b420
Update to stable sqlite3 package 2023-06-17 22:19:31 +02:00
Simon Binder b01c8494e5
Rename old web test package 2023-06-10 18:01:25 +02:00
Simon Binder ec5927bc2a
Add web compatibility information to web page 2023-05-31 23:48:13 +02:00
Simon Binder ff41de2a6b
Get new wasm implementation working in Chrome 2023-05-31 22:48:29 +02:00
Simon Binder 8498cfb8d9
Fix build in app example 2023-05-15 09:12:59 +02:00
Simon Binder b4b4e350dd
Simplify creation of web workers for drift 2023-04-10 23:01:30 +02:00
Simon Binder d6e074e704
Fix `validateDatabaseSchema` in schema tests 2023-03-23 17:56:50 +01:00
Simon Binder e91df496c8
Update dependencies for app example 2023-03-05 22:15:16 +01:00
Simon Binder 5166e5d294
Add rowid parameter to companions 2023-02-19 13:46:58 +01:00
Simon Binder d30d2a1212
Add backup/restore functionality to example app 2023-02-08 00:35:55 +01:00
Simon Binder 0d354b3bec
Deprecate special connect constructor 2023-01-28 16:53:35 +01:00
Simon Binder 83fad8426e
Make `generate_connect_constructor` the default 2023-01-28 16:14:27 +01:00
Simon Binder 592a96bf7e
Remove default options from app example 2023-01-27 16:45:00 +01:00
Simon Binder b1f2ea45d5
FIx recent deprecation warnings 2023-01-26 16:56:16 +01:00
Alexander Wilde 91495e6f8d Rebuild 2022-12-31 03:33:54 +00:00
Alexander Wilde 32c34b511a Fix DriftSqlType.deserialize for double, dateTime and any 2022-12-22 02:08:04 +00:00
Simon Binder 18c6139eb3
Exchange dialect information for remote database 2022-12-18 22:02:49 +01:00
Simon Binder 1c06873403
Fix reading triggers in old schema files (#2191) 2022-12-10 22:57:45 +01:00
Alexander Wilde 5a6f402d86 Run build 2022-12-01 04:43:27 +00:00
Simon Binder cd00c6899e
Add helper method to setup isolates more easily 2022-11-25 17:54:38 +01:00
Simon Binder 097f941f88
Add single-client mode for remote connections 2022-11-25 13:47:08 +01:00
Simon Binder 6512dc1cfc
Merge remote-tracking branch 'origin/develop' into modular-generation 2022-11-18 16:56:55 +01:00
Simon Binder 596a35b58e
Document basic analysis concept 2022-11-18 16:33:19 +01:00
Simon Binder b2bbcfae8a
Add `shutdownOnClose` to `connect()`
When only a single client connects to a drift server, the whole server
can be disposed when that client disconnects. This makes it easier to
clean up resources in the common case of having one client.

Closes #2157
2022-11-15 11:00:52 +01:00
Simon Binder d491db8599
Move dialect to SqlTypes constructor, re-generate 2022-11-07 15:53:16 +01:00
Abitofevrything 54b58948d3 Run melos run build 2022-11-05 20:35:24 +01:00
Abitofevrything 3ec04df46f Run melos run build 2022-10-29 14:36:50 +02:00
Simon Binder 28c90b6ffb
Always escape column names
This avoids the performance impact of using a regex in `escapeIfNeeded`.
Closes #2071.
2022-09-22 16:55:36 +02:00
Simon Binder 8e9e7fc291
Use melos to manage packages (#2060) 2022-09-15 23:42:20 +02:00
Simon Binder 04c3dbf1b5
Fix triggers in example app 2022-08-31 11:58:25 +02:00
Simon Binder b9a605ed25
Allow async mappings from SQL to row classes
When existing, custom row classes are used, drift now supports using a
(potentially asynchronous) static method to load them instead of just
a named constructor like before.
Tables are also changed to support the `map` method being async for
cases where that is needed. The same applies to custom queries which
may have to be async now.
2022-08-12 22:55:02 +02:00
westito e65c4d15d0 Regenerate database files 2022-08-08 11:30:47 +02:00
Simon Binder cf95ed6f05
Re-generate migration tests in app example 2022-07-29 18:54:41 +02:00