Table of Contents

Upgrade Kamailio from v5.3.x to v5.4.0

The page contains the details about the changes that were made to old components during the development of v5.4.0 compared with what existed in v5.3.x. It does not include the brand new modules, focusing on how to upgrade database and configuration file from v5.3.x to run with Kamailio devel.

Previous Stable Release

If you look for the guidelines to upgrade to previous stable release, see:

Remarks

Following tokens are used to mark the changes:

Modules

Upgraded Modules

corex

sipcapture

Removed Modules

Renamed Modules

Internal Libraries

Core

Parameters

Misc

Database

MySQL Database Structure

Run following SQL statements in MySQL client to upgrade database structure from v5.3 to v5.4:

-- version table - added id column to facilitate records management with external tools
-- * the column is not used by Kamailio, thus is optional to be create
 
ALTER TABLE `version` ADD COLUMN `id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, ADD PRIMARY KEY (`id`);