]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update CHANGES and UPGRADE.txt for 16.23.0
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 2 Dec 2021 17:55:56 +0000 (12:55 -0500)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 2 Dec 2021 17:55:56 +0000 (12:55 -0500)
CHANGES
UPGRADE.txt
doc/CHANGES-staging/add_mix_option_to_playback.txt [deleted file]
doc/CHANGES-staging/app_queue_logintime.txt [deleted file]
doc/CHANGES-staging/ast_coredumper.txt [deleted file]
doc/CHANGES-staging/chan_iax2_dial.txt [deleted file]
doc/CHANGES-staging/tonescan.txt [deleted file]
doc/UPGRADE-staging/stir_shaken_option_split.txt [deleted file]

diff --git a/CHANGES b/CHANGES
index d88eaca431e7fc90aa9127bb2abd9011541d8e1f..b75644cff85acf23597f351ea07488f2a6c45e52 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 ===
 ==============================================================================
 
+------------------------------------------------------------------------------
+--- 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=<asterisk_pid>
+      Allows specification of an Asterisk instance when trying to
+      and the script can't determine it itself.
+    --libdir=<system library directory>
+      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 ----------
 ------------------------------------------------------------------------------
index 37b8ec9b8739d0b9323e41897d5b26616d44f1dd..846227494a872b74b86ddb319fba664c885d4447 100644 (file)
 ===
 ===========================================================
 
+------------------------------------------------------------------------------
+--- 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 (file)
index cfc876c..0000000
+++ /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 (file)
index 5b0eea4..0000000
+++ /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 (file)
index bbff0da..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-Subject: ast_coredumper
-
-New options:
- --pid=<asterisk_pid>
-   Allows specification of an Asterisk instance when trying to
-   and the script can't determine it itself.
- --libdir=<system library directory>
-   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 (file)
index a95832b..0000000
+++ /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 (file)
index cbed34f..0000000
+++ /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 (file)
index 79df214..0000000
+++ /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.