diff --git a/CHANGES b/CHANGES index d88eaca431..b75644cff8 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,70 @@ === ============================================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 16.22.0 to Asterisk 16.23.0 ---------- +------------------------------------------------------------------------------ + +ToneScan application +------------------ + * A new application, ToneScan, allows for + synchronous detection of call progress + signals such as dial tone, busy tone, + Special Information Tones, and modems. + +app_playback +------------------ + * A new option 'mix' is added to the Playback application that + will play by filename and say.conf. It will look on the format of the + name, if it is like say format it will play with say.conf if not it + will play the file name. + +app_queue +------------------ + * Add field to save the time value when a member enter a queue. + Shows this time in seconds using 'queue show' command and the + field LoginTime for responses for AMI the events. + + The output for the CLI command `queue show` is changed by added a + extra data field for the information of the time login time for each + member. + +apps +------------------ + * A new option 'mix' is added to the Playback application that + will play by filename and say.conf. It will look on the format of the + name, if it is like say format it will play with say.conf if not it + will play the file name. + +ast_coredumper +------------------ + * New options: + --pid= + Allows specification of an Asterisk instance when trying to + and the script can't determine it itself. + --libdir= + Allows specification of a non-standard installation directory + containing the Asterisk modules. + --(no-)rename + Renames the coredump and the output files with readable + timestamps. This is the default. + Removed unneeded or confusing options: + --append-coredumps + --conffile + --no-default-search + --tarball-uniqueid + Changed Variables: + COREDUMPS is now just "/tmp/core!(*.txt)" + DATEFORMAT is renamed to DATEOPTS and defaults to '-u +%FT%H-%M-%SZ' + Changed behavior: + If you use 'running' or 'RUNNING' you no longer need to specify + '--no-default-search' to ignore existing coredumps. + +chan_iax2 +------------------ + * Both a secret and an outkey may be specified at dial time, + since encryption is possible with RSA authentication. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 16.21.0 to Asterisk 16.22.0 ---------- ------------------------------------------------------------------------------ diff --git a/UPGRADE.txt b/UPGRADE.txt index 37b8ec9b87..846227494a 100644 --- a/UPGRADE.txt +++ b/UPGRADE.txt @@ -18,6 +18,18 @@ === =========================================================== +------------------------------------------------------------------------------ +--- Functionality changes from Asterisk 16.22.0 to Asterisk 16.23.0 ---------- +------------------------------------------------------------------------------ + +STIR/SHAKEN +------------------ + * The STIR/SHAKEN configuration option has been split into + 4 different choices: off, attest, verify, and on. Off and + on behave the same way as before. Attest will only perform + attestation on the endpoint, and verify will only perform + verification on the endpoint. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 16.21.0 to Asterisk 16.22.0 ---------- ------------------------------------------------------------------------------ diff --git a/doc/CHANGES-staging/add_mix_option_to_playback.txt b/doc/CHANGES-staging/add_mix_option_to_playback.txt deleted file mode 100644 index cfc876ce77..0000000000 --- a/doc/CHANGES-staging/add_mix_option_to_playback.txt +++ /dev/null @@ -1,7 +0,0 @@ -Subject: app_playback -Subject: apps - -A new option 'mix' is added to the Playback application that -will play by filename and say.conf. It will look on the format of the -name, if it is like say format it will play with say.conf if not it -will play the file name. \ No newline at end of file diff --git a/doc/CHANGES-staging/app_queue_logintime.txt b/doc/CHANGES-staging/app_queue_logintime.txt deleted file mode 100644 index 5b0eea414f..0000000000 --- a/doc/CHANGES-staging/app_queue_logintime.txt +++ /dev/null @@ -1,9 +0,0 @@ -Subject: app_queue - -Add field to save the time value when a member enter a queue. -Shows this time in seconds using 'queue show' command and the -field LoginTime for responses for AMI the events. - -The output for the CLI command `queue show` is changed by added a -extra data field for the information of the time login time for each -member. diff --git a/doc/CHANGES-staging/ast_coredumper.txt b/doc/CHANGES-staging/ast_coredumper.txt deleted file mode 100644 index bbff0da290..0000000000 --- a/doc/CHANGES-staging/ast_coredumper.txt +++ /dev/null @@ -1,23 +0,0 @@ -Subject: ast_coredumper - -New options: - --pid= - Allows specification of an Asterisk instance when trying to - and the script can't determine it itself. - --libdir= - Allows specification of a non-standard installation directory - containing the Asterisk modules. - --(no-)rename - Renames the coredump and the output files with readable - timestamps. This is the default. -Removed unneeded or confusing options: - --append-coredumps - --conffile - --no-default-search - --tarball-uniqueid -Changed Variables: - COREDUMPS is now just "/tmp/core!(*.txt)" - DATEFORMAT is renamed to DATEOPTS and defaults to '-u +%FT%H-%M-%SZ' -Changed behavior: - If you use 'running' or 'RUNNING' you no longer need to specify - '--no-default-search' to ignore existing coredumps. diff --git a/doc/CHANGES-staging/chan_iax2_dial.txt b/doc/CHANGES-staging/chan_iax2_dial.txt deleted file mode 100644 index a95832b0b1..0000000000 --- a/doc/CHANGES-staging/chan_iax2_dial.txt +++ /dev/null @@ -1,4 +0,0 @@ -Subject: chan_iax2 - -Both a secret and an outkey may be specified at dial time, -since encryption is possible with RSA authentication. diff --git a/doc/CHANGES-staging/tonescan.txt b/doc/CHANGES-staging/tonescan.txt deleted file mode 100644 index cbed34fa09..0000000000 --- a/doc/CHANGES-staging/tonescan.txt +++ /dev/null @@ -1,6 +0,0 @@ -Subject: ToneScan application - -A new application, ToneScan, allows for -synchronous detection of call progress -signals such as dial tone, busy tone, -Special Information Tones, and modems. diff --git a/doc/UPGRADE-staging/stir_shaken_option_split.txt b/doc/UPGRADE-staging/stir_shaken_option_split.txt deleted file mode 100644 index 79df214a8b..0000000000 --- a/doc/UPGRADE-staging/stir_shaken_option_split.txt +++ /dev/null @@ -1,7 +0,0 @@ -Subject: STIR/SHAKEN - -The STIR/SHAKEN configuration option has been split into -4 different choices: off, attest, verify, and on. Off and -on behave the same way as before. Attest will only perform -attestation on the endpoint, and verify will only perform -verification on the endpoint.