diff --git a/docs/docs/the-marten-project/release-notes/0.5.md b/docs/docs/the-marten-project/release-notes/0.5.md index 176938b8c..b427e7d83 100644 --- a/docs/docs/the-marten-project/release-notes/0.5.md +++ b/docs/docs/the-marten-project/release-notes/0.5.md @@ -72,6 +72,7 @@ article.category # => Category::BLOG * Query sets now provide a [`#to_sql`](../../models-and-databases/reference/query-set.md#to_sql) method allowing to retrieve the corresponding SQL representation. * Query sets can now be combined using the AND and OR binary operators. This can be achieved through the use of the [&](../../models-and-databases/reference/query-set.md#-and) and [`|`](../../models-and-databases/reference/query-set.md#-or) query set methods. * Invalid record exceptions (instances of [`Marten::DB::Errors::InvalidRecord`](pathname:///api/dev/Marten/DB/Errors/InvalidRecord.html)) now provide more details regarding the actual errors of the associated record. +* Creations of records from many-to-one reverse relation query sets are now scoped to the related record. See [Many-to-one relationships](../../models-and-databases/relationships.md#many-to-one-relationships) for more details. #### Handlers and HTTP