diesel v0.15.0 Release Notes

Release Date: 2017-07-23 // almost 7 years ago
  • โž• Added

    • โž• Added support for the PG IS DISTINCT FROM operator

    • ๐Ÿ‘€ The ON clause of a join can now be manually specified. See [the docs][join-on-dsl-0.15.0] for details.

    ๐Ÿ“„ [join-on-dsl-0.15.0]: https://docs.diesel.rs/diesel/prelude/trait.JoinOnDsl.html#method.on

    ๐Ÿ”„ Changed

    • Diesel will now automatically invoke numeric_expr! for your columns in the common cases. You will likely need to delete any manual invocations of this macro.

    • Insertable no longer treats all fields as nullable for type checking. What this means for you is that if you had an impl like impl AsExpression<Nullable<SqlType>, DB> for CustomType in your code base, you can remove the Nullable portion (Unless you are using it with fields that are actually nullable)

    • Connections will now explicitly set the session time zone to UTC when the connection is established