]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update CHANGES and UPGRADE.txt for 16.14.0
authorAsterisk Development Team <asteriskteam@digium.com>
Mon, 19 Oct 2020 18:06:13 +0000 (13:06 -0500)
committerAsterisk Development Team <asteriskteam@digium.com>
Mon, 19 Oct 2020 18:06:13 +0000 (13:06 -0500)
CHANGES
UPGRADE.txt
doc/CHANGES-staging/app_confbridge.txt [deleted file]
doc/CHANGES-staging/logger_category.txt [deleted file]
doc/CHANGES-staging/stir_shaken.txt [deleted file]
doc/UPGRADE-staging/res_stir_shaken_directory.txt [deleted file]

diff --git a/CHANGES b/CHANGES
index e6493d39cb12e18384961e9a61c59e2015ccf9ab..494cac4384dfa31d14bc55cb7bdb550fe3da6dca 100644 (file)
--- a/CHANGES
+++ b/CHANGES
 --- Functionality changes from Asterisk 16.13.0 to Asterisk 16.14.0 ----------
 ------------------------------------------------------------------------------
 
+Core
+------------------
+ * Added debug logging categories that allow a user to output debug information
+   based on a specified category. This lets the user limit, and filter debug
+   output to data relevant to a particular context, or topic. For instance the
+   following categories are now available for debug logging purposes:
+
+     dtls, dtls_packet, ice, rtcp, rtcp_packet, rtp, rtp_packet, stun, stun_packet
+
+   These debug categories can be enable/disable via an Asterisk CLI command:
+
+     core set debug category <category>[:<sublevel>] [category[:<sublevel] ...]
+     core set debug category off [<category> [<category>] ...]
+
+   If no sub-level is associated all debug statements for a given category are
+   output. If a sub-level is given then only those statements assigned a value
+   at or below the associated sub-level are output.
+
+STIR/SHAKEN
+------------------
+ * STIR/SHAKEN support has been added to Asterisk. Configuration is done in
+   stir_shaken.conf. There is a sample configuration file to help you get
+   started (asterisk/configs/samples/stir_shaken.conf.sample). Once that's
+   set up, you can enable STIR/SHAKEN on any endpoint by setting stir_shaken
+   to yes on the endpoint configuration object. This will add an Identity
+   header on outgoing INVITEs, and check for an Identity header on incoming
+   INVITEs. This option has been added to Alembic as well.
+
+   The information received on an incoming INVITE can be checked using the
+   STIR_SHAKEN dialplan function. There are two variations:
+
+   STIR_SHAKEN(count)
+   STIR_SHAKEN(0, verify_result)
+
+   The first variation will tell you how many STIR/SHAKEN results are on the
+   channel. The second fetches information for a specific result. The first
+   parameter is the index, followed by what information you want to retrieve.
+   The available options are 'verify_result', 'identity', and 'attestation'.
+
+app_confbridge
+------------------
+ * app_confbridge now has the ability to force the estimated bitrate on an SFU
+   bridge.  To use it, set a bridge profile's remb_behavior to "force" and
+   set remb_estimated_bitrate to a rate in bits per second.  The
+   remb_estimated_bitrate parameter is ignored if remb_behavior is something
+   other than "force".
+
+------------------------------------------------------------------------------
+--- Functionality changes from Asterisk 16.13.0 to Asterisk 16.14.0 ----------
+------------------------------------------------------------------------------
+
 chan_pjsip
 ------------------
  * The PJSIP_SEND_SESSION_REFRESH dialplan function now issues a warning, and
index 87c743c75fe2e0e2da5f548b526abb60f60a70ae..4043e7308ddeee3566a8723fb773f633e707ee12 100644 (file)
 ===
 ===========================================================
 
+------------------------------------------------------------------------------
+--- Functionality changes from Asterisk 16.13.0 to Asterisk 16.14.0 ----------
+------------------------------------------------------------------------------
+
+res_stir_shaken
+------------------
+ * A new directory has been added under the default (e.g., /var/lib/asterisk) -
+   inside the 'keys' directory - named 'stir_shaken'. This directory will
+   hold public keys that have been downloaded for STIR/SHAKEN verification.
+
 ------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 16.9.0 to Asterisk 16.10.0 -----------
 ------------------------------------------------------------------------------
diff --git a/doc/CHANGES-staging/app_confbridge.txt b/doc/CHANGES-staging/app_confbridge.txt
deleted file mode 100644 (file)
index 092e392..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-Subject: app_confbridge
-
-app_confbridge now has the ability to force the estimated bitrate on an SFU
-bridge.  To use it, set a bridge profile's remb_behavior to "force" and
-set remb_estimated_bitrate to a rate in bits per second.  The
-remb_estimated_bitrate parameter is ignored if remb_behavior is something
-other than "force".
diff --git a/doc/CHANGES-staging/logger_category.txt b/doc/CHANGES-staging/logger_category.txt
deleted file mode 100644 (file)
index 67cc3ec..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-Subject: Core
-
-Added debug logging categories that allow a user to output debug information
-based on a specified category. This lets the user limit, and filter debug
-output to data relevant to a particular context, or topic. For instance the
-following categories are now available for debug logging purposes:
-
-  dtls, dtls_packet, ice, rtcp, rtcp_packet, rtp, rtp_packet, stun, stun_packet
-
-These debug categories can be enable/disable via an Asterisk CLI command:
-
-  core set debug category <category>[:<sublevel>] [category[:<sublevel] ...]
-  core set debug category off [<category> [<category>] ...]
-
-If no sub-level is associated all debug statements for a given category are
-output. If a sub-level is given then only those statements assigned a value
-at or below the associated sub-level are output.
-
diff --git a/doc/CHANGES-staging/stir_shaken.txt b/doc/CHANGES-staging/stir_shaken.txt
deleted file mode 100644 (file)
index 3ad1784..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-Subject: STIR/SHAKEN
-
-STIR/SHAKEN support has been added to Asterisk. Configuration is done in
-stir_shaken.conf. There is a sample configuration file to help you get
-started (asterisk/configs/samples/stir_shaken.conf.sample). Once that's
-set up, you can enable STIR/SHAKEN on any endpoint by setting stir_shaken
-to yes on the endpoint configuration object. This will add an Identity
-header on outgoing INVITEs, and check for an Identity header on incoming
-INVITEs. This option has been added to Alembic as well.
-
-The information received on an incoming INVITE can be checked using the
-STIR_SHAKEN dialplan function. There are two variations:
-
-STIR_SHAKEN(count)
-STIR_SHAKEN(0, verify_result)
-
-The first variation will tell you how many STIR/SHAKEN results are on the
-channel. The second fetches information for a specific result. The first
-parameter is the index, followed by what information you want to retrieve.
-The available options are 'verify_result', 'identity', and 'attestation'.
diff --git a/doc/UPGRADE-staging/res_stir_shaken_directory.txt b/doc/UPGRADE-staging/res_stir_shaken_directory.txt
deleted file mode 100644 (file)
index 160241e..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-Subject: res_stir_shaken
-
-A new directory has been added under the default (e.g., /var/lib/asterisk) -
-inside the 'keys' directory - named 'stir_shaken'. This directory will
-hold public keys that have been downloaded for STIR/SHAKEN verification.