Releases: krojew/cdrs-tokio
Releases · krojew/cdrs-tokio
8.1.0
Fixed
- Sending envelopes now properly jumps to next node in query plan, if current one is unreachable.
- Fixed stack overflow when cannot determine field type during struct serialization.
- Properly supporting references during struct serialization.
New
- Many types are now
Debug
. - HTTP proxy support via the
http-proxy
feature. InvalidProtocol
special error for a case when a node doesn't accept requested protocol during handshake.ConnectionPoolConfigBuilder
for building configuration easily.- Configurable heartbeat messages to keep connection alive in the pool.
Changed
- Made protocol enums non-exhaustive for future compatibility.
- Session builders are now async and wait for control connection to be ready before returning a session.
CBytes::new_empty()
->CBytes::new_null()
,CBytes::is_empty()
->CBytes::is_null_or_empty()
.- Removed
Ord, ParialOrd
fromQueryFlags
. - Using
rustls
types exported fromtokio-rustls
, rather than depending onrustls
directly. - Due to an edge case with reconnecting to a seemingly downed node, internal reconnection handling mechanism has been improved.
- Hidden internal structures, which were public but not usable in any way.
7.0.4
7.0.3
7.0.1
7.0.0
New
Clone
implemented forBodyResReady
andBodyReqExecute
.
Changed
- Control connection errors are now logged as warnings, since they're recoverable.
- Exposed fields of
BodyReqAuthResponse
andBodyReqExecute
. - Replaced
CInet
type withSocketAddr
, since it was nothing more than a wrapper.
7.0.0-beta.1
Fixed
ExponentialReconnectionSchedule
duration overflow.- Forgetting real error type in certain transport error situations.
- Not sending re-preparation statements to correct nodes.
- Infinite set keyspace notification loop.
New
- Protocol V5 support. Please look at official changelog for more information: https://github.com/apache/cassandra/blob/trunk/doc/native_protocol_v5.spec#L1419.
- Support for beta protocols - possibility to connect to beta clusters.
From<Decimal>
forBigInt
.check_envelope_size
forEvelope
.Error
is nowClone
.FrameEncoder
,FrameDecoder
andFrameEncodingFactory
responsible for encoding/decoding frames on the wire.with_frame_encoder_factory
Session build option.Error
impl forCheckEnvelopeSizeError
andParseEnvelopeError
.- New
Error
variants for more granular error handling. - Node address in
Error::Server
variant.
Changed
- Due to naming changes in V5, frame have been renamed to message,
Frame
toEnvelope
and a frame now
corresponds to wrapped envelopes, as defined by the protocol. Serialize
andFromCursor
traits now pass protocol version to implementations.Row::from_frame_body
renamed tofrom_body
.ClusterMetadataManager::find_node
renamed tofind_node_by_rpc_address
for consistency.QueryFlags
got extended for V5 and now supportsSerialize
andFromCursor
.- Session builders now validate given configuration and return a
Result
. - Transport startup now fails gracefully on unexpected server response.
CdrsTransport
now requires explicit information if messages are a part of initial handshake.ResResultBody::as_rows_metadata
andResponseBody::as_rows_metadata
now return a reference to the data.Hash
,PartialEq
andPartialOrd
forPreparedQuery
only takeid
andresult_metadata_id
into account,
since those define equivalence.- Updated
chrono
dependency to work around found CVE.
6.2.0
6.1.0
6.0.0
This version is a departure from legacy API design, stemming from the sync version migration. Due to large
performance issues and lack of dynamic topology handling in earlier versions, a decision has been made to cut
the ties and focus on delivering the best functionality without legacy burden. The API surface changes are
quite large, but everyone is encouraged to update - the performance improvements and new features cannot be
understated.
New
- Topology-aware load balancing:
TopologyAwareNodeDistanceEvaluator
andTopologyAwareLoadBalancingStrategy
. - New
ReconnectionPolicy
used when trying to re-establish connections to downed nodes. Error
now implements standardError
.SessionBuilder
introduced as the preferred way to create a session.- Added missing traits for
BatchType
andQueryFlags
. ToString
implementation forSimpleServerEvent
.- Standard trait implementations for event frames.
contains_column
,is_empty_by_name
andis_empty
functions forRow
.Display
implementation for public enums.- Missing traits for
PreparedMetadata
,Value
,Consistency
andColType
. - New
PreparedMetadataFlags
. - New
ClusterMetadata
representing information about a cluster. - Extracted protocol functionality to separate
cassandra-protocol
crate. - Passing final auth data from the server to
SaslAuthenticator
. SpeculativeExecutionPolicy
for speculative execution control.
Changed
- All
with_name
fields or args in the query API are nowbool
instead ofOption<bool>
flags
field removed fromQueryParams
(flags are now derived from the other fields at serialization time)- Rewritten transport layer for massive performance improvements (including removing
bb8
). This
involves changing a large portion of public API related to transport and server events. - Rewritten event mechanism - now you can subscribe to server events via
create_event_receiver()
inSession
. - Replaced
RowsMetadataFlag
,QueryFlags
andframe::Flags
vectors with bitflags. - Changed
Target
andChangeType
enums toSchemaChangeTarget
andSchemaChangeType
. - The
varint
type now usesnum::BigInt
representation (this impliesDecimal
also uses "big" types). - Removed
unstable-dynamic-cluster
feature, since it wasn't working as expected and introduced performance
penalty. Dynamic topology handling is now built-in. - Removed
AsBytes
in favor of newSerialize
trait due to performance penalty. - Removed
FromSingleByte
andAsByte
in favor ofFrom
/TryFrom
. - Removed traits along with
async-trait
dependency:BatchExecutor
,ExecExecutor
,PrepareExecutor
,
QueryExecutor
,GetConnection
andCdrsSession
. Everything is now embedded directly inSession
. - Load balancing strategy now returns query plans, rather than individual nodes, and operates on cluster metadata.
- Removed
SingleNode
load balancing strategy. - Removed empty
SimpleError
. - Renamed
connect_generic_static
toconnect_generic
. - Removed
GetRetryPolicy
. - Renamed
ChangeSchemeOptions
toSchemaChangeOptions
. - Protocol version can now be selected at run time.
Value
now directly contains the value in theSome
variant instead of a separate body field.- Consistent naming convention in all builders.
- Split protocol-level parameters from high-level statement parameters (
QueryParams
vsStatementParams
) and
simplified API. add_query_prepared
for batch queries now takesPreparedQuery
by reference.