1.8.0 (2022-04-01)
Features Added
- Added
followRedirects
property on theOkHttpClientBuilder
.
Breaking Changes
-
Okhttp-backed
HttpClient
client will no longer follow redirects automatically. (#27960).
To get the older behavior please create an instance ofHttpClient
as followsHttpClient client = new OkHttpAsyncHttpClientBuilder() .followRedirects(true) .build();
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.26.0
to1.27.0
.