Release v0.15.0

This is a minor release containing a few quality of life features. We
were originally planning to ship these with 1.0, but they're
specifically needed by some production users.

The biggest feature here is the ability to manually specify the `ON`
clause of a join, which is separate from the associations API. You can
also use this to join to tables which otherwise have no association
between them (but this will also require you to invoke
`enable_multi_table_joins!`).

In addition to the Diesel core team, 6 people contributed to this
release. A huge thank you to:

- Alex Kitchens
- Maciej Dziardziel
- Pyry Kontio
- Sunrin SHIMURA (keen)
- king6cong
- wangcong
17 files changed
tree: 25868ab4c399cebf06d63f53f8a6253de6ed57c1
  1. .github/
  2. bin/
  3. diesel/
  4. diesel_cli/
  5. diesel_codegen/
  6. diesel_compile_tests/
  7. diesel_infer_schema/
  8. diesel_tests/
  9. examples/
  10. guide_drafts/
  11. migrations/
  12. .appveyor.yml
  13. .editorconfig
  14. .env.sample
  15. .gitignore
  16. .travis.yml
  17. Cargo.toml
  18. CHANGELOG.md
  19. clippy.toml
  20. code_of_conduct.md
  21. CONTRIBUTING.md
  22. LICENSE-APACHE
  23. LICENSE-MIT
  24. README.md
README.md

A safe, extensible ORM and Query Builder for Rust

Build Status Appveyor Build Status Gitter Crates.io

Documentation

Homepage

Diesel gets rid of the boilerplate for database interaction and eliminates runtime errors, without sacrificing performance. It takes full advantage of Rust's type system to create a low overhead query builder that “feels like Rust”.

Getting Started

You can find an extensive Getting Started tutorial at http://diesel.rs/guides/getting-started. Guides on more specific features will be coming soon.

Code of conduct

Anyone who interacts with Diesel in any space including but not limited to this GitHub repository is expected to follow our code of conduct

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.