cassandart 0.4.1 cassandart: ^0.4.1 copied to clipboard
Cassandra database client (driver wire protocol: v4, CQL: 3.0).
0.4.1 #
- Updated dependencies.
0.4.0 #
- Migrated to null safety. (#12 by jodinathan).
0.3.0 #
- Peer-selection hint handles
List<String>
primary keys. - Warnings in query responses are now handled and included in
ResultPage
.
BREAKING CHANGES:
TIMESTAMP
is now serialized from/toDateTime
(with UTC).- Refactored methods around frame parsing (internals).
Client
also has thehint
parameter (asCluster
has it).
0.2.0 #
Better cluster handling:
- Automatically connect to new peers.
- Peer selection based on low latency connection.
- Peer selection based on hint to connect to primary node directly (limited to String ids).
0.1.2 #
- Updated to use
Uint8List
.
0.1.1 #
- Added types: timestamp, timeuuid and counter.
- Fixed a bug where it would crash on selecting and inserting a null field.
- Updated to Dart 2.3 standards
0.1.0 #
-
BREAKING CHANGES:
PageRows
implementsPage<Row>
frompackage:page
.CassandraClient.close
removed, onlyCassandraPool
needs it.- Renamed
CassandraClient
->Client
. - Renamed
CassandraPool
->Cluster
and updatedconnect
. - Renamed
DataClass
->RawType
,DataType
->Type
,TypedValue
->Value
. - Renamed
RowsPage
->ResultPage
.
-
Query result pagination.
0.0.1 #
- Basic client.