From 216359974c97b26ed9e8b4e5931baa3af2f7a2a6 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Tue, 18 Apr 2023 13:11:59 -0500 Subject: [PATCH] update release notes --- documentation/RELEASE_NOTES.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/documentation/RELEASE_NOTES.md b/documentation/RELEASE_NOTES.md index 4af0dbbc6..94b0dd446 100644 --- a/documentation/RELEASE_NOTES.md +++ b/documentation/RELEASE_NOTES.md @@ -15,6 +15,21 @@ should also be read to understand what has changed since earlier releases. ## Changes made on the 7.0 branch since 7.0.7 +### Change compiler for FreeBSD to clang + +The default compiler for FreeBSD targets changes from GCC to clang. + +### Expose `dbCreateAlias` in IOC shell + +Add a new IOC shell command `dbCreateAlias` allow record aliases to be added. +Intended for use before `iocInit`. eg. to add an alias "bar" for a record "foo". + +``` +dbLoadRecords("some.db") # includes: record(ai, "foo") { ... +dbCreateAlias("foo", "bar") +iocInit() +``` + ### dbEvent eventsRemaining missed on cancel In some cases, RSRV may queue a subscription update, but not flush it.