1 ===========================================================
3 === Information for upgrading between Asterisk versions
5 === These files document all the changes that MUST be taken
6 === into account when upgrading between the Asterisk
7 === versions listed below. These changes may require that
8 === you modify your configuration files, dialplan or (in
9 === some cases) source code if you have your own Asterisk
10 === modules or patches. These files also include advance
11 === notice of any functionality that has been marked as
12 === 'deprecated' and may be removed in a future release,
13 === along with the suggested replacement functionality.
15 === UPGRADE-1.2.txt -- Upgrade info for 1.0 to 1.2
16 === UPGRADE-1.4.txt -- Upgrade info for 1.2 to 1.4
17 === UPGRADE-1.6.txt -- Upgrade info for 1.4 to 1.6
18 === UPGRADE-1.8.txt -- Upgrade info for 1.6 to 1.8
19 === UPGRADE-10.txt -- Upgrade info for 1.8 to 10
21 ===========================================================
26 - ENUM query functions now return a count of -1 on lookup error to
27 differentiate between a failed query and a successful query with 0 results
28 matching the specified type.
31 - Files listed below have been updated to be more consistent with how Asterisk
32 parses configuration files. This makes configuration files more consistent
33 with what is expected across modules.
40 - This module now expects an 'extra' column in the database for data added
41 using the CELGenUserEvent() application.
44 - ConfBridge's dialplan arguments have changed and are not
48 - The format interpreter formats/format_sln16.c for the file extension
49 '.sln16' has been removed. The '.sln16' file interpreter now exists
50 in the formats/format_sln.c module along with new support for sln12,
51 sln24, sln32, sln44, sln48, sln96, and sln192 file extensions.
54 - A bindaddr must be specified in order for the HTTP server
55 to run. Previous versions would default to 0.0.0.0 if no
56 bindaddr was specified.
59 - The default value for 'context' and 'parkinglots' in gtalk.conf has
60 been changed to 'default', previously they were empty.
63 - The mohinterpret=passthrough setting is deprecated in favor of
67 - Execution no longer continues after applications that do dialplan jumps
68 (such as app.goto). Now when an application such as app.goto() is called,
69 control is returned back to the pbx engine and the current extension
70 function stops executing.
71 - the autoservice now defaults to being on by default
72 - autoservice_start() and autoservice_start() no longer return a value.
75 - Mark QUEUE_MEMBER_PENALTY Deprecated it never worked for realtime members
76 - QUEUE_MEMBER is now R/W supporting setting paused, ignorebusy and penalty.
79 - The internal Asterisk database has been switched from Berkeley DB 1.86 to
80 SQLite 3. An existing Berkeley astdb file can be converted with the astdb2sqlite3
81 utility in the UTILS section of menuselect. If an existing astdb is found and no
82 astdb.sqlite3 exists, astdb2sqlite3 will be compiled automatically. Asterisk will
83 convert an existing astdb to the SQLite3 version automatically at runtime.
86 - The AMI protocol version was incremented to 1.2 as a result of changing two
87 instances of the Unlink event to Bridge events. This change was documented
88 as part of the AMI 1.1 update, but two Unlink events were inadvertently left
92 - All modules in the addons, apps, bridge, cdr, cel, channels, codecs,
93 formats, funcs, pbx, and res have been updated to include MODULEINFO data
94 that includes <support_level> tags with a value of core, extended, or deprecated.
95 More information is available on the Asterisk wiki at
96 https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Support+States
98 Deprecated modules are now marked to not build by default and must be explicitly
99 enabled in menuselect.
102 - Setting of HASH(SIP_CAUSE,<slave-channel-name>) on channels is now disabled
103 by default. It can be enabled using the 'storesipcause' option. This feature
104 has a significant performance penalty.
106 ===========================================================
107 ===========================================================