]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update for 21.10.0-rc3 21.10.0-rc3
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 10 Jul 2025 15:58:55 +0000 (15:58 +0000)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 10 Jul 2025 15:58:55 +0000 (15:58 +0000)
.version
CHANGES.html
CHANGES.md
ChangeLogs/ChangeLog-21.10.0-rc3.html [new file with mode: 0644]
ChangeLogs/ChangeLog-21.10.0-rc3.md [new file with mode: 0644]
README.html
README.md

index 6c3a0d581c7b931c0ba4761ad1657a2d185d9972..2b605f0eedf54f8f5647437a391c5f86eda6c01e 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-21.10.0-rc2
+21.10.0-rc3
index f80f240f0197d42eb56d9767a4af2982263b6d38..8c0f33588b88ba78adf7c802e6a0e1e812a7d453 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-21.10.0-rc2.html
\ No newline at end of file
+ChangeLogs/ChangeLog-21.10.0-rc3.html
\ No newline at end of file
index c84be1353358a246aa6e974d56117d41db93c6d6..fac6649dea8e53fa225181af1e8f6fc0154bff65 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-21.10.0-rc2.md
\ No newline at end of file
+ChangeLogs/ChangeLog-21.10.0-rc3.md
\ No newline at end of file
diff --git a/ChangeLogs/ChangeLog-21.10.0-rc3.html b/ChangeLogs/ChangeLog-21.10.0-rc3.html
new file mode 100644 (file)
index 0000000..46e5c50
--- /dev/null
@@ -0,0 +1,59 @@
+<html><head><title>ChangeLog for asterisk-21.10.0-rc3</title></head><body>
+<h2>Change Log for Release asterisk-21.10.0-rc3</h2>
+<h3>Links:</h3>
+<ul>
+<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-21.10.0-rc3.html">Full ChangeLog</a>  </li>
+<li><a href="https://github.com/asterisk/asterisk/compare/21.10.0-rc2...21.10.0-rc3">GitHub Diff</a>  </li>
+<li><a href="https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-21.10.0-rc3.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: 1</li>
+<li>Issues Resolved: 2</li>
+<li>Security Advisories Resolved: 0</li>
+</ul>
+<h3>User Notes:</h3>
+<h3>Upgrade Notes:</h3>
+<h3>Commit Authors:</h3>
+<ul>
+<li>George Joseph: (2)</li>
+</ul>
+<h2>Issue and Commit Detail:</h2>
+<h3>Closed Issues:</h3>
+<ul>
+<li>1287: [bug]: channelstorage.c: Compilation failure with DEBUG_FD_LEAKS</li>
+<li>1288: [bug]: Crash when destroying channel with C++ alternative storage backend enabled</li>
+</ul>
+<h3>Commits By Author:</h3>
+<ul>
+<li>
+<h4>George Joseph (2):</h4>
+</li>
+<li>channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.</li>
+<li>channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.</li>
+</ul>
+<h3>Commit List:</h3>
+<ul>
+<li>channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.</li>
+<li>channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.</li>
+</ul>
+<h3>Commit Details:</h3>
+<h4>channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.</h4>
+<p>Author: George Joseph
+  Date:   2025-07-08</p>
+<p>DEBUG_FD_LEAKS replaces calls to "open" and "close" with functions that keep
+  track of file descriptors, even when those calls are actually callbacks
+  defined in structures like ast_channelstorage_instance-&gt;open and don't touch
+  file descriptors.  This causes compilation failures.  Those callbacks
+  have been renamed to "open_instance" and "close_instance" respectively.</p>
+<p>Resolves: #1287</p>
+<h4>channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.</h4>
+<p>Author: George Joseph
+  Date:   2025-07-09</p>
+<p>When the callback() API was invoked but no channel passed the test, callback
+  would return the last channel tested instead of NULL.  It now correctly
+  returns NULL when no channel matches.</p>
+<p>Resolves: #1288</p>
+</body></html>
diff --git a/ChangeLogs/ChangeLog-21.10.0-rc3.md b/ChangeLogs/ChangeLog-21.10.0-rc3.md
new file mode 100644 (file)
index 0000000..c477c22
--- /dev/null
@@ -0,0 +1,70 @@
+
+## Change Log for Release asterisk-21.10.0-rc3
+
+### Links:
+
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-21.10.0-rc3.html)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/21.10.0-rc2...21.10.0-rc3)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-21.10.0-rc3.tar.gz)  
+ - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
+
+### Summary:
+
+- Commits: 2
+- Commit Authors: 1
+- Issues Resolved: 2
+- Security Advisories Resolved: 0
+
+### User Notes:
+
+
+### Upgrade Notes:
+
+
+### Commit Authors:
+
+- George Joseph: (2)
+
+## Issue and Commit Detail:
+
+### Closed Issues:
+
+  - 1287: [bug]: channelstorage.c: Compilation failure with DEBUG_FD_LEAKS
+  - 1288: [bug]: Crash when destroying channel with C++ alternative storage backend enabled
+
+### Commits By Author:
+
+- #### George Joseph (2):
+  - channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.
+  - channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.
+
+
+### Commit List:
+
+-  channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.
+-  channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.
+
+### Commit Details:
+
+#### channelstorage: Rename callbacks that conflict with DEBUG_FD_LEAKS.
+  Author: George Joseph
+  Date:   2025-07-08
+
+  DEBUG_FD_LEAKS replaces calls to "open" and "close" with functions that keep
+  track of file descriptors, even when those calls are actually callbacks
+  defined in structures like ast_channelstorage_instance->open and don't touch
+  file descriptors.  This causes compilation failures.  Those callbacks
+  have been renamed to "open_instance" and "close_instance" respectively.
+
+  Resolves: #1287
+
+#### channelstorage_cpp_map_name_id: Fix callback returning non-matching channels.
+  Author: George Joseph
+  Date:   2025-07-09
+
+  When the callback() API was invoked but no channel passed the test, callback
+  would return the last channel tested instead of NULL.  It now correctly
+  returns NULL when no channel matches.
+
+  Resolves: #1288
+
index 29366a9823ea255d48c699148bf885c2bfd233b9..e1d09a61b708c093dd5cad9d03eebc5372753036 100644 (file)
@@ -1,4 +1,4 @@
-<html><head><title>Readme for asterisk-21.10.0-rc2</title></head><body>
+<html><head><title>Readme for asterisk-21.10.0-rc3</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-21.10.0-rc2.html">Change Logs</a></p>
+<p><a href="ChangeLogs/ChangeLog-21.10.0-rc3.html">Change Logs</a></p>
 <!-- END-CHANGELOGS -->
 
 <h3>NEW INSTALLATIONS</h3>
index d22c333c7c138e1dca641741db1da60c2ec1995c..fff78fec287c82ab7674b3609e155284dbb0232c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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-21.10.0-rc2.html)
+[Change Logs](ChangeLogs/ChangeLog-21.10.0-rc3.html)
 <!-- END-CHANGELOGS -->
 
 ### NEW INSTALLATIONS