diff --git a/CHANGES b/CHANGES index dbdf744fbf052ed0d0e5b5c287958725ebda7932..5602d9c410224827d3643b25dae9b8d57849b45c 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,43 @@ === ============================================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 13.26.0 to Asterisk 13.27.0 ---------- +------------------------------------------------------------------------------ + +Dial +------------------ + * Add RINGTIME and RINGTIME_MS variables containing respectively seconds and + milliseconds between creation of the dialing channel and receiving the first + RINGING signal + + Add PROGRESSTIME and PROGRESSTIME_MS variables analogous to the above with respect to + the PROGRESS signal. Shorter of these two times should be equivalent to + the PDD (Post Dial Delay) value + + Add DIALEDTIME_MS and ANSWEREDTIME_MS variables to get millisecond resolution + versions of DIALEDTIME and ANSWEREDTIME + +RTP/ICE +------------------ + * You can now indicate that you'd like an ice_host_candidate's local address + to be published as well as the mapped address. See the sample rtp.conf + for more information. + +res_pjsip +------------------ + * Added a new PJSIP global setting called norefersub. + Default is true to keep support working as before. + + res_pjsip_refer configures PJSIP norefersub capability accordingly. + + Checks the PJSIP global setting value. + If it is true (default) it adds the norefersub capability to PJSIP. + If it is false (disabled) it does not add the norefersub capability + to PJSIP. + + This is useful for Cisco switches that do not follow RFC4488. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 13.25.0 to Asterisk 13.26.0 ---------- ------------------------------------------------------------------------------ diff --git a/doc/CHANGES-staging/app_dial_ringtime_progresstime.txt b/doc/CHANGES-staging/app_dial_ringtime_progresstime.txt deleted file mode 100644 index 9b5cdd508919ee686a9a87dd38ebbe8db9aaeac6..0000000000000000000000000000000000000000 --- a/doc/CHANGES-staging/app_dial_ringtime_progresstime.txt +++ /dev/null @@ -1,12 +0,0 @@ -Subject: Dial - -Add RINGTIME and RINGTIME_MS variables containing respectively seconds and -milliseconds between creation of the dialing channel and receiving the first -RINGING signal - -Add PROGRESSTIME and PROGRESSTIME_MS variables analogous to the above with respect to -the PROGRESS signal. Shorter of these two times should be equivalent to -the PDD (Post Dial Delay) value - -Add DIALEDTIME_MS and ANSWEREDTIME_MS variables to get millisecond resolution -versions of DIALEDTIME and ANSWEREDTIME diff --git a/doc/CHANGES-staging/res_pjsip_add_norefersub_global_config.txt b/doc/CHANGES-staging/res_pjsip_add_norefersub_global_config.txt deleted file mode 100644 index e0573bc250f4afe82a0578d3626c9294fec73582..0000000000000000000000000000000000000000 --- a/doc/CHANGES-staging/res_pjsip_add_norefersub_global_config.txt +++ /dev/null @@ -1,13 +0,0 @@ -Subject: res_pjsip - -Added a new PJSIP global setting called norefersub. -Default is true to keep support working as before. - -res_pjsip_refer configures PJSIP norefersub capability accordingly. - -Checks the PJSIP global setting value. -If it is true (default) it adds the norefersub capability to PJSIP. -If it is false (disabled) it does not add the norefersub capability -to PJSIP. - -This is useful for Cisco switches that do not follow RFC4488. diff --git a/doc/CHANGES-staging/rtp_ice_include_local_address.txt b/doc/CHANGES-staging/rtp_ice_include_local_address.txt deleted file mode 100644 index e5a65e5f869bc1ea5d083f2bfb2411e1b562e08c..0000000000000000000000000000000000000000 --- a/doc/CHANGES-staging/rtp_ice_include_local_address.txt +++ /dev/null @@ -1,5 +0,0 @@ -Subject: RTP/ICE - -You can now indicate that you'd like an ice_host_candidate's local address -to be published as well as the mapped address. See the sample rtp.conf -for more information.