diff --git a/CHANGES b/CHANGES index 08c22eb766..d27b635514 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,76 @@ === ============================================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 18.14.0 to Asterisk 18.15.0 ---------- +------------------------------------------------------------------------------ + +Transfer feature +------------------ + * The following capabilities have been added to the + transfer feature: + + - The transfer initiation announcement prompt can + now be customized in features.conf. + + - The TRANSFER_EXTEN variable now can be set on the + transferer's channel in order to allow the transfer + function to automatically attempt to go to the extension + contained in this variable, if it exists. The transfer + context behavior is not changed (TRANSFER_CONTEXT is used + if it exists; otherwise the default context is used). + +app_confbridge +------------------ + * Adds the end_marked_any option which can be used + to kick users from a conference after any + marked user leaves (including marked users). + +locks +------------------ + * A new AMI event, DeadlockStart, is now available + when Asterisk is compiled with DETECT_DEADLOCKS, + and can indicate that a deadlock has occured. + +res_geolocation +------------------ + * Added 4 built-in profiles: + "" + "" + "" + "" + The profiles are empty except for having their precedence + set. + + Added profile parameter "suppress_empty_ca_elements" that + will cause Civic Address elements that are empty to be + suppressed from the outgoing PIDF-LO document. + + You can now specify the location object's format, location_info, + method, location_source and confidence parameters directly on + a profile object for simple scenarios where the location + information isn't common with any other profiles. This is + mutually exclusive with setting location_reference on the + profile. + + Added an 'a' option to the GEOLOC_PROFILE function to allow + variable lists like location_info_refinement to be appended + to instead of replacing the entire list. + + Added an 'r' option to the GEOLOC_PROFILE function to resolve all + variables before a read operation and after a Set operation. + +res_musiconhold_answeredonly +------------------ + * This change adds an option, answeredonly, that will prevent music + on hold on channels that are not answered. + +res_pjsip +------------------ + * TLS transports in res_pjsip can now reload their TLS certificate + and private key files, provided the filename of them has not + changed. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 18.13.0 to Asterisk 18.14.0 ---------- ------------------------------------------------------------------------------ diff --git a/UPGRADE.txt b/UPGRADE.txt index 7863a86e9c..d809d4a9a6 100644 --- a/UPGRADE.txt +++ b/UPGRADE.txt @@ -18,6 +18,16 @@ === =========================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 18.14.0 to Asterisk 18.15.0 ---------- +------------------------------------------------------------------------------ + +res_crypto +------------------ + * In addition to only paying attention to files ending with .key or .pub + in the keys directory, we now also ignore any files which aren't regular + files. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 18.11.3 to Asterisk 18.12.0 ---------- ------------------------------------------------------------------------------ diff --git a/doc/CHANGES-staging/app_confbridge_marked_any.txt b/doc/CHANGES-staging/app_confbridge_marked_any.txt deleted file mode 100644 index cbc1bbffdf..0000000000 --- a/doc/CHANGES-staging/app_confbridge_marked_any.txt +++ /dev/null @@ -1,5 +0,0 @@ -Subject: app_confbridge - -Adds the end_marked_any option which can be used -to kick users from a conference after any -marked user leaves (including marked users). diff --git a/doc/CHANGES-staging/lock_deadlock.txt b/doc/CHANGES-staging/lock_deadlock.txt deleted file mode 100644 index 5fad3ee078..0000000000 --- a/doc/CHANGES-staging/lock_deadlock.txt +++ /dev/null @@ -1,5 +0,0 @@ -Subject: locks - -A new AMI event, DeadlockStart, is now available -when Asterisk is compiled with DETECT_DEADLOCKS, -and can indicate that a deadlock has occured. diff --git a/doc/CHANGES-staging/res_geolocation.txt b/doc/CHANGES-staging/res_geolocation.txt deleted file mode 100644 index e8a9952710..0000000000 --- a/doc/CHANGES-staging/res_geolocation.txt +++ /dev/null @@ -1,27 +0,0 @@ -Subject: res_geolocation - -Added 4 built-in profiles: - "" - "" - "" - "" -The profiles are empty except for having their precedence -set. - -Added profile parameter "suppress_empty_ca_elements" that -will cause Civic Address elements that are empty to be -suppressed from the outgoing PIDF-LO document. - -You can now specify the location object's format, location_info, -method, location_source and confidence parameters directly on -a profile object for simple scenarios where the location -information isn't common with any other profiles. This is -mutually exclusive with setting location_reference on the -profile. - -Added an 'a' option to the GEOLOC_PROFILE function to allow -variable lists like location_info_refinement to be appended -to instead of replacing the entire list. - -Added an 'r' option to the GEOLOC_PROFILE function to resolve all -variables before a read operation and after a Set operation. diff --git a/doc/CHANGES-staging/res_musiconhold_answeredonly.txt b/doc/CHANGES-staging/res_musiconhold_answeredonly.txt deleted file mode 100644 index c335184c22..0000000000 --- a/doc/CHANGES-staging/res_musiconhold_answeredonly.txt +++ /dev/null @@ -1,4 +0,0 @@ -Subject: res_musiconhold_answeredonly - -This change adds an option, answeredonly, that will prevent music -on hold on channels that are not answered. diff --git a/doc/CHANGES-staging/res_pjsip_tls_cert_key_reload.txt b/doc/CHANGES-staging/res_pjsip_tls_cert_key_reload.txt deleted file mode 100644 index 60c9dcd700..0000000000 --- a/doc/CHANGES-staging/res_pjsip_tls_cert_key_reload.txt +++ /dev/null @@ -1,5 +0,0 @@ -Subject: res_pjsip - -TLS transports in res_pjsip can now reload their TLS certificate -and private key files, provided the filename of them has not -changed. diff --git a/doc/CHANGES-staging/res_pjsip_usereqphone.txt b/doc/CHANGES-staging/res_pjsip_usereqphone.txt deleted file mode 100644 index 01d59a7ad9..0000000000 --- a/doc/CHANGES-staging/res_pjsip_usereqphone.txt +++ /dev/null @@ -1,4 +0,0 @@ -subject: res_pjsip - -user_eq_phone=yes flag on a pjsip endpoint will now set user=phone on -the From and Prviacy headers in addition to the existing To and RURI diff --git a/doc/CHANGES-staging/transfer.txt b/doc/CHANGES-staging/transfer.txt deleted file mode 100644 index 962272fcf7..0000000000 --- a/doc/CHANGES-staging/transfer.txt +++ /dev/null @@ -1,14 +0,0 @@ -Subject: Transfer feature - -The following capabilities have been added to the -transfer feature: - -- The transfer initiation announcement prompt can -now be customized in features.conf. - -- The TRANSFER_EXTEN variable now can be set on the -transferer's channel in order to allow the transfer -function to automatically attempt to go to the extension -contained in this variable, if it exists. The transfer -context behavior is not changed (TRANSFER_CONTEXT is used -if it exists; otherwise the default context is used). diff --git a/doc/UPGRADE-staging/res_crypto-regular-file-keys.txt b/doc/UPGRADE-staging/res_crypto-regular-file-keys.txt deleted file mode 100644 index a2d8d81da0..0000000000 --- a/doc/UPGRADE-staging/res_crypto-regular-file-keys.txt +++ /dev/null @@ -1,5 +0,0 @@ -Subject: res_crypto - -In addition to only paying attention to files ending with .key or .pub -in the keys directory, we now also ignore any files which aren't regular -files.