diff --git a/CHANGELOG.md b/CHANGELOG.md
index bccad9c3f91a84e60497da423b66d4ec9a612e8e..516fd02652d9a087dc5366522438af66e5a926f5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,16 +15,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - `PRIVILEGED_GROUP` and `ENTITLED_GROUPS` settings to implement groups and permissions (steering#177)
 - `FILTER_ACTIVE_SHOWS_USING` settings to filter active shows and OIDC scope claims (steering#175)
 - `ShowManager` to annotate a show with its max (last) timeslot start (steering#175)
+- `is_active` boolean field in `LinkType` model (steering#187)
 
 ### Changed
 
 - `note_id` and `show_id` are read-only fields of the `TimeslotSerializer` (steering#171)
 - `Note.tags` are exposed as list of strings (steering#158)
 - Django’s model permissions and additional custom permissions are now used (steering#177)
+- `type` in `Link` model is now foreign key reference to the `LinkType` model.  The serializers expect a `typeId` (steering#187)
 
 ### Removed
 
 - `note_id` and `show` fields from the `Timeslot` model (steering#171)
+- `type` field from `LinkType` model (steering#187)
 
 ### Breaking