]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update CHANGES and UPGRADE.txt for 17.2.0
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 23 Jan 2020 16:15:46 +0000 (11:15 -0500)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 23 Jan 2020 16:15:46 +0000 (11:15 -0500)
CHANGES
doc/CHANGES-staging/app_chanisavail_empty_device_list.txt [deleted file]
doc/CHANGES-staging/app_confbridge_maximum_sample_rate.txt [deleted file]
doc/CHANGES-staging/app_dial_empty_dial_list.txt [deleted file]
doc/CHANGES-staging/app_page_empty_page_list.txt [deleted file]
doc/CHANGES-staging/func_curl.txt [deleted file]
doc/CHANGES-staging/http.txt [deleted file]
doc/CHANGES-staging/minmemfree.txt [deleted file]
doc/CHANGES-staging/res_pjsip_endpoint_identifier_ip_match_port.txt [deleted file]

diff --git a/CHANGES b/CHANGES
index a7ae23ad32b7f1ee013193dcdb4a9657e5f100ef..9b27a2584a3cf04174f55fd695e743df14c42433 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 ===
 ==============================================================================
 
+------------------------------------------------------------------------------
+--- Functionality changes from Asterisk 17.1.0 to Asterisk 17.2.0 ------------
+------------------------------------------------------------------------------
+
+app_chanisavail
+------------------
+ * The ChanIsAvail application now tolerates empty positions in the supplied
+   device list.  Dialplan can now be simplified by not having to check for
+   empty positions in the device list.
+
+app_confbridge
+------------------
+ * A new bridge profile option, maximum_sample_rate, has been added which sets
+   a maximum sample rate that the bridge will be mixed at. This allows the bridge
+   to move below the maximum sample rate as needed but caps it at the maximum.
+
+app_dial
+------------------
+ * The Dial application now tolerates empty positions in the supplied
+   destination list.  Dialplan can now be simplified by not having to check
+   for empty positions in the destination list.  If there are no endpoints to
+   dial then DIALSTATUS is set to CHANUNAVAIL.
+
+app_page
+------------------
+ * The Page application now tolerates empty positions in the supplied
+   destination list.  Dialplan can now be simplified by not having to check
+   for empty positions in the destination list.
+
+func_curl
+------------------
+ * A new option, followlocation, can now be enabled with the CURLOPT()
+   dialplan function. Setting this will instruct cURL to follow 3xx
+   redirects, which it does not by default.
+
+http
+------------------
+ * You can now disable the /httpstatus page served by Asterisk's built-in
+   HTTP server by setting 'enable_status' to 'no' in http.conf.
+
+minmemfree
+------------------
+ * The 'minmemfree' configuration option now counts memory allocated to
+   the filesystem cache as "free" because it is memory that is available
+   to the process.
+
+res_pjsip_endpoint_identifier_ip
+------------------
+ * In 'type = identify' sections, the addresses specified for the 'match'
+   clause can now include a port number. For IP addresses, the port is
+   provided by including a colon after the address, followed by the
+   desired port number. If supplied, the netmask should follow the port
+   number. To specify a port for IPv6 addresses, the address itself must
+   be enclosed in brackets to be parsed correctly.
+
 ------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 17.0.0 to Asterisk 17.1.0 ------------
 ------------------------------------------------------------------------------
diff --git a/doc/CHANGES-staging/app_chanisavail_empty_device_list.txt b/doc/CHANGES-staging/app_chanisavail_empty_device_list.txt
deleted file mode 100644 (file)
index bf06c31..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: app_chanisavail
-
-The ChanIsAvail application now tolerates empty positions in the supplied
-device list.  Dialplan can now be simplified by not having to check for
-empty positions in the device list.
diff --git a/doc/CHANGES-staging/app_confbridge_maximum_sample_rate.txt b/doc/CHANGES-staging/app_confbridge_maximum_sample_rate.txt
deleted file mode 100644 (file)
index 1c584fa..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: app_confbridge
-
-A new bridge profile option, maximum_sample_rate, has been added which sets
-a maximum sample rate that the bridge will be mixed at. This allows the bridge
-to move below the maximum sample rate as needed but caps it at the maximum.
diff --git a/doc/CHANGES-staging/app_dial_empty_dial_list.txt b/doc/CHANGES-staging/app_dial_empty_dial_list.txt
deleted file mode 100644 (file)
index dc68ee6..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-Subject: app_dial
-
-The Dial application now tolerates empty positions in the supplied
-destination list.  Dialplan can now be simplified by not having to check
-for empty positions in the destination list.  If there are no endpoints to
-dial then DIALSTATUS is set to CHANUNAVAIL.
diff --git a/doc/CHANGES-staging/app_page_empty_page_list.txt b/doc/CHANGES-staging/app_page_empty_page_list.txt
deleted file mode 100644 (file)
index 73e8420..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: app_page
-
-The Page application now tolerates empty positions in the supplied
-destination list.  Dialplan can now be simplified by not having to check
-for empty positions in the destination list.
diff --git a/doc/CHANGES-staging/func_curl.txt b/doc/CHANGES-staging/func_curl.txt
deleted file mode 100644 (file)
index fa9ad97..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: func_curl
-
-A new option, followlocation, can now be enabled with the CURLOPT()
-dialplan function. Setting this will instruct cURL to follow 3xx
-redirects, which it does not by default.
diff --git a/doc/CHANGES-staging/http.txt b/doc/CHANGES-staging/http.txt
deleted file mode 100644 (file)
index ad778ec..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-Subject: http
-
-You can now disable the /httpstatus page served by Asterisk's built-in
-HTTP server by setting 'enable_status' to 'no' in http.conf.
diff --git a/doc/CHANGES-staging/minmemfree.txt b/doc/CHANGES-staging/minmemfree.txt
deleted file mode 100644 (file)
index 5762c15..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: minmemfree
-
-The 'minmemfree' configuration option now counts memory allocated to
-the filesystem cache as "free" because it is memory that is available
-to the process.
diff --git a/doc/CHANGES-staging/res_pjsip_endpoint_identifier_ip_match_port.txt b/doc/CHANGES-staging/res_pjsip_endpoint_identifier_ip_match_port.txt
deleted file mode 100644 (file)
index 3881d64..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-Subject: res_pjsip_endpoint_identifier_ip
-
-In 'type = identify' sections, the addresses specified for the 'match'
-clause can now include a port number. For IP addresses, the port is
-provided by including a colon after the address, followed by the
-desired port number. If supplied, the netmask should follow the port
-number. To specify a port for IPv6 addresses, the address itself must
-be enclosed in brackets to be parsed correctly.