From 597cb8b35d944e9ff221ffed9bd1015d2cbaa32b Mon Sep 17 00:00:00 2001 From: Ben Atkins Date: Thu, 7 May 2015 15:22:17 -0400 Subject: [PATCH] Update CHANGELOG regarding #518 --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1630d4b23..d58b74d26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ If you depend on the `RSpec` or `Cucumber` helpers, you will need to [manually l - [#525](https://github.com/airblade/paper_trail/issues/525) / [#512](https://github.com/airblade/paper_trail/pull/512) - Support for virtual accessors and redefined setter and getter methods. + - [#518](https://github.com/airblade/paper_trail/pull/518) - Support for querying against PostgreSQL's + [`JSON` and `JSONB` column types](http://www.postgresql.org/docs/9.4/static/datatype-json.html) via + `PaperTrail::VersionConcern#where_object` and `PaperTrail::VersionConcern#where_object_changes` - [#507](https://github.com/airblade/paper_trail/pull/507) - Support for opting out of saving changesets on models by choice when the `object_changes` column exists on the default `versions` table. - [#500](https://github.com/airblade/paper_trail/pull/500) - Support for passing `on: []` as an argument, with only manual @@ -18,7 +21,7 @@ If you depend on the `RSpec` or `Cucumber` helpers, you will need to [manually l - [#494](https://github.com/airblade/paper_trail/issues/494) - The install generator will warn the user if the migration they are attempting to generate already exists. - [#484](https://github.com/airblade/paper_trail/pull/484) - Support for - [PostgreSQL's JSONB Type](http://www.postgresql.org/docs/9.4/static/datatype-json.html) for storing `object` and `object_changes`. + [PostgreSQL's `JSONB` Type](http://www.postgresql.org/docs/9.4/static/datatype-json.html) for storing `object` and `object_changes`. - [#458](https://github.com/airblade/paper_trail/pull/458) - For `create` events, metadata pointing at attributes should attempt to grab the current value instead of looking at the value prior to the change (which would always be `nil`) - [#440](https://github.com/airblade/paper_trail/pull/440) - `versions` association should clear/reload after a transaction rollback.