]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update CHANGES and UPGRADE.txt for 18.11.0
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 17 Mar 2022 15:23:15 +0000 (10:23 -0500)
committerJoshua C. Colp <jcolp@sangoma.com>
Thu, 14 Apr 2022 22:10:13 +0000 (19:10 -0300)
CHANGES
UPGRADE.txt
doc/CHANGES-staging/app_mf_maxdigits.txt [deleted file]
doc/CHANGES-staging/channel_internal_api.txt [deleted file]
doc/CHANGES-staging/load_realtime_queues.txt [deleted file]
doc/CHANGES-staging/manager_disable.txt [deleted file]
doc/CHANGES-staging/queue_withdraw_caller.txt [deleted file]
doc/CHANGES-staging/rls_display_name.txt [deleted file]
doc/CHANGES-staging/rls_refresh.txt [deleted file]
doc/UPGRADE-staging/manager_amxml_attribute_fix.txt [deleted file]

diff --git a/CHANGES b/CHANGES
index 3e26129163508603ef0f7f68afb7c6acc83356a4..aa83128c6ad2c849cca477fd4ac7f3b5f938253d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 ===
 ==============================================================================
 
+------------------------------------------------------------------------------
+--- Functionality changes from Asterisk 18.10.0 to Asterisk 18.11.0 ----------
+------------------------------------------------------------------------------
+
+ami
+------------------
+ * AMI events can now be globally disabled using
+   the disabledevents [general] setting.
+
+app_mf
+------------------
+ * Adds an option to ReceiveMF to cap the
+   number of digits read at a user-specified
+   maximum.
+
+app_queue
+------------------
+ * Load queues and members from Realtime for
+   AMI actions: QueuePause, QueueStatus and QueueSummary,
+   Applications: PauseQueueMember and UnpauseQueueMember.
+
+ * Added a new AMI action: QueueWithdrawCaller
+   This AMI action makes it possible to withdraw a caller from a queue
+   back to the dialplan. The call will be signaled to leave the queue
+   whenever it can, hence, it not guaranteed that the call will leave
+   the queue.
+
+   Optional custom data can be passed in the request, in the WithdrawInfo
+   parameter. If the call successfully withdrawn the queue,
+   it can be retrieved using the QUEUE_WITHDRAW_INFO variable.
+
+   This can be useful for certain uses, such as dispatching the call
+   to a specific extension.
+
+channel_internal_api
+------------------
+ * CHANNEL(lastcontext) and CHANNEL(lastexten)
+   are now available for use in the dialplan.
+
+res_pjsip_pubsub
+------------------
+ * A new resource_list option, resource_display_name, indicates
+   whether display name of resource or the resource name being
+   provided for RLS entries.
+   If this option is enabled, the Display Name will be provided.
+   This option is disabled by default to remain the previous behavior.
+   If the 'event' set to 'presence' or 'dialog' the non-empty HINT name
+   will be set as the Display Name.
+   The 'message-summary' is not supported yet.
+
+ * The Resource List Subscriptions (RLS) is dynamic now.
+   The asterisk now updates current subscriptions to reflect the changes
+   to the list on subscription refresh. If list items are added,
+   removed, updated or do not exist anymore, the asterisk regenerates
+   the resource list.
+
 ------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 18.9.0 to Asterisk 18.10.0 -----------
 ------------------------------------------------------------------------------
index 26645e3dacff12611b2de22fe8632917a323acd5..be08f73e0e9faf9ed3301a15b0a9f2fa6744b9d4 100644 (file)
 ===
 ===========================================================
 
+------------------------------------------------------------------------------
+--- Functionality changes from Asterisk 18.10.0 to Asterisk 18.11.0 ----------
+------------------------------------------------------------------------------
+
+AMI
+------------------
+ * The XML Manager Event Interface (amxml) now generates attribute names
+   that are compliant with the XML 1.1 specification. Previously, an
+   attribute name that started with a digit would be rendered as-is, even
+   though attribute names must not begin with a digit. We now prefix
+   attribute names that start with a digit with an underscore ('_') to
+   prevent XML validation failures.
+
 ------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 18.8.0 to Asterisk 18.9.0 ------------
 ------------------------------------------------------------------------------
diff --git a/doc/CHANGES-staging/app_mf_maxdigits.txt b/doc/CHANGES-staging/app_mf_maxdigits.txt
deleted file mode 100644 (file)
index 4292690..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: app_mf
-
-Adds an option to ReceiveMF to cap the
-number of digits read at a user-specified
-maximum.
diff --git a/doc/CHANGES-staging/channel_internal_api.txt b/doc/CHANGES-staging/channel_internal_api.txt
deleted file mode 100644 (file)
index f40a4c7..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Subject: channel_internal_api
-
-CHANNEL(lastcontext) and CHANNEL(lastexten)
-are now available for use in the dialplan.
diff --git a/doc/CHANGES-staging/load_realtime_queues.txt b/doc/CHANGES-staging/load_realtime_queues.txt
deleted file mode 100644 (file)
index 68a4a8b..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: app_queue
-
-Load queues and members from Realtime for
-AMI actions: QueuePause, QueueStatus and QueueSummary,
-Applications: PauseQueueMember and UnpauseQueueMember.
diff --git a/doc/CHANGES-staging/manager_disable.txt b/doc/CHANGES-staging/manager_disable.txt
deleted file mode 100644 (file)
index 762ceca..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Subject: ami
-
-AMI events can now be globally disabled using
-the disabledevents [general] setting.
diff --git a/doc/CHANGES-staging/queue_withdraw_caller.txt b/doc/CHANGES-staging/queue_withdraw_caller.txt
deleted file mode 100644 (file)
index 04e43d0..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-Subject: app_queue
-
-Added a new AMI action: QueueWithdrawCaller
-This AMI action makes it possible to withdraw a caller from a queue
-back to the dialplan. The call will be signaled to leave the queue
-whenever it can, hence, it not guaranteed that the call will leave
-the queue.
-
-Optional custom data can be passed in the request, in the WithdrawInfo
-parameter. If the call successfully withdrawn the queue,
-it can be retrieved using the QUEUE_WITHDRAW_INFO variable.
-
-This can be useful for certain uses, such as dispatching the call
-to a specific extension.
diff --git a/doc/CHANGES-staging/rls_display_name.txt b/doc/CHANGES-staging/rls_display_name.txt
deleted file mode 100644 (file)
index 0d95b08..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-Subject: res_pjsip_pubsub
-
-A new resource_list option, resource_display_name, indicates
-whether display name of resource or the resource name being
-provided for RLS entries.
-If this option is enabled, the Display Name will be provided.
-This option is disabled by default to remain the previous behavior.
-If the 'event' set to 'presence' or 'dialog' the non-empty HINT name
-will be set as the Display Name.
-The 'message-summary' is not supported yet.
diff --git a/doc/CHANGES-staging/rls_refresh.txt b/doc/CHANGES-staging/rls_refresh.txt
deleted file mode 100644 (file)
index fb36160..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-Subject: res_pjsip_pubsub
-
-The Resource List Subscriptions (RLS) is dynamic now.
-The asterisk now updates current subscriptions to reflect the changes
-to the list on subscription refresh. If list items are added,
-removed, updated or do not exist anymore, the asterisk regenerates
-the resource list.
diff --git a/doc/UPGRADE-staging/manager_amxml_attribute_fix.txt b/doc/UPGRADE-staging/manager_amxml_attribute_fix.txt
deleted file mode 100644 (file)
index 4b15ee9..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Subject: AMI
-
-The XML Manager Event Interface (amxml) now generates attribute names
-that are compliant with the XML 1.1 specification. Previously, an
-attribute name that started with a digit would be rendered as-is, even
-though attribute names must not begin with a digit. We now prefix
-attribute names that start with a digit with an underscore ('_') to
-prevent XML validation failures.