We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 385f445 commit d2db2ebCopy full SHA for d2db2eb
1 file changed
CHANGELOG.md
@@ -39,6 +39,12 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
39
40
* The minimal officially supported rustc version is now 1.36.0
41
42
+* The `RawValue` types for the `Mysql` and `Postgresql` backend where changed
43
+ from `[u8]` to distinct opaque types. If you used the concrete `RawValue` type
44
+ somewhere you need to change it to `mysql::MysqlValue` or `pg::PgValue`.
45
+ For the postgres backend additionally type information where added to the `RawValue`
46
+ type. This allows to dynamically deserialize `RawValues` in container types.
47
+
48
### Fixed
49
50
* Many types were incorrectly considered non-aggregate when they should not
0 commit comments