]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Update for 20.11.0 20.11.0
authorAsterisk Development Team <asteriskteam@digium.com>
Thu, 21 Nov 2024 17:17:25 +0000 (17:17 +0000)
committerAsterisk Development Team <asteriskteam@digium.com>
Thu, 21 Nov 2024 17:17:25 +0000 (17:17 +0000)
.version
CHANGES.md
ChangeLogs/ChangeLog-20.11.0.md [moved from ChangeLogs/ChangeLog-20.11.0-rc1.md with 97% similarity]
contrib/realtime/mysql/mysql_config.sql
contrib/realtime/postgresql/postgresql_config.sql

index 25149b236220e11c37e9b07ab3eabfc2bdfc4cd7..8b0beab16a5807d524f0bac77cf4e684b8e59c20 100644 (file)
--- a/.version
+++ b/.version
@@ -1 +1 @@
-20.11.0-rc1
+20.11.0
index 0bae68b38514a0ae22b467035bab81e4223369d9..7490546690c1cc6df8b17a45c335aa934597e048 120000 (symlink)
@@ -1 +1 @@
-ChangeLogs/ChangeLog-20.11.0-rc1.md
\ No newline at end of file
+ChangeLogs/ChangeLog-20.11.0.md
\ No newline at end of file
similarity index 97%
rename from ChangeLogs/ChangeLog-20.11.0-rc1.md
rename to ChangeLogs/ChangeLog-20.11.0.md
index dc61d83befdd411c95517001205864e99857f0d1..309bb5913c65736f131639b040a558d5c5f6940e 100644 (file)
@@ -1,18 +1,18 @@
 
-## Change Log for Release asterisk-20.11.0-rc1
+## Change Log for Release asterisk-20.11.0
 
 ### Links:
 
- - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.11.0-rc1.md)  
- - [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.10.0...20.11.0-rc1)  
- - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.11.0-rc1.tar.gz)  
+ - [Full ChangeLog](https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-20.11.0.md)  
+ - [GitHub Diff](https://github.com/asterisk/asterisk/compare/20.10.0...20.11.0)  
+ - [Tarball](https://downloads.asterisk.org/pub/telephony/asterisk/asterisk-20.11.0.tar.gz)  
  - [Downloads](https://downloads.asterisk.org/pub/telephony/asterisk)  
 
 ### Summary:
 
-- Commits: 39
+- Commits: 40
 - Commit Authors: 9
-- Issues Resolved: 21
+- Issues Resolved: 22
 - Security Advisories Resolved: 0
 
 ### User Notes:
@@ -59,7 +59,7 @@
 - Allan Nathanson: (1)
 - Ben Ford: (3)
 - Chrsmj: (1)
-- George Joseph: (14)
+- George Joseph: (15)
 - Jiangxc: (1)
 - Naveen Albert: (7)
 - Peter Jannesen: (2)
@@ -90,6 +90,7 @@
   - 979: [improvement]: Add ability to suppress MOH when a remote endpoint sends "sendonly" or "inactive"
   - 982: [bug]: The addition of tenantid to the ast_sip_endpoint structure broke ABI compatibility
   - 990: [improvement]: The help for PJSIP_AOR should indicate that you need to call PJSIP_CONTACT to get contact details
+  - 995: [bug]: suppress_moh_on_sendonly should use AST_BOOL_VALUES instead of YESNO_VALUES in alembic script
 
 ### Commits By Author:
 
   - app_mixmonitor: Add 'D' option for dual-channel audio.
   - Add res_pjsip_config_sangoma external module.
 
-- #### George Joseph (14):
+- #### George Joseph (15):
   - db.c: Remove limit on family/key length
   - manager.c: Split XML documentation to manager_doc.xml
   - manager: Enhance event filtering for performance
   - res_pjsip: Move tenantid to end of ast_sip_endpoint
   - func_pjsip_aor/contact: Fix documentation for contact ID
   - res_pjsip: Add new endpoint option "suppress_moh_on_sendonly"
+  - res_pjsip: Change suppress_moh_on_sendonly to OPT_BOOL_T
 
 - #### Naveen Albert (7):
   - app_voicemail: Fix ill-formatted pager emails with custom subject.
 
 ### Commit List:
 
+-  res_pjsip: Change suppress_moh_on_sendonly to OPT_BOOL_T
 -  res_pjsip: Add new endpoint option "suppress_moh_on_sendonly"
 -  res_pjsip.c: Fix Contact header rendering for IPv6 addresses.
 -  samples: remove and/or change some wiki mentions
 
 ### Commit Details:
 
+#### res_pjsip: Change suppress_moh_on_sendonly to OPT_BOOL_T
+  Author: George Joseph
+  Date:   2024-11-15
+
+  The suppress_moh_on_sendonly endpoint option should have been
+  defined as OPT_BOOL_T in pjsip_configuration.c and AST_BOOL_VALUES
+  in the alembic script instead of OPT_YESNO_T and YESNO_VALUES.
+
+  Also updated contrib/ast-db-manage/README.md to indicate that
+  AST_BOOL_VALUES should always be used and provided an example.
+
+  Resolves: #995
+
 #### res_pjsip: Add new endpoint option "suppress_moh_on_sendonly"
   Author: George Joseph
   Date:   2024-11-05
index 01ffdffd4b4c7071c4f2081946802aceb6c8b25b..72e8ee33d749cf1c576c7d9cd273206890f7da9b 100644 (file)
@@ -1707,7 +1707,7 @@ UPDATE alembic_version SET version_num='801b9fced8b7' WHERE alembic_version.vers
 
 -- Running upgrade 801b9fced8b7 -> 4f91fc18c979
 
-ALTER TABLE ps_endpoints ADD COLUMN suppress_moh_on_sendonly ENUM('yes','no');
+ALTER TABLE ps_endpoints ADD COLUMN suppress_moh_on_sendonly ENUM('0','1','off','on','false','true','no','yes');
 
 UPDATE alembic_version SET version_num='4f91fc18c979' WHERE alembic_version.version_num = '801b9fced8b7';
 
index 01164749c4461b653588cd97335ab10ec855dd2d..1623ac94871643ca42b63096b71a7c8d3c946080 100644 (file)
@@ -1831,7 +1831,7 @@ UPDATE alembic_version SET version_num='801b9fced8b7' WHERE alembic_version.vers
 
 -- Running upgrade 801b9fced8b7 -> 4f91fc18c979
 
-ALTER TABLE ps_endpoints ADD COLUMN suppress_moh_on_sendonly yesno_values;
+ALTER TABLE ps_endpoints ADD COLUMN suppress_moh_on_sendonly ast_bool_values;
 
 UPDATE alembic_version SET version_num='4f91fc18c979' WHERE alembic_version.version_num = '801b9fced8b7';