summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2018-02-19 06:59:00 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2018-02-19 06:59:00 -0600
commitddc607f85a2a7f0cc8fbde4f30d09510c5e2f2cc (patch)
tree0246d52d480673e2df5a735745d3600b2293e655
parent15886d583374d19472ce3cf8dfcef0d73b78a7a5 (diff)
parent9f74afbdcff2d972625e2032df46aadd882da185 (diff)
Merge "Deprecate legacy modules."
-rw-r--r--CHANGES15
-rw-r--r--UPGRADE.txt12
-rw-r--r--apps/app_fax.c3
-rw-r--r--res/res_config_sqlite.c2
-rw-r--r--res/res_monitor.c3
5 files changed, 32 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index cd7e75e7c..ba153bc6c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -12,6 +12,11 @@
--- Functionality changes from Asterisk 15 to Asterisk 16 --------------------
------------------------------------------------------------------------------
+app_fax
+------------------
+ * The app_fax module is now deprecated, users should migrate to the
+ replacement module res_fax.
+
app_macro
------------------
* The app_macro module is now deprecated and by default it is no longer
@@ -43,6 +48,16 @@ app_queue
When set the wrapuptime on the member is used instead of the wrapuptime
defined for the queue itself.
+res_config_sqlite
+------------------
+ * The res_config_sqlite module is now deprecated, users should migrate to the
+ replacement module res_config_sqlite3.
+
+res_monitor
+------------------
+ * The res_monitor module is now deprecated, users should migrate to the
+ replacement module app_mixmonitor.
+
res_pjsip
------------------
* A new AMI action, PJSIPShowAors, has been added which displays information
diff --git a/UPGRADE.txt b/UPGRADE.txt
index d398e5fea..366825863 100644
--- a/UPGRADE.txt
+++ b/UPGRADE.txt
@@ -26,6 +26,10 @@
New in 16.0.0:
+app_fax:
+ - The app_fax module is now deprecated, users should migrate to the
+ replacement module res_fax.
+
app_macro:
- The app_macro module is now deprecated and by default it is no longer
built. Users should migrate to app_stack (Gosub). A warning is logged
@@ -44,6 +48,14 @@ cdr_syslog:
- The cdr_syslog module is now deprecated and by default it is no longer
built.
+res_config_sqlite:
+ - The res_config_sqlite module is now deprecated, users should migrate to the
+ replacement module res_config_sqlite3.
+
+res_monitor:
+ - The res_monitor module is now deprecated, users should migrate to the
+ replacement module app_mixmonitor.
+
Core:
- libedit is no longer available as an embedded library and must be provided
by the system.
diff --git a/apps/app_fax.c b/apps/app_fax.c
index 540e8e35c..293925ac1 100644
--- a/apps/app_fax.c
+++ b/apps/app_fax.c
@@ -16,7 +16,8 @@
<defaultenabled>no</defaultenabled>
<depend>spandsp</depend>
<conflict>res_fax</conflict>
- <support_level>extended</support_level>
+ <support_level>deprecated</support_level>
+ <replacement>res_fax</replacement>
***/
#include "asterisk.h"
diff --git a/res/res_config_sqlite.c b/res/res_config_sqlite.c
index 5ca623ccc..83d2dca72 100644
--- a/res/res_config_sqlite.c
+++ b/res/res_config_sqlite.c
@@ -82,7 +82,7 @@
/*** MODULEINFO
<depend>sqlite</depend>
- <support_level>extended</support_level>
+ <support_level>deprecated</support_level>
***/
#include "asterisk.h"
diff --git a/res/res_monitor.c b/res/res_monitor.c
index a8631dcb7..95acf554d 100644
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -25,7 +25,8 @@
/*** MODULEINFO
<use type="module">func_periodic_hook</use>
- <support_level>core</support_level>
+ <support_level>deprecated</support_level>
+ <replacement>app_mixmonitor</replacement>
***/
#include "asterisk.h"