File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed
sdk/communication/Azure.Communication.CallAutomation Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11# Release History
22
3- ## 1.3.0-beta.2 (Unreleased)
3+ ## 1.3.0 (Unreleased)
44
55### Features Added
66
99### Bugs Fixed
1010
1111### Other Changes
12+ - Added CreateCallFailed event to signify when create call API fails to establish a call
13+ - Added AnswerFailed event to signify when answer call API fails to answer a call
1214
1315## 1.3.0-beta.1 (2024-08-02)
1416
1517### Features Added
1618
1719- Support multiple play sources for Play and Recognize
1820- Support for PlayStarted event in Play/Recognize
19- - Support for the real time transcription
20- - Monetization for real-time transcription and audio streaming
2121- Hold and Unhold the participant
2222- Support to manage the rooms/servercall/group call using connect API
23- - Support for the audio streaming
2423- Expose original PSTN number target from incoming call event in call connection properties
2524- Support for VoIP to PSTN transfer scenario
2625
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public class CallAutomationClientOptions : ClientOptions
1616 /// <summary>
1717 /// The latest version of the CallAutomation service.
1818 /// </summary>
19- internal const ServiceVersion LatestVersion = ServiceVersion . V2024_06_15_Preview ;
19+ internal const ServiceVersion LatestVersion = ServiceVersion . V2024_09_15 ;
2020
2121 internal string ApiVersion { get ; }
2222
@@ -36,6 +36,7 @@ public CallAutomationClientOptions(ServiceVersion version = LatestVersion)
3636 ServiceVersion . V2023_10_15 => "2023-10-15" ,
3737 ServiceVersion . V2024_04_15 => "2024-04-15" ,
3838 ServiceVersion . V2024_06_15_Preview => "2024-06-15-preview" ,
39+ ServiceVersion . V2024_09_15 => "2024-09-15" ,
3940 _ => throw new ArgumentOutOfRangeException ( nameof ( version ) ) ,
4041 } ;
4142 }
@@ -64,7 +65,12 @@ public enum ServiceVersion
6465 /// <summary>
6566 /// Latest BETA4 (1.3.0-beta) preview of the CallAutomation service.
6667 /// </summary>
67- V2024_06_15_Preview = 4
68+ V2024_06_15_Preview = 4 ,
69+
70+ /// <summary>
71+ /// Latest GA4 (1.3.0) of the CallAutomation service.
72+ /// </summary>
73+ V2024_09_15 = 5
6874#pragma warning restore CA1707 // Identifiers should not contain underscores
6975 }
7076 }
You can’t perform that action at this time.
0 commit comments