Update for 20.19.0

This commit is contained in:
Asterisk Development Team
2026-04-09 16:13:38 +00:00
parent 257f01f254
commit f66917fe6d
9 changed files with 111 additions and 193 deletions

View File

@@ -1 +1 @@
20.19.0-rc2
20.19.0

View File

@@ -1 +1 @@
ChangeLogs/ChangeLog-20.19.0-rc2.html
ChangeLogs/ChangeLog-20.19.0.html

View File

@@ -1 +1 @@
ChangeLogs/ChangeLog-20.19.0-rc2.md
ChangeLogs/ChangeLog-20.19.0.md

View File

@@ -1,82 +0,0 @@
<html><head><title>ChangeLog for asterisk-20.19.0-rc2</title></head><body>
<h2>Change Log for Release asterisk-20.19.0-rc2</h2>
<h3>Links:</h3>
<ul>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.19.0-rc2.html">Full ChangeLog</a> </li>
<li><a href="https://github.com/asterisk/asterisk/compare/20.19.0-rc1...20.19.0-rc2">GitHub Diff</a> </li>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.19.0-rc2.tar.gz">Tarball</a> </li>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk">Downloads</a> </li>
</ul>
<h3>Summary:</h3>
<ul>
<li>Commits: 2</li>
<li>Commit Authors: 2</li>
<li>Issues Resolved: 3</li>
<li>Security Advisories Resolved: 0</li>
</ul>
<h3>User Notes:</h3>
<h3>Upgrade Notes:</h3>
<h3>Developer Notes:</h3>
<h3>Commit Authors:</h3>
<ul>
<li>George Joseph: (1)</li>
<li>nappsoft: (1)</li>
</ul>
<h2>Issue and Commit Detail:</h2>
<h3>Closed Issues:</h3>
<ul>
<li>1844: [bug]: cdrel_custom isn't respecting the default time format for CEL records</li>
<li>1845: [bug]:res_cdrel_custom produces wrong float timestamps</li>
<li>1852: [bug]: res_cdrel_custom: connection to the sqlite3 database closes from time to time</li>
</ul>
<h3>Commits By Author:</h3>
<ul>
<li>
<h4>George Joseph (1):</h4>
</li>
<li>
<p>res_cdrel_custom: Resolve several formatting issues.</p>
</li>
<li>
<h4>nappsoft (1):</h4>
</li>
<li>res_cdrel_custom: do not free config when no new config was loaded</li>
</ul>
<h3>Commit List:</h3>
<ul>
<li>res_cdrel_custom: do not free config when no new config was loaded</li>
<li>res_cdrel_custom: Resolve several formatting issues.</li>
</ul>
<h3>Commit Details:</h3>
<h4>res_cdrel_custom: do not free config when no new config was loaded</h4>
<p>Author: nappsoft
Date: 2026-04-02</p>
<p>When the res_cdrel_custom modules is reloaded and the config has not been changed asterisk should not free the old config. Otherwise the connection to the database will be closed and no new connection will be opened.</p>
<p>Resolves: #1852</p>
<h4>res_cdrel_custom: Resolve several formatting issues.</h4>
<p>Author: George Joseph
Date: 2026-03-31</p>
<p>Several issues are resolved:</p>
<ul>
<li>
<p>Internally, floats were used for timestamp values but this could result
in wrapping so they've been changed to doubles.</p>
</li>
<li>
<p>Historically, the default CEL eventtime format is <code>&lt;seconds&gt;.&lt;microseconds&gt;</code>
with <code>&lt;microseconds&gt;</code> always being 6 digits. This should have continued to be
the case but res_cdrel_custom wasn't checking the <code>dateformat</code> setting in
cel.conf and was defaulting to <code>%F %T</code>. res_cdrel_custom now gets the default
date format from cel.conf, which will be whatever the <code>dateformat</code> parameter
is set to or <code>&lt;seconds&gt;.&lt;microseconds&gt;</code> if not set.</p>
</li>
<li>
<p>The timeval field formatter for both CDR and CEL wasn't handling custom
strftime format strings correctly. This is now fixed so you should be able
to specifiy custom strftime format strings for the CEL <code>eventtime</code> and CDR
<code>start</code>, <code>answer</code> and <code>end</code> fields. For example: <code>eventtime(%FT%T%z)</code>.</p>
</li>
</ul>
<p>Resolves: #1844
Resolves: #1845</p>
</body></html>

View File

@@ -1,86 +0,0 @@
## Change Log for Release asterisk-20.19.0-rc2
### Links:
- [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.19.0-rc2.html)
- [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.19.0-rc1...20.19.0-rc2)
- [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.19.0-rc2.tar.gz)
- [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)
### Summary:
- Commits: 2
- Commit Authors: 2
- Issues Resolved: 3
- Security Advisories Resolved: 0
### User Notes:
### Upgrade Notes:
### Developer Notes:
### Commit Authors:
- George Joseph: (1)
- nappsoft: (1)
## Issue and Commit Detail:
### Closed Issues:
- 1844: [bug]: cdrel_custom isn't respecting the default time format for CEL records
- 1845: [bug]:res_cdrel_custom produces wrong float timestamps
- 1852: [bug]: res_cdrel_custom: connection to the sqlite3 database closes from time to time
### Commits By Author:
- #### George Joseph (1):
- res_cdrel_custom: Resolve several formatting issues.
- #### nappsoft (1):
- res_cdrel_custom: do not free config when no new config was loaded
### Commit List:
- res_cdrel_custom: do not free config when no new config was loaded
- res_cdrel_custom: Resolve several formatting issues.
### Commit Details:
#### res_cdrel_custom: do not free config when no new config was loaded
Author: nappsoft
Date: 2026-04-02
When the res_cdrel_custom modules is reloaded and the config has not been changed asterisk should not free the old config. Otherwise the connection to the database will be closed and no new connection will be opened.
Resolves: #1852
#### res_cdrel_custom: Resolve several formatting issues.
Author: George Joseph
Date: 2026-03-31
Several issues are resolved:
* Internally, floats were used for timestamp values but this could result
in wrapping so they've been changed to doubles.
* Historically, the default CEL eventtime format is `<seconds>.<microseconds>`
with `<microseconds>` always being 6 digits. This should have continued to be
the case but res_cdrel_custom wasn't checking the `dateformat` setting in
cel.conf and was defaulting to `%F %T`. res_cdrel_custom now gets the default
date format from cel.conf, which will be whatever the `dateformat` parameter
is set to or `<seconds>.<microseconds>` if not set.
* The timeval field formatter for both CDR and CEL wasn't handling custom
strftime format strings correctly. This is now fixed so you should be able
to specifiy custom strftime format strings for the CEL `eventtime` and CDR
`start`, `answer` and `end` fields. For example: `eventtime(%FT%T%z)`.
Resolves: #1844
Resolves: #1845

View File

@@ -1,17 +1,17 @@
<html><head><title>ChangeLog for asterisk-20.19.0-rc1</title></head><body>
<h2>Change Log for Release asterisk-20.19.0-rc1</h2>
<html><head><title>ChangeLog for asterisk-20.19.0</title></head><body>
<h2>Change Log for Release asterisk-20.19.0</h2>
<h3>Links:</h3>
<ul>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.19.0-rc1.html">Full ChangeLog</a> </li>
<li><a href="https://github.com/asterisk/asterisk/compare/20.18.2...20.19.0-rc1">GitHub Diff</a> </li>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.19.0-rc1.tar.gz">Tarball</a> </li>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.19.0.html">Full ChangeLog</a> </li>
<li><a href="https://github.com/asterisk/asterisk/compare/20.18.2...20.19.0">GitHub Diff</a> </li>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.19.0.tar.gz">Tarball</a> </li>
<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk">Downloads</a> </li>
</ul>
<h3>Summary:</h3>
<ul>
<li>Commits: 48</li>
<li>Commit Authors: 20</li>
<li>Issues Resolved: 31</li>
<li>Commits: 50</li>
<li>Commit Authors: 21</li>
<li>Issues Resolved: 34</li>
<li>Security Advisories Resolved: 0</li>
</ul>
<h3>User Notes:</h3>
@@ -87,7 +87,7 @@
<li>Alexis Hadjisotiriou: (3)</li>
<li>Arcadiy Ivanov: (1)</li>
<li>Ben Ford: (2)</li>
<li>George Joseph: (9)</li>
<li>George Joseph: (10)</li>
<li>Jasper Hafkenscheid: (1)</li>
<li>Joshua C. Colp: (2)</li>
<li>Julian C. Dunn: (1)</li>
@@ -101,6 +101,7 @@
<li>Talha Asghar: (1)</li>
<li>Tinet-mucw: (2)</li>
<li>hishamway: (1)</li>
<li>nappsoft: (1)</li>
<li>phoneben: (4)</li>
<li>serfreeman1337: (2)</li>
</ul>
@@ -138,6 +139,9 @@
<li>1819: [bug]: When a 302 is received from a UAS, the cause and tech_cause codes set on the channel are incorrect.</li>
<li>1831: [bug]:raise_exception() and EXCEPTION() read use channel datastores without holding ast_channel_lock</li>
<li>1833: [bug]: Address security vulnerabilities in pjproject</li>
<li>1844: [bug]: cdrel_custom isn't respecting the default time format for CEL records</li>
<li>1845: [bug]:res_cdrel_custom produces wrong float timestamps</li>
<li>1852: [bug]: res_cdrel_custom: connection to the sqlite3 database closes from time to time</li>
</ul>
<h3>Commits By Author:</h3>
<ul>
@@ -169,8 +173,9 @@
<p>chan_websocket: Add media direction.</p>
</li>
<li>
<h4>George Joseph (9):</h4>
<h4>George Joseph (10):</h4>
</li>
<li>res_cdrel_custom: Resolve several formatting issues.</li>
<li>xmldoc.c: Fix memory leaks in handling of provided_by.</li>
<li>SECURITY.md: Update with additional instructions.</li>
<li>chan_pjsip: Set correct cause codes for non-2XX responses.</li>
@@ -274,6 +279,12 @@
<p>res_pjsip_session.c: Prevent INVITE failover when session is cancelled</p>
</li>
<li>
<h4>nappsoft (1):</h4>
</li>
<li>
<p>res_cdrel_custom: do not free config when no new config was loaded</p>
</li>
<li>
<h4>phoneben (4):</h4>
</li>
<li>manager.c : Fix CLI event display</li>
@@ -290,6 +301,8 @@
</ul>
<h3>Commit List:</h3>
<ul>
<li>res_cdrel_custom: do not free config when no new config was loaded</li>
<li>res_cdrel_custom: Resolve several formatting issues.</li>
<li>res_pjsip: Address pjproject security vulnerabilities</li>
<li>pbx: Hold channel lock for exception datastore access</li>
<li>xmldoc.c: Fix memory leaks in handling of provided_by.</li>
@@ -340,6 +353,37 @@
<li>res_pjsip_pubsub: Fix ao2 reference leak of subscription tree in ast_sip_subscription</li>
</ul>
<h3>Commit Details:</h3>
<h4>res_cdrel_custom: do not free config when no new config was loaded</h4>
<p>Author: nappsoft
Date: 2026-04-02</p>
<p>When the res_cdrel_custom modules is reloaded and the config has not been changed asterisk should not free the old config. Otherwise the connection to the database will be closed and no new connection will be opened.</p>
<p>Resolves: #1852</p>
<h4>res_cdrel_custom: Resolve several formatting issues.</h4>
<p>Author: George Joseph
Date: 2026-03-31</p>
<p>Several issues are resolved:</p>
<ul>
<li>
<p>Internally, floats were used for timestamp values but this could result
in wrapping so they've been changed to doubles.</p>
</li>
<li>
<p>Historically, the default CEL eventtime format is <code>&lt;seconds&gt;.&lt;microseconds&gt;</code>
with <code>&lt;microseconds&gt;</code> always being 6 digits. This should have continued to be
the case but res_cdrel_custom wasn't checking the <code>dateformat</code> setting in
cel.conf and was defaulting to <code>%F %T</code>. res_cdrel_custom now gets the default
date format from cel.conf, which will be whatever the <code>dateformat</code> parameter
is set to or <code>&lt;seconds&gt;.&lt;microseconds&gt;</code> if not set.</p>
</li>
<li>
<p>The timeval field formatter for both CDR and CEL wasn't handling custom
strftime format strings correctly. This is now fixed so you should be able
to specifiy custom strftime format strings for the CEL <code>eventtime</code> and CDR
<code>start</code>, <code>answer</code> and <code>end</code> fields. For example: <code>eventtime(%FT%T%z)</code>.</p>
</li>
</ul>
<p>Resolves: #1844
Resolves: #1845</p>
<h4>res_pjsip: Address pjproject security vulnerabilities</h4>
<p>Author: Mike Bradeen
Date: 2026-03-23</p>

View File

@@ -1,18 +1,18 @@
## Change Log for Release asterisk-20.19.0-rc1
## Change Log for Release asterisk-20.19.0
### Links:
- [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.19.0-rc1.html)
- [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.18.2...20.19.0-rc1)
- [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.19.0-rc1.tar.gz)
- [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.19.0.html)
- [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.18.2...20.19.0)
- [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.19.0.tar.gz)
- [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)
### Summary:
- Commits: 48
- Commit Authors: 20
- Issues Resolved: 31
- Commits: 50
- Commit Authors: 21
- Issues Resolved: 34
- Security Advisories Resolved: 0
### User Notes:
@@ -83,7 +83,7 @@
- Alexis Hadjisotiriou: (3)
- Arcadiy Ivanov: (1)
- Ben Ford: (2)
- George Joseph: (9)
- George Joseph: (10)
- Jasper Hafkenscheid: (1)
- Joshua C. Colp: (2)
- Julian C. Dunn: (1)
@@ -97,6 +97,7 @@
- Talha Asghar: (1)
- Tinet-mucw: (2)
- hishamway: (1)
- nappsoft: (1)
- phoneben: (4)
- serfreeman1337: (2)
@@ -135,6 +136,9 @@
- 1819: [bug]: When a 302 is received from a UAS, the cause and tech_cause codes set on the channel are incorrect.
- 1831: [bug]:raise_exception() and EXCEPTION() read use channel datastores without holding ast_channel_lock
- 1833: [bug]: Address security vulnerabilities in pjproject
- 1844: [bug]: cdrel_custom isn't respecting the default time format for CEL records
- 1845: [bug]:res_cdrel_custom produces wrong float timestamps
- 1852: [bug]: res_cdrel_custom: connection to the sqlite3 database closes from time to time
### Commits By Author:
@@ -153,7 +157,8 @@
- chan_websocket_doc.xml: Add d(media_direction) option.
- chan_websocket: Add media direction.
- #### George Joseph (9):
- #### George Joseph (10):
- res_cdrel_custom: Resolve several formatting issues.
- xmldoc.c: Fix memory leaks in handling of provided_by.
- SECURITY.md: Update with additional instructions.
- chan_pjsip: Set correct cause codes for non-2XX responses.
@@ -216,6 +221,9 @@
- #### hishamway (1):
- res_pjsip_session.c: Prevent INVITE failover when session is cancelled
- #### nappsoft (1):
- res_cdrel_custom: do not free config when no new config was loaded
- #### phoneben (4):
- manager.c : Fix CLI event display
- app_queue: Queue Timing Parity with Dial() and Accurate Wait Metrics
@@ -228,6 +236,8 @@
### Commit List:
- res_cdrel_custom: do not free config when no new config was loaded
- res_cdrel_custom: Resolve several formatting issues.
- res_pjsip: Address pjproject security vulnerabilities
- pbx: Hold channel lock for exception datastore access
- xmldoc.c: Fix memory leaks in handling of provided_by.
@@ -279,6 +289,38 @@
### Commit Details:
#### res_cdrel_custom: do not free config when no new config was loaded
Author: nappsoft
Date: 2026-04-02
When the res_cdrel_custom modules is reloaded and the config has not been changed asterisk should not free the old config. Otherwise the connection to the database will be closed and no new connection will be opened.
Resolves: #1852
#### res_cdrel_custom: Resolve several formatting issues.
Author: George Joseph
Date: 2026-03-31
Several issues are resolved:
* Internally, floats were used for timestamp values but this could result
in wrapping so they've been changed to doubles.
* Historically, the default CEL eventtime format is `<seconds>.<microseconds>`
with `<microseconds>` always being 6 digits. This should have continued to be
the case but res_cdrel_custom wasn't checking the `dateformat` setting in
cel.conf and was defaulting to `%F %T`. res_cdrel_custom now gets the default
date format from cel.conf, which will be whatever the `dateformat` parameter
is set to or `<seconds>.<microseconds>` if not set.
* The timeval field formatter for both CDR and CEL wasn't handling custom
strftime format strings correctly. This is now fixed so you should be able
to specifiy custom strftime format strings for the CEL `eventtime` and CDR
`start`, `answer` and `end` fields. For example: `eventtime(%FT%T%z)`.
Resolves: #1844
Resolves: #1845
#### res_pjsip: Address pjproject security vulnerabilities
Author: Mike Bradeen
Date: 2026-03-23

View File

@@ -1,4 +1,4 @@
<html><head><title>Readme for asterisk-20.19.0-rc2</title></head><body>
<html><head><title>Readme for asterisk-20.19.0</title></head><body>
<h1>The Asterisk(R) Open Source PBX</h1>
<pre><code>By Mark Spencer &lt;markster@digium.com&gt; and the Asterisk.org developer community.
Copyright (C) 2001-2025 Sangoma Technologies Corporation and other copyright holders.
@@ -37,7 +37,7 @@ hardware.</p>
<p>If you are updating from a previous version of Asterisk, make sure you
read the Change Logs.</p>
<!-- CHANGELOGS (the URL will change based on the location of this README) -->
<p><a href="ChangeLogs/ChangeLog-20.19.0-rc2.html">Change Logs</a></p>
<p><a href="ChangeLogs/ChangeLog-20.19.0.html">Change Logs</a></p>
<!-- END-CHANGELOGS -->
<h3>NEW INSTALLATIONS</h3>

View File

@@ -55,7 +55,7 @@ If you are updating from a previous version of Asterisk, make sure you
read the Change Logs.
<!-- CHANGELOGS (the URL will change based on the location of this README) -->
[Change Logs](ChangeLogs/ChangeLog-20.19.0-rc2.html)
[Change Logs](ChangeLogs/ChangeLog-20.19.0.html)
<!-- END-CHANGELOGS -->
### NEW INSTALLATIONS