From 497973c8a245af516c3faff91bab317b980ce8d7 Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Mon, 1 Oct 2018 04:24:00 -0400 Subject: [PATCH] Append CHANGES/UPGRADE.txt for module loader changes. Change-Id: Ib8db4e14187f5c11ecbff532df17d30c5d36fa3e --- CHANGES | 7 +++++++ UPGRADE-16.txt | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/CHANGES b/CHANGES index fef72124b3..bd1a7a794f 100644 --- a/CHANGES +++ b/CHANGES @@ -150,6 +150,13 @@ Core: by the system. * The STATIC_BUILD functionality has been removed as it has not been maintained and has not worked in quite some time. + * The module loader now enforces inter-module dependencies. This ensures that + a module is not started before another it depends on, even if preload is used. + If a dependency is not available or fails to startup this will block any + dependants from startup. + * Parts of the Asterisk core which can load configuration from realtime are now + built-in modules. It is no longer necessary to preload realtime drivers as + they are always initialized before the built-in modules. ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 15.5.0 to Asterisk 15.6.0 ------------ diff --git a/UPGRADE-16.txt b/UPGRADE-16.txt index b2bd28d79a..93e4b5218b 100644 --- a/UPGRADE-16.txt +++ b/UPGRADE-16.txt @@ -77,3 +77,10 @@ res_monitor: Core: - libedit is no longer available as an embedded library and must be provided by the system. + - The module loader now enforces inter-module dependencies. This ensures that + a module is not started before another it depends on, even if preload is used. + If a dependency is not available or fails to startup this will block any + dependants from startup. + - Parts of the Asterisk core which can load configuration from realtime are now + built-in modules. It is no longer necessary to preload realtime drivers as + they are always initialized before the built-in modules.