From 00aa193f5f58b563a1eb4a98cef5ffa5b419e5fa Mon Sep 17 00:00:00 2001 From: Jon Atack Date: Wed, 15 Oct 2014 21:14:22 +0200 Subject: [PATCH] Update change log [skip ci] --- CHANGELOG.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bff08c3..c78b350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,18 +5,28 @@ henceforth should be documented here. ## Unreleased ### Added -* `sort_link` helper: Add support for multiple sort fields and default orders +* Add support for multiple sort fields and default orders in Ransack + `sort_link` helpers ([pull request](https://github.com/activerecord-hackery/ransack/pull/438)). - + *Caleb Land*, *James u007* -* Add test specs for the `lteq`, `lt`, `gteq`, and `gt` predicates. +* Add test specs for the `lteq`, `lt`, `gteq`, and `gt` predicates. These are + also tested in Arel, but testing them in Ransack has proven useful to + detect issues. *Jon Atack* ### Fixed -* Fix the `form_helper date_select` spec that was failing with Rails 4.2/ +* Fix a regression where form labels for attributes through a `belongs_to` + association without a translation for the attribute in the locales file + would cause a "no implicit conversion of nil into Hash" crash instead of + falling back on the attribute name. Added test coverage. + + *John Dell*, *Jon Atack*, *jasdeepgosal* + +* Fix the `form_helper date_select` spec that was failing with Rails 4.2 and master. *Jon Atack*