From e7600aebce1830fcd174d6e922613e6f65b97b2c Mon Sep 17 00:00:00 2001 From: Laurent Mazuel Date: Tue, 30 Jul 2019 16:08:30 -0700 Subject: [PATCH 1/2] azure-core history --- sdk/core/azure-core/HISTORY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/sdk/core/azure-core/HISTORY.md b/sdk/core/azure-core/HISTORY.md index b54129f9c2e0..3ac68be692f5 100644 --- a/sdk/core/azure-core/HISTORY.md +++ b/sdk/core/azure-core/HISTORY.md @@ -3,6 +3,27 @@ ------------------- +2019-08-XX Version 1.0.0b2 + +## Breaking changes + +- Transport classes don't take `config` parameter anymore (use kwargs instead) +- `azure.core.paging` has been completely refactored +- HttpResponse.content_type attribute is now a string (was a list) #6490 +- For `StreamDownloadGenerator` subclasses, `response` is now an `HttpResponse`, and not a transport response like `aiohttp.ClientResponse` or `requests.Response`. The transport response is available in `internal_response` attribute #6490 + +## Bug fixes + +- aiohttp is not required to import async pipelines classes #6496 +- `AsyncioRequestsTransport.sleep` is now a coroutine as expected #6490 +- `RequestsTransport` is not tight to `ProxyPolicy` implementation details anymore #6372 +- `AiohttpTransport` does not raise on unexpected kwargs #6355 + +## Features + +- New paging base classes that support `continuation_token` and `by_page()` #6420 +- Proxy support for `AiohttpTransport` #6372 + 2019-06-26 Version 1.0.0b1 - Preview 1 release From 0f37a9bf16791492f854a63eb78e29fa1c97385d Mon Sep 17 00:00:00 2001 From: Laurent Mazuel Date: Tue, 30 Jul 2019 20:22:05 -0700 Subject: [PATCH 2/2] Update HISTORY.md --- sdk/core/azure-core/HISTORY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/core/azure-core/HISTORY.md b/sdk/core/azure-core/HISTORY.md index 3ac68be692f5..2123f6308b80 100644 --- a/sdk/core/azure-core/HISTORY.md +++ b/sdk/core/azure-core/HISTORY.md @@ -7,8 +7,8 @@ ## Breaking changes -- Transport classes don't take `config` parameter anymore (use kwargs instead) -- `azure.core.paging` has been completely refactored +- Transport classes don't take `config` parameter anymore (use kwargs instead) #6372 +- `azure.core.paging` has been completely refactored #6420 - HttpResponse.content_type attribute is now a string (was a list) #6490 - For `StreamDownloadGenerator` subclasses, `response` is now an `HttpResponse`, and not a transport response like `aiohttp.ClientResponse` or `requests.Response`. The transport response is available in `internal_response` attribute #6490