From cb9735f2f06eaacda1ccca41046988ae78fb4ebb Mon Sep 17 00:00:00 2001 From: Cody Stoltman Date: Wed, 16 Mar 2016 11:55:59 -0500 Subject: [PATCH] update changelog to contain information on meta key in attributes --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a82c53b96..9d3179eeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Waterline Changelog +### Master + +* [Enhancement] Allows attribute definitions to contain a `meta` property that will be passed down to the adapter. This allows arbitrary information about an attribute to be passed down to interactions on the physical storage engine. Going forward any adapter specific migration information should be sent via the `meta` property. See [#1306](https://github.com/balderdashy/waterline/pull/1306) for more information. + ### 0.11.1 * [Enhancement] Handles fatal errors in validations better and returns clearer error messages for them. Who knew crashing the process would be bad? Thanks [@mikermcneil](https://github.com/mikermcneil)