]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Append CHANGES/UPGRADE.txt for module loader changes.
authorCorey Farrell <git@cfware.com>
Mon, 1 Oct 2018 08:07:54 +0000 (04:07 -0400)
committerCorey Farrell <git@cfware.com>
Mon, 1 Oct 2018 08:21:38 +0000 (03:21 -0500)
Change-Id: Ib8db4e14187f5c11ecbff532df17d30c5d36fa3e

CHANGES
UPGRADE.txt

diff --git a/CHANGES b/CHANGES
index fa177b566154cef71c7ce042317733fa912725af..5497940fa1bacf5ae1914c30d636123566cc0004 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -139,6 +139,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 ------------
index b2bd28d79a71bdf88bd1f31ca4c62422ddd76b45..93e4b5218b6dfa6a749512496976f7257e31d114 100644 (file)
@@ -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.