UPGRADE-10.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. ===========================================================
  2. ===
  3. === Information for upgrading between Asterisk versions
  4. ===
  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.
  14. ===
  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. ===
  20. ===========================================================
  21. From 10.4 to 10.5:
  22. * The complex processor detection and optimization has been removed from
  23. the makefile in favor of using native optimization suppport when available.
  24. BUILD_NATIVE can be disabled via menuselect under "Compiler Flags".
  25. From 10.2 to 10.3:
  26. * If no transport is specified in sip.conf, transport will default to UDP.
  27. Also, if multiple transport= lines are used, only the last will be used.
  28. From 1.8 to 10:
  29. cel_pgsql:
  30. - This module now expects an 'extra' column in the database for data added
  31. using the CELGenUserEvent() application.
  32. ConfBridge
  33. - ConfBridge's dialplan arguments have changed and are not
  34. backwards compatible.
  35. File Interpreters
  36. - The format interpreter formats/format_sln16.c for the file extension
  37. '.sln16' has been removed. The '.sln16' file interpreter now exists
  38. in the formats/format_sln.c module along with new support for sln12,
  39. sln24, sln32, sln44, sln48, sln96, and sln192 file extensions.
  40. HTTP:
  41. - A bindaddr must be specified in order for the HTTP server
  42. to run. Previous versions would default to 0.0.0.0 if no
  43. bindaddr was specified.
  44. Gtalk:
  45. - The default value for 'context' and 'parkinglots' in gtalk.conf has
  46. been changed to 'default', previously they were empty.
  47. chan_dahdi:
  48. - The mohinterpret=passthrough setting is deprecated in favor of
  49. moh_signaling=notify.
  50. pbx_lua:
  51. - Execution no longer continues after applications that do dialplan jumps
  52. (such as app.goto). Now when an application such as app.goto() is called,
  53. control is returned back to the pbx engine and the current extension
  54. function stops executing.
  55. - the autoservice now defaults to being on by default
  56. - autoservice_start() and autoservice_start() no longer return a value.
  57. Queue:
  58. - Mark QUEUE_MEMBER_PENALTY Deprecated it never worked for realtime members
  59. - QUEUE_MEMBER is now R/W supporting setting paused, ignorebusy and penalty.
  60. Asterisk Database:
  61. - The internal Asterisk database has been switched from Berkeley DB 1.86 to
  62. SQLite 3. An existing Berkeley astdb file can be converted with the astdb2sqlite3
  63. utility in the UTILS section of menuselect. If an existing astdb is found and no
  64. astdb.sqlite3 exists, astdb2sqlite3 will be compiled automatically. Asterisk will
  65. convert an existing astdb to the SQLite3 version automatically at runtime.
  66. Module Support Level
  67. - All modules in the addons, apps, bridge, cdr, cel, channels, codecs,
  68. formats, funcs, pbx, and res have been updated to include MODULEINFO data
  69. that includes <support_level> tags with a value of core, extended, or deprecated.
  70. More information is available on the Asterisk wiki at
  71. https://wiki.asterisk.org/wiki/display/AST/Asterisk+Module+Support+States
  72. Deprecated modules are now marked to not build by default and must be explicitly
  73. enabled in menuselect.
  74. ===========================================================
  75. ===========================================================