=== and the other UPGRADE files for older releases.
===
==============================================================================
+
+------------------------------------------------------------------------------
+--- Functionality changes from Asterisk 13.1.0-cert3 to Asterisk 13.1-cert4 --
+------------------------------------------------------------------------------
+
+AMI
+------------------
+ * Added the Linkedid header to the common channel headers listed for each
+ channel in AMI events.
+
------------------------------------------------------------------------------
---- Functionality changes from Asterisk 13.1.0 to Asterisk 13.1-cert2 --------
+--- Functionality changes from Asterisk 13.1.0-cert1 to Asterisk 13.1-cert2 --
------------------------------------------------------------------------------
+
res_pjsip
------------------
* A new 'endpoint_identifier_order' option has been added that allows one to
<xsl:value-of select="concat(@prefix,'Uniqueid')"/>
</xsl:attribute>
</xsl:element>
+ <xsl:element name="parameter">
+ <xsl:attribute name="name">
+ <xsl:value-of select="concat(@prefix,'Linkedid')"/>
+ </xsl:attribute>
+ <para>Uniqueid of the oldest channel associated with this channel.</para>
+ </xsl:element>
</xsl:template>
<xsl:template match="bridge_snapshot">
"%sContext: %s\r\n"
"%sExten: %s\r\n"
"%sPriority: %d\r\n"
- "%sUniqueid: %s\r\n",
+ "%sUniqueid: %s\r\n"
+ "%sLinkedid: %s\r\n",
prefix, snapshot->name,
prefix, snapshot->state,
prefix, ast_state2str(snapshot->state),
prefix, snapshot->context,
prefix, snapshot->exten,
prefix, snapshot->priority,
- prefix, snapshot->uniqueid);
+ prefix, snapshot->uniqueid,
+ prefix, snapshot->linkedid);
if (!res) {
ast_free(out);