Releases: blackbeam/rust-mysql-simple
Releases · blackbeam/rust-mysql-simple
v5.0.0
v4.0.0
v2.2.0
v2.1.0
v2.0.0
Changes:
- Connection URL parsing implemented.
Pool
andConn
constructors now takesInto<Opts>
(implemented for&str
).- Everything was reexported to top level.
- Few new structs added:
Row
- to replace rawVec<Value>
MySqlError
- to replace reexportedErrPacket
Params
- to replace rawVec<Value>
. This is for upcoming #31 fix.
IntoValue
removed in favor ofInto<Value>
ToRow
removed in favor ofInto<Params>
SignedDuration
removed in favor oftime
crate'sDuration
- Bunch of renames:
- Rename
Opts.tcp_addr
->Opts.ip_or_hostname
- Rename
MyConn
->Conn
- Rename
MyPool
->Pool
- Rename
MyPooledConn
->PooledConn
- Rename
MyError
->Error
- Rename
MyIoError
->IoError
- Rename
MyDriverError
->DriverError
- Rename
MySslError
->SslError
- Rename
MyResult
->Result
- Rename