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
20 === UPGRADE-11.txt -- Upgrade info for 10 to 11
21 === UPGRADE-12.txt -- Upgrade info for 11 to 12
22 === UPGRADE-13.txt -- Upgrade info for 12 to 13
23 ===========================================================
28 - For users using the FXO port (FXS signaling) distinctive ring detection
29 feature, you will need to adjust the dringX count values. The count
30 values now only record ring end events instead of any DAHDI event. A
31 ring-ring-ring pattern would exceed the pattern limits and stop
35 - The SIP dial string has been extended past the [!dnid] option by another
36 exclamation mark: [!dnid[!fromuri]. An exclamation mark in the To-URI
37 will now mean changes to the From-URI.
40 - The REF_DEBUG compiler flag is now used to enable refdebug by default.
41 The setting can be overridden in asterisk.conf by setting refdebug in
42 the options category. No recompile is required to enable/disable it.
44 - Modified processing of command-line options to first parse only what
45 is necessary to read asterisk.conf. Once asterisk.conf is fully loaded,
46 the remaining options are processed. The -X option now applies to
47 asterisk.conf only. To enable #exec for other config files you must
48 set execincludes=yes in asterisk.conf. Any other option set on the
49 command-line will now override the equivalent setting from asterisk.conf.
52 - The 'ModuleCheck' Action's Version key will no longer show the module
53 version. The value will always be blank.
56 - The 'core show file version' command has been removed. When Asterisk
57 moved to Git, the source control version support was removed. As a
58 result, the CLi command was no longer useful and was removed as well.
61 - The first callid created is now 1 instead of 0. The value 0
62 is now reserved to represent a lack of callid.
65 - The Command action now sends the output from the CLI command as a series
66 of Output headers for each line instead of as a block of text with the
67 --END COMMAND-- delimiter to match the output from other actions.
69 Commands that fail to execute (no such command, invalid syntax etc.) now
70 return an Error response instead of Success.
73 - The 'maximum_number_of_words' configuration option and parameter to the AMD
74 application previously did not match the documented functionality + variable
75 name. In Asterisk 13, a value of '3' would mean that if '3' words were detected,
76 the result would be detection as a 'MACHINE'. As of this version, the value
77 reflects the maximum words that if EXCEEDED (rather than reached), would
78 result in detection as a machine. This means that you should update this
79 value to be one higher than your previos value, if your previous value
80 was working well for you.
82 ===========================================================
83 ===========================================================