electricsql_cli 0.5.1 electricsql_cli: ^0.5.1 copied to clipboard
CLI to interact with the ElectricSQL service. Offers a similar tool set as the NPM electric_sql package.
0.5.0 #
- Code based on official Typescript client v0.9.0
- The CLI has been greatly improved, now supporting running the Electric and Postgres services locally behind the scenes, simplifying the structure of the project. Checkout the Quickstart section in the README for more details.
0.4.1 #
- Code based on official Typescript client v0.8.2
- New "proxy-tunnel" command that tunnels a Postgres TCP connection over a websocket for the Postgres Proxy.
0.4.0 #
- Code based on official Typescript client v0.8.0 and v0.8.1
- Added additional CLI parameter,
int8AsBigInt
to configure how to treat the INT8 type in Dart code, either as aBigInt
or asint
.BigInt
can be useful if you need the full INT8 range in Flutter Web. Otherwise, Dartint
is capable of storing the full INT8 range for all other platforms.
0.3.0 #
- [BREAKING CHANGE]: The
generate_migrations
command is now calledgenerate
and it will also generate the drift schema code automatically based on the Postgres schema. This means that is no longer required to replicate the schema in drift manually with the same table and column names as the Postgres schema, making the process much simpler.
0.2.0 #
- Support electricsql Dart v0.2.0
0.1.3 #
- Update default Electric service port
- Better error handling
0.1.2 #
- Update generation style
0.1.1 #
- Update electricsql minimum version
0.1.0 #
- Initial version.