From 015275dced3fe2d612e229150916f6789511933f Mon Sep 17 00:00:00 2001 From: Jeff Nelson Date: Sat, 14 Aug 2021 14:37:01 -0400 Subject: [PATCH] update changelog --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e60614b..024c247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,6 @@ * Added `Realms` to virtually segregate records within the same environment into distinct groups. A `Record` can be dynamically added to or removed from a `realm` (use `Record#addRealm` and `Record#removeRealm` to manage). Runway provides overloaded read methods that accept a `Realms` parameter to specify the realms from which data can be read. If a Record exists in at least one of the specified `Realms`, it will be read. * By default, all Records exist in ALL realms, so this feature is backwards compatible. * By default, read methods consider data from ANY realm, so this feature is backwards compatible. - -#### Version 1.8.2 (TBD) * Fixed a bug where the `Required` annotation was not enforced when loading data from the database. If a record was modified outside of Runway such that a required field was nullified, Runway would previously load the record without enforcing the constraint. This caused applications to encounter some unexpected `NullPointerException`s. #### Version 1.8.1 (April 20, 2020)