From bbd08354826d872d6c21190869d128803d647428 Mon Sep 17 00:00:00 2001 From: Asterisk Development Team Date: Thu, 23 Apr 2020 11:03:08 -0500 Subject: [PATCH] Update CHANGES and UPGRADE.txt for 16.10.0 --- CHANGES | 50 +++++++++++++++++++ UPGRADE.txt | 14 ++++++ .../confbridge_text_messaging.txt | 7 --- doc/CHANGES-staging/func_volume.txt | 3 -- .../res_pjsip_session_codecs.txt | 8 --- doc/CHANGES-staging/res_rtp_asterisk_cli.txt | 18 ------- .../res_rtp_asterisk_show_settings_cli.txt | 7 --- .../stream_immutable_formats.txt | 9 ---- 8 files changed, 64 insertions(+), 52 deletions(-) delete mode 100644 doc/CHANGES-staging/confbridge_text_messaging.txt delete mode 100644 doc/CHANGES-staging/func_volume.txt delete mode 100644 doc/CHANGES-staging/res_pjsip_session_codecs.txt delete mode 100644 doc/CHANGES-staging/res_rtp_asterisk_cli.txt delete mode 100644 doc/CHANGES-staging/res_rtp_asterisk_show_settings_cli.txt delete mode 100644 doc/UPGRADE-staging/stream_immutable_formats.txt diff --git a/CHANGES b/CHANGES index ff91d32815..5b115eb3df 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,56 @@ === ============================================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 16.9.0 to Asterisk 16.10.0 ----------- +------------------------------------------------------------------------------ + +app_confbridge +------------------ + * A new option, "text_messaging", has been added to the user profile + which allows control over whether text messaging is enabled or + disabled for a user. If enabled (the default) text messages + will be sent to the user. If disabled no text messages will be + sent to the user. + +func_volume +------------------ + * Accept decimal number as argument. + +res_pjsip_session +------------------ + * When placing an outgoing call to a PJSIP endpoint the intent + of any requested formats will now be respected. If only an audio + format is requested (such as ulaw) but the underlying endpoint + does not support the format the resulting SDP will still only + contain an audio stream, and not any additional streams such as + video. + +res_rtp_asterisk +------------------ + * This change include a new cli command 'rtp show settings' + + The command display by general settings of rtp configuration. For this + point is added the fields: rtpstart, rtpend, dtmftimeout, rtpchecksum, + strictrtp, learning_min_sequential and icesupport. + + * The blacklist mechanism in res_rtp_asterisk for ICE and STUN was converted to + an ACL mechanism. + + As such six now options are now available: + + ice_deny + ice_permit + ice_acl + stun_deny + stun_permit + stun_acl + + These options have their obvious meanings as used elsewhere. + + Backwards compatibility was maintained by adding {stun,ice}_blacklist as + aliases for {stun,ice}_deny. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 16.8.0 to Asterisk 16.9.0 ------------ ------------------------------------------------------------------------------ diff --git a/UPGRADE.txt b/UPGRADE.txt index 880ed9616f..87c743c75f 100644 --- a/UPGRADE.txt +++ b/UPGRADE.txt @@ -18,6 +18,20 @@ === =========================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 16.9.0 to Asterisk 16.10.0 ----------- +------------------------------------------------------------------------------ + +Core +------------------ + * The streams API function ast_stream_get_formats is + now defined as returning the format capabilities const. + This has always been the case but was never enforced + through the API itself. Any consumer of this API that + is not treating the formats as immutable should update + their code to create a new format capabilities and set + it on the stream instead. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 16.8.0 to Asterisk 16.9.0 ------------ ------------------------------------------------------------------------------ diff --git a/doc/CHANGES-staging/confbridge_text_messaging.txt b/doc/CHANGES-staging/confbridge_text_messaging.txt deleted file mode 100644 index 24315afa6f..0000000000 --- a/doc/CHANGES-staging/confbridge_text_messaging.txt +++ /dev/null @@ -1,7 +0,0 @@ -Subject: app_confbridge - -A new option, "text_messaging", has been added to the user profile -which allows control over whether text messaging is enabled or -disabled for a user. If enabled (the default) text messages -will be sent to the user. If disabled no text messages will be -sent to the user. diff --git a/doc/CHANGES-staging/func_volume.txt b/doc/CHANGES-staging/func_volume.txt deleted file mode 100644 index e73295b99a..0000000000 --- a/doc/CHANGES-staging/func_volume.txt +++ /dev/null @@ -1,3 +0,0 @@ -Subject: func_volume - -Accept decimal number as argument. diff --git a/doc/CHANGES-staging/res_pjsip_session_codecs.txt b/doc/CHANGES-staging/res_pjsip_session_codecs.txt deleted file mode 100644 index 847eb41b32..0000000000 --- a/doc/CHANGES-staging/res_pjsip_session_codecs.txt +++ /dev/null @@ -1,8 +0,0 @@ -Subject: res_pjsip_session - -When placing an outgoing call to a PJSIP endpoint the intent -of any requested formats will now be respected. If only an audio -format is requested (such as ulaw) but the underlying endpoint -does not support the format the resulting SDP will still only -contain an audio stream, and not any additional streams such as -video. diff --git a/doc/CHANGES-staging/res_rtp_asterisk_cli.txt b/doc/CHANGES-staging/res_rtp_asterisk_cli.txt deleted file mode 100644 index 7b5516d06c..0000000000 --- a/doc/CHANGES-staging/res_rtp_asterisk_cli.txt +++ /dev/null @@ -1,18 +0,0 @@ -Subject: res_rtp_asterisk - -The blacklist mechanism in res_rtp_asterisk for ICE and STUN was converted to -an ACL mechanism. - -As such six now options are now available: - -ice_deny -ice_permit -ice_acl -stun_deny -stun_permit -stun_acl - -These options have their obvious meanings as used elsewhere. - -Backwards compatibility was maintained by adding {stun,ice}_blacklist as -aliases for {stun,ice}_deny. diff --git a/doc/CHANGES-staging/res_rtp_asterisk_show_settings_cli.txt b/doc/CHANGES-staging/res_rtp_asterisk_show_settings_cli.txt deleted file mode 100644 index 4f636bbe42..0000000000 --- a/doc/CHANGES-staging/res_rtp_asterisk_show_settings_cli.txt +++ /dev/null @@ -1,7 +0,0 @@ -Subject: res_rtp_asterisk - -This change include a new cli command 'rtp show settings' - -The command display by general settings of rtp configuration. For this -point is added the fields: rtpstart, rtpend, dtmftimeout, rtpchecksum, -strictrtp, learning_min_sequential and icesupport. diff --git a/doc/UPGRADE-staging/stream_immutable_formats.txt b/doc/UPGRADE-staging/stream_immutable_formats.txt deleted file mode 100644 index 2af5d9b271..0000000000 --- a/doc/UPGRADE-staging/stream_immutable_formats.txt +++ /dev/null @@ -1,9 +0,0 @@ -Subject: Core - -The streams API function ast_stream_get_formats is -now defined as returning the format capabilities const. -This has always been the case but was never enforced -through the API itself. Any consumer of this API that -is not treating the formats as immutable should update -their code to create a new format capabilities and set -it on the stream instead. -- 2.47.3