Update for 18.0.0-rc2

This commit is contained in:
Asterisk Development Team
2020-10-13 11:24:42 -05:00
parent 5cc4a391b3
commit 6fd94258f8
6 changed files with 123 additions and 4014 deletions

View File

@@ -1 +1 @@
18.0.0-rc1
18.0.0-rc2

View File

@@ -1,3 +1,27 @@
2020-10-13 16:24 +0000 Asterisk Development Team <asteriskteam@digium.com>
* asterisk 18.0.0-rc2 Released.
2020-10-06 10:32 +0000 [5cc4a391b3] Joshua C. Colp <jcolp@sangoma.com>
* res_pjsip: Adjust outgoing offer call pref.
This changes the outgoing offer call preference
default option to match the behavior of previous
versions of Asterisk.
The additional advanced codec negotiation options
have also been removed from the sample configuration
and marked as reserved for future functionality in
XML documentation.
The codec preference options have also been fixed to
enforce local codec configuration.
ASTERISK-29109
Change-Id: Iad19347bd5f3d89900c15ecddfebf5e20950a1c2
2020-09-09 15:43 +0000 Asterisk Development Team <asteriskteam@digium.com>
* asterisk 18.0.0-rc1 Released.

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><title>Release Summary - asterisk-18.0.0-rc2</title><h1 align="center"><a name="top">Release Summary</a></h1><h3 align="center">asterisk-18.0.0-rc2</h3><h3 align="center">Date: 2020-10-13</h3><h3 align="center">&lt;asteriskteam@digium.com&gt;</h3><hr><h2 align="center">Table of Contents</h2><ol>
<li><a href="#summary">Summary</a></li>
<li><a href="#contributors">Contributors</a></li>
<li><a href="#closed_issues">Closed Issues</a></li>
<li><a href="#diffstat">Diffstat</a></li>
</ol><hr><a name="summary"><h2 align="center">Summary</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is the first release of a major new version of Asterisk. For a list of new features that have been included with this release, please see the CHANGES file inside the source package. Since this is a new major release, users are encouraged to do extended testing before upgrading to this version in a production environment.</p><p>The data in this summary reflects changes that have been made since the previous release, asterisk-18.0.0-rc1.</p><hr><a name="contributors"><h2 align="center">Contributors</h2></a><center><a href="#top">[Back to Top]</a></center><p>This table lists the people who have submitted code, those that have tested patches, as well as those that reported issues on the issue tracker that were resolved in this release. For coders, the number is how many of their patches (of any size) were committed into this release. For testers, the number is the number of times their name was listed as assisting with testing a patch. Finally, for reporters, the number is the number of issues that they reported that were affected by commits that went into this release.</p><table width="100%" border="0">
<tr><th width="33%">Coders</th><th width="33%">Testers</th><th width="33%">Reporters</th></tr>
<tr valign="top"><td width="33%">1 Joshua C. Colp <jcolp@sangoma.com><br/></td><td width="33%"><td width="33%">1 Ross Beer <ross.beer@voicehost.co.uk><br/></td></tr>
</table><hr><a name="closed_issues"><h2 align="center">Closed Issues</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a list of all issues from the issue tracker that were closed by changes that went into this release.</p><h3>Bug</h3><h4>Category: Resources/res_pjsip_session</h4><a href="https://issues.asterisk.org/jira/browse/ASTERISK-29109">ASTERISK-29109</a>: res_pjsip_session: Asterisk 18 does not progress calls due to codec negotiation after upgrading from Asterisk 16<br/>Reported by: Ross Beer<ul>
<li><a href="https://code.asterisk.org/code/changelog/asterisk?cs=5cc4a391b3db21198178093f0c65550d5eabb7ec">[5cc4a391b3]</a> Joshua C. Colp -- res_pjsip: Adjust outgoing offer call pref.</li>
</ul><br><hr><a name="diffstat"><h2 align="center">Diffstat Results</h2></a><center><a href="#top">[Back to Top]</a></center><p>This is a summary of the changes to the source code that went into this release that was generated using the diffstat utility.</p><pre>configs/samples/pjsip.conf.sample | 66 +++--------------------------
res/res_pjsip.c | 20 ++++----
res/res_pjsip/pjsip_configuration.c | 2
res/res_pjsip_session/pjsip_session_caps.c | 18 +++++--
4 files changed, 32 insertions(+), 74 deletions(-)</pre><br></html>

View File

@@ -0,0 +1,83 @@
Release Summary
asterisk-18.0.0-rc2
Date: 2020-10-13
<asteriskteam@digium.com>
----------------------------------------------------------------------
Table of Contents
1. Summary
2. Contributors
3. Closed Issues
4. Diffstat
----------------------------------------------------------------------
Summary
[Back to Top]
This is the first release of a major new version of Asterisk. For a list
of new features that have been included with this release, please see the
CHANGES file inside the source package. Since this is a new major release,
users are encouraged to do extended testing before upgrading to this
version in a production environment.
The data in this summary reflects changes that have been made since the
previous release, asterisk-18.0.0-rc1.
----------------------------------------------------------------------
Contributors
[Back to Top]
This table lists the people who have submitted code, those that have
tested patches, as well as those that reported issues on the issue tracker
that were resolved in this release. For coders, the number is how many of
their patches (of any size) were committed into this release. For testers,
the number is the number of times their name was listed as assisting with
testing a patch. Finally, for reporters, the number is the number of
issues that they reported that were affected by commits that went into
this release.
Coders Testers Reporters
1 Joshua C. Colp 1 Ross Beer
----------------------------------------------------------------------
Closed Issues
[Back to Top]
This is a list of all issues from the issue tracker that were closed by
changes that went into this release.
Bug
Category: Resources/res_pjsip_session
ASTERISK-29109: res_pjsip_session: Asterisk 18 does not progress calls due
to codec negotiation after upgrading from Asterisk 16
Reported by: Ross Beer
* [5cc4a391b3] Joshua C. Colp -- res_pjsip: Adjust outgoing offer call
pref.
----------------------------------------------------------------------
Diffstat Results
[Back to Top]
This is a summary of the changes to the source code that went into this
release that was generated using the diffstat utility.
configs/samples/pjsip.conf.sample | 66 +++--------------------------
res/res_pjsip.c | 20 ++++----
res/res_pjsip/pjsip_configuration.c | 2
res/res_pjsip_session/pjsip_session_caps.c | 18 +++++--
4 files changed, 32 insertions(+), 74 deletions(-)