Skip to content

Commit

Permalink
updating alpha version (#40818)
Browse files Browse the repository at this point in the history
* updating alpha version

* updating the change log with ga release change

* fixing the lint errors

* udpating the sample version

* updating the api version number

* Adding recording kind to the recording state which is missed in the ga3 checkin

* Small Change to isPauseOnStart (#40977)

* init commit

* added recordingKind

* fixed typo

* added recordingKind

* changed tests for recordingKind

---------

Co-authored-by: amariwest-msft <[email protected]>
  • Loading branch information
v-vdharmaraj and amariwest-msft authored Jul 17, 2024
1 parent 1f74ad1 commit 369b1df
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ com.azure:azure-aot-graalvm-support-netty;1.0.0-beta.3;1.0.0-beta.4
com.azure:azure-aot-graalvm-samples;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-aot-graalvm-perf;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-code-customization-parent;1.0.0-beta.1;1.0.0-beta.1
com.azure:azure-communication-callautomation;1.2.2;1.2.0-beta.1
com.azure:azure-communication-callautomation;1.2.2;1.3.0-beta.1
com.azure:azure-communication-callingserver;1.0.0-beta.4;1.0.0-beta.5
com.azure:azure-communication-chat;1.5.2;1.6.0-beta.1
com.azure:azure-communication-common;1.3.4;1.4.0-beta.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Release History

## 1.2.0-beta.1 (Unreleased)

- Introduced `TeamsRecordingStateChanged` and `TeamsComplianceRecordingStateChanged` events.
## 1.3.0-beta.1 (Unreleased)

### Features Added

Expand Down Expand Up @@ -32,7 +30,6 @@
- Upgraded `azure-communication-common` from `1.3.2` to version `1.3.3`.
- Upgraded `azure-core` from `1.48.0` to version `1.49.0`.


## 1.2.0 (2024-05-01)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,15 @@ This package contains a Java SDK for Azure Communication Call Automation Service
### Include the package

[//]: # ({x-version-update-start;com.azure:azure-communication-callautomation;current})

```xml
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-communication-callautomation</artifactId>
<version>1.1.0</version>
</dependency>
```

[//]: # ({x-version-update-end})

## Key concepts
Expand All @@ -42,8 +44,10 @@ This is the restart of Call Automation Service. It is renamed to Call Automation
## Examples

### Handle Mid-Connection events with CallAutomation's EventProcessor

To easily handle mid-connection events, Call Automation's SDK provides easier way to handle these events.
Take a look at `CallAutomationEventProcessor`. This will ensure correlation between call and events more easily.

```Java
@RestController
public class ActionController {
Expand All @@ -62,6 +66,7 @@ public class ActionController {
}
}
```

`processEvents` is required for EventProcessor to work.
After event is being consumed by EventProcessor, you can start using its feature.

Expand All @@ -88,6 +93,7 @@ public class commandClass {
}
}
```

If timeout was not set when calling "waitForEventProcessorAsync", the default timeout is 4 minutes.

## Troubleshooting
Expand Down Expand Up @@ -135,4 +141,4 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
[build4]: https://learn.microsoft.com/azure/communication-services/quickstarts/voice-video-calling/recognize-action?pivots=programming-language-java
[recording1]: https://learn.microsoft.com/azure/communication-services/concepts/voice-video-calling/call-recording
[recording2]: https://learn.microsoft.com/azure/communication-services/quickstarts/voice-video-calling/get-started-call-recording?pivots=programming-language-java
[cognitive_integration]: https://learn.microsoft.com/azure/communication-services/concepts/call-automation/azure-communication-services-azure-cognitive-services-integration
[cognitive_integration]: https://learn.microsoft.com/azure/communication-services/concepts/call-automation/azure-communication-services-azure-cognitive-services-integration
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<groupId>com.azure</groupId>
<artifactId>azure-communication-callautomation</artifactId>
<packaging>jar</packaging>
<version>1.2.0-beta.1</version> <!-- {x-version-update;com.azure:azure-communication-callautomation;current} -->
<version>1.3.0-beta.1</version> <!-- {x-version-update;com.azure:azure-communication-callautomation;current} -->

<name>Microsoft Azure client library for Call Automation service</name>
<description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ public enum CallAutomationServiceVersion implements ServiceVersion {
*/
V2023_10_15("2023-10-15"),

/**
* Service version {@code 2024-04-15}.
*/
V2024_04_15("2024-04-15"),

/**
* Service version {@code 2023-10-03-preview}.
*/
Expand Down

0 comments on commit 369b1df

Please sign in to comment.