=========================================================== === Information for upgrading between Asterisk 1.6 versions === === === UPGRADE-1.2.txt -- Upgrade info for 1.0 to 1.2 === UPGRADE-1.4.txt -- Upgrade info for 1.2 to 1.4 === UPGRADE-1.6.txt -- Upgrade info for 1.4 to 1.6 =========================================================== From 1.6.0.1 to 1.6.0.2 or later, or 1.6.1 or later: * The ast_agi_register_multiple() and ast_agi_unregister_multiple() API calls were added in 1.6.0, so that modules that provide multiple AGI commands could register/unregister them all with a single step. However, these API calls were not implemented properly, and did not allow the caller to know whether registration or unregistration succeeded or failed. They have been redefined to now return success or failure, but this means any code using these functions will need be recompiled after upgrading to a version of Asterisk containing these changes. In addition, the source code using these functions should be reviewed to ensure it can properly react to failure of registration or unregistration of its API commands. * The ast_agi_fdprintf() API call has been renamed to ast_agi_send() to better match what it really does, and the argument order has been changed to be consistent with other API calls that perform similar operations.