зеркало из
1
0
Форкнуть 0

Updating version of ms_rest_azure to 0.9.0

This commit is contained in:
Vishrut Shah 2017-09-07 09:12:40 -07:00
Родитель 17cc411f87
Коммит 447c39bba8
3 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -1,5 +1,5 @@
##2017.09.06 ms_rest_azure version 0.8.3
* Add header `Metadata='true'` for Managed Service Identity authentication to acquire token.[Issue #930](https://github.com/Azure/azure-sdk-for-ruby/issues/930) [PR #931](https://github.com/Azure/azure-sdk-for-ruby/pull/931)
##Unreleased ms_rest_azure version 0.9.0
* [Breaking Change] Managed Service Identity authentication to acquire token does not require `tenant_id`.[Issue #930](https://github.com/Azure/azure-sdk-for-ruby/issues/930) [PR #931](https://github.com/Azure/azure-sdk-for-ruby/pull/931)
##2017.08.28 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)
@ -30,7 +30,7 @@
* Improved AzureOperationError class to expose error_message and error_code properties [#1450](https://github.com/Azure/autorest/pull/1450)
##2016.09.15 ms_rest_azure version 0.5.0
* Updating ms_rest dependecy to version 0.5.0
* Updating ms_rest dependency to version 0.5.0
* Adding known Azure Environments in ruby runtime for easy discovery
* Default Azure active directory url is updated from `https://login.windows.net/` to `https://login.microsoftonline.com/` (Breaking Change)
* Using bundled default ca-cert from ms_rest

Просмотреть файл

@ -37,16 +37,16 @@ To start working on the gem the only additional dev dependecy is required - rspe
Reference it in the gemfile and also add this line to your client's gemspec file:
```ruby
spec.add_runtime_dependency 'ms_rest_azure', '~> 0.8.3'
spec.add_runtime_dependency 'ms_rest_azure', '~> 0.9.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.3`. Below code snippet demonstrates how to use MSITokenProvider with default port `50342`:
MSI support has been enabled in `ms_rest_azure` version `0.9.0`. Below code snippet demonstrates how to use MSITokenProvider with default port `50342`:
```ruby
provider = MsRestAzure::MSITokenProvider.new('{tenant_id}')
provider = MsRestAzure::MSITokenProvider.new()
credentials = MsRest::TokenCredentials.new(provider)
```

Просмотреть файл

@ -3,5 +3,5 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
module MsRestAzure
VERSION = '0.8.3'
VERSION = '0.9.0'
end