Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Preparing to release ms_rest_azure version 0.8.2
  • Loading branch information
vishrutshah committed Aug 25, 2017
commit e7408fce4265870fd0f51a3a22b086e607296b61
4 changes: 2 additions & 2 deletions runtime/ms_rest_azure/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##Unreleased ms_rest_azure version 0.8.x
* Enable Managed Service Identity authentication features into ms-rest-azure runtime for azure_mgmt_* sdks.[Issue #884](https://github.com/Azure/azure-sdk-for-ruby/issues/884) [PR #889](https://github.com/Azure/azure-sdk-for-ruby/pull/889)
##2017.08.25 ms_rest_azure version 0.8.2
* Enable Managed Service Identity authentication features into ms_rest_azure runtime for azure_mgmt_* sdks.[Issue #884](https://github.com/Azure/azure-sdk-for-ruby/issues/884) [PR #889](https://github.com/Azure/azure-sdk-for-ruby/pull/889)

##2017.07.10 ms_rest_azure version 0.8.1
* [Bug Fix] Fixed the issue with the polling status object to handle the response code and provisioning status correctly.[Issue #817](https://github.com/Azure/azure-sdk-for-ruby/issues/817) [PR #828](https://github.com/Azure/azure-sdk-for-ruby/pull/828)
Expand Down
9 changes: 9 additions & 0 deletions runtime/ms_rest_azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@ spec.add_runtime_dependency 'ms_rest_azure', '~> 0.8.0'
```
Don't forget to correct the version.

# Utilizing MSI(Managed Service Identity) Token Provider

MSI support has been enabled in `ms_rest_azure` version `0.8.2`. Below code snippet demonstrates how to use MSITokenProvider with default port `50342`:

```ruby
provider = MsRestAzure::MSITokenProvider.new('{tenant_id}')
credentials = MsRest::TokenCredentials.new(provider)
```

# Utilizing Telemetry Extension in your SDK

We encourage the customer of ms_rest_azure library to provide information about their product sent via telemetry extension point as below:
Expand Down
2 changes: 1 addition & 1 deletion runtime/ms_rest_azure/lib/ms_rest_azure/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Licensed under the MIT License. See License.txt in the project root for license information.

module MsRestAzure
VERSION = '0.8.1'
VERSION = '0.8.2'
end