]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update for 18.19.0-rc2 18.19.0-rc2
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 13 Jul 2023 13:57:56 +0000 (13:57 +0000)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 13 Jul 2023 13:57:56 +0000 (13:57 +0000)
.version
CHANGES.md
ChangeLogs/ChangeLog-18.19.0-rc2.md [new file with mode: 0644]

index 379e5cfc91dcbd429e06ef28a425d8ce214ca54d..ac826e63490601fba2c59f118f929ed61aabaf1e 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-18.19.0-rc1
+18.19.0-rc2
index ddb9e9f1941711d174db05322feba372aadcc9ce..5f488f937c7ddb00107c29f5222e4b76835e2237 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-18.19.0-rc1.md
\ No newline at end of file
+ChangeLogs/ChangeLog-18.19.0-rc2.md
\ No newline at end of file
diff --git a/ChangeLogs/ChangeLog-18.19.0-rc2.md b/ChangeLogs/ChangeLog-18.19.0-rc2.md
new file mode 100644 (file)
index 0000000..cb4abb8
--- /dev/null
@@ -0,0 +1,62 @@
+
+Change Log for Release 18.19.0-rc2
+========================================
+
+Links:
+----------------------------------------
+
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-18.19.0-rc2.md)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/18.19.0-rc1...18.19.0-rc2)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-18.19.0-rc2.tar.gz)  
+ - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
+
+Summary:
+----------------------------------------
+
+- app.h: Move declaration of ast_getdata_result before its first use
+- doc: Remove obsolete CHANGES-staging and UPGRADE-staging
+
+User Notes:
+----------------------------------------
+
+
+Upgrade Notes:
+----------------------------------------
+
+
+Closed Issues:
+----------------------------------------
+
+  - #200: [bug]: Regression: In app.h an enum is used before its declaration.
+
+Commits By Author:
+----------------------------------------
+
+- ### George Joseph (2):
+  - doc: Remove obsolete CHANGES-staging and UPGRADE-staging
+  - app.h: Move declaration of ast_getdata_result before its first use
+
+
+Detail:
+----------------------------------------
+
+- ### app.h: Move declaration of ast_getdata_result before its first use
+  Author: George Joseph  
+  Date:   2023-07-10  
+
+  The ast_app_getdata() and ast_app_getdata_terminator() declarations
+  in app.h were changed recently to return enum ast_getdata_result
+  (which is how they were defined in app.c).  The existing
+  declaration of ast_getdata_result in app.h was about 1000 lines
+  after those functions however so under certain circumstances,
+  a "use before declaration" error was thrown by the compiler.
+  The declaration of the enum was therefore moved to before those
+  functions.
+
+  Resolves: #200
+
+- ### doc: Remove obsolete CHANGES-staging and UPGRADE-staging
+  Author: George Joseph  
+  Date:   2023-07-10  
+
+