Skip to content

Commit

Permalink
November release changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jorge-beauregard committed Nov 13, 2020
1 parent 65b9871 commit 8475159
Showing 1 changed file with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,47 @@
## 1.0.0-beta.3 (Unreleased)
### Added
- Support directly passing connection string to the CommunicationIdentityClientBuilder
- Added support for sync and async long running operations
- beginCreateReservation
- beginPurchaseReservation
- beginReleasePhoneNumber

### Breaking Change
### Breaking Changes
- Removed credential(CommunicationClientCredential credential) and replaced with
accessKey(String accessKey) within CommunicationIdentityClientBuilder
- `PhoneNumberSearch` renamed to `PhoneNumberReservation`
- `SearchStatus` renamed to `ReservationStatus`
- `CreateSearchOptions` reanamed to `CreateReservationOptions`
- `CreateSearchResponse` renamed to `CreateReservationResponse`

#### PhoneNumberReservation
- `searchId` renamed to `reservationId`
- `getSearchId` renamed to `getReservationId`
- `setSearchId` renamed to `setReservationId`

#### PhoneNumberClient
- `getSearchId`renamed to `getReservationId`
- `getSearchByIdWithResponse`renamed to `getReservationByIdWithResponse`
- `createSearch`renamed to `createReservation`
- `createSearchWithResponse`renamed to `createReservationWithResponse`
- `listAllSearches`renamed to `listAllReservations`
- `cancelSearch`renamed to `cancelReservation`
- `cancelSearchWithResponse`renamed to `cancelReservationWithResponse`
- `beginCreateSearch`renamed to `beginCreateReservation`
- `beginPurchaseSearch`renamed to `beginPurchaseReservation`
- `createSearch`renamed to `createReservation`

#### PhoneNumberAsyncClient
- `getSearchId`renamed to `getReservationId`
- `getSearchByIdWithResponse`renamed to `getReservationByIdWithResponse`
- `createSearch`renamed to `createReservation`
- `createSearchWithResponse`renamed to `createReservationWithResponse`
- `listAllSearches`renamed to `listAllReservations`
- `cancelSearch`renamed to `cancelReservation`
- `cancelSearchWithResponse`renamed to `cancelReservationWithResponse`
- `beginCreateSearch`renamed to `beginCreateReservation`
- `beginPurchaseSearch`renamed to `beginPurchaseReservation`
- `createSearch`renamed to `createReservation`

## 1.0.0-beta.2 (2020-10-06)
Added phone number administration. For more information, please see the [README][read_me] and [documentation][documentation].
Expand Down

0 comments on commit 8475159

Please sign in to comment.