From d5254550eaa1f4bee7c0d578c10c36f9ad0fb21a Mon Sep 17 00:00:00 2001 From: Yacine Petitprez Date: Sun, 5 Aug 2018 03:37:33 +0800 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a68f3c166..8c52b34f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ - Finalization of CLI ! - Add `Clear.seed(&block)` `Clear.seed` goes in pair with `bin/clear migrate seed` which will call the seed blocks. +- Add possibility to use has_many through without having to declare the model doing the relation + For example, if A belongs to B, B belongs to C, then A has_many C through B. You can + perform this now without declaring any class for B; see the guide about relations for + more informations. + +## Bug fixes +- Fix #23 bug with `has_many through:` and select +- Add support for `DISTINCT ON` feature. ## Breaking changes - `Model#save` on read only model do not throw exception anymore but return false (save! still throw error)