File size: 1,715 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# Release History
## 1.1.0 (2024-04-15)
- General Availability version of PSTN dial-out capability feature.
### Features Added
- Added support for a new communication identifier `MicrosoftTeamsAppIdentifier`.
### Other Changes
- The `MicrosoftBotIdentifier` and `MicrosoftBotProperties` have been deprecated.
## 1.1.0b1 (2023-10-31)
### Features Added
- Added support for PSTN dial-out capability
## 1.0.0 (2023-06-12)
- Stable release of `azure-communication-rooms`.
## 1.0.0b3 (2023-05-17)
### Features Added
- Added the ability specify the API version by an optional `api_version` keyword parameter.
- New function `list_rooms` added in `RoomsClient` to list all valid rooms.
- Added pagination support for `list_participants`.
### Breaking Changes
- Changed: `update_room` no longer accepts participant list as input.
- Changed: Replaced `add_participants` and `update_participants` with `add_or_update_participants`.
- Changed: Renamed `RoleType` to `ParticipantRole`.
- Changed: Renamed `created_on` to `created_at` in `CommunicationRoom`.
- Changed: Renamed `get_participants` to `list_participants` in `RoomsClient`.
- Removed: Removed `participants` from `CommunicationRoom` class.
- Removed: Removed `room_join_policy`, all rooms are invite-only by default.
## 1.0.0b2 (2022-08-31)
### Bugs Fixed
- Invalid datestrings for `valid_from` and `valid_until` raises exception
### Other Changes
Python 3.6 is no longer supported. Please use Python version 3.7 or later. For more details, please read our page on [Azure SDK for Python version support policy](https://github.com/Azure/azure-sdk-for-python/wiki/Azure-SDKs-Python-version-support-policy).
## 1.0.0b1 (2022-08-10)
- Initial version
|