From: Asterisk Development Team Date: Thu, 23 Jan 2020 16:06:54 +0000 (-0500) Subject: Update CHANGES and UPGRADE.txt for 13.31.0 X-Git-Tag: 13.31.0-rc1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe72f4e2167a770815249af85934d5defa23a3e2;p=thirdparty%2Fasterisk.git Update CHANGES and UPGRADE.txt for 13.31.0 --- diff --git a/CHANGES b/CHANGES index 7fd919c645..af4770b462 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,61 @@ === ============================================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 13.30.0 to Asterisk 13.31.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 13.29.0 to Asterisk 13.30.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 index bf06c3130b..0000000000 --- a/doc/CHANGES-staging/app_chanisavail_empty_device_list.txt +++ /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 index 1c584fa8f0..0000000000 --- a/doc/CHANGES-staging/app_confbridge_maximum_sample_rate.txt +++ /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 index dc68ee664a..0000000000 --- a/doc/CHANGES-staging/app_dial_empty_dial_list.txt +++ /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 index 73e8420e45..0000000000 --- a/doc/CHANGES-staging/app_page_empty_page_list.txt +++ /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 index fa9ad97462..0000000000 --- a/doc/CHANGES-staging/func_curl.txt +++ /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 index ad778ecf82..0000000000 --- a/doc/CHANGES-staging/http.txt +++ /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 index 5762c15d16..0000000000 --- a/doc/CHANGES-staging/minmemfree.txt +++ /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 index 3881d64ab1..0000000000 --- a/doc/CHANGES-staging/res_pjsip_endpoint_identifier_ip_match_port.txt +++ /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.