From e3df30be18a4870f8f5bae7cc726cb64d5201c51 Mon Sep 17 00:00:00 2001 From: chradek Date: Mon, 9 Sep 2019 10:22:43 -0700 Subject: [PATCH 1/2] [core-arm][core-http] updates changelogs for preview.3 --- sdk/core/core-arm/Changelog.md | 5 +++++ sdk/core/core-http/Changelog.md | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/sdk/core/core-arm/Changelog.md b/sdk/core/core-arm/Changelog.md index 847b4bcbc30c..9325e1670907 100644 --- a/sdk/core/core-arm/Changelog.md +++ b/sdk/core/core-arm/Changelog.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.0-preview.3 - 2019-09-09 + +- Reintroduces `ServiceClientCredentials` type to `credentials` parameter of +`AzureServiceClient` ([PR #4773](https://github.com/Azure/azure-sdk-for-js/pull/4773)). + ## 1.0.0-preview.2 - 2019-08-05 - Removed `ServiceClientCredentials` type from `credentials` parameter of `AzureServiceClient` ([PR #4367](https://github.com/Azure/azure-sdk-for-js/pull/4367)). Credential implementations are now standardized on `@azure/core-auth`'s `TokenCredential` interface and provided by `@azure/identity`. diff --git a/sdk/core/core-http/Changelog.md b/sdk/core/core-http/Changelog.md index 19b99b879668..0c336628874c 100644 --- a/sdk/core/core-http/Changelog.md +++ b/sdk/core/core-http/Changelog.md @@ -1,5 +1,17 @@ # Changelog +## 1.0.0-preview.3 - 2019-09-09 +- Syncs changes from `@azure/ms-rest-js` to `@azure/core-http`. +([PR #4756](https://github.com/Azure/azure-sdk-for-js/pull/4756)). + - Updates HTTP clients to `fetch` and `node-fetch` for the browser and node.js respectively. +- Reintroduces `ServiceClientCredentials` type to `credentials` parameter of `ServiceClient` +([PR #4773](https://github.com/Azure/azure-sdk-for-js/pull/4773)). +- Updates types for better compatibility with TypeScript 3.6.x. +([PR #4928](https://github.com/Azure/azure-sdk-for-js/pull/4928)). +- Adds `TracingPolicy` to support setting `traceparent` and `tracestate` headers +when setting spans in operation as per the [trace context HTTP headers format](https://www.w3.org/TR/trace-context/#trace-context-http-headers-format). +([PR #4712](https://github.com/Azure/azure-sdk-for-js/pull/4712)). + ## 1.0.0-preview.2 - 2019-08-05 - Removed `ServiceClientCredentials` type from `credentials` parameter of `ServiceClient` ([PR #4367](https://github.com/Azure/azure-sdk-for-js/pull/4367)). Credential implementations are now standardized on `@azure/core-auth`'s `TokenCredential` interface and provided by `@azure/identity`. From b25d75c6a07766d3a82c1d099f9ed6a1c0d170dc Mon Sep 17 00:00:00 2001 From: chradek Date: Mon, 9 Sep 2019 10:50:24 -0700 Subject: [PATCH 2/2] adds additional fixes for core-http --- sdk/core/core-http/Changelog.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/core/core-http/Changelog.md b/sdk/core/core-http/Changelog.md index 0c336628874c..668bff5dffb3 100644 --- a/sdk/core/core-http/Changelog.md +++ b/sdk/core/core-http/Changelog.md @@ -11,6 +11,11 @@ - Adds `TracingPolicy` to support setting `traceparent` and `tracestate` headers when setting spans in operation as per the [trace context HTTP headers format](https://www.w3.org/TR/trace-context/#trace-context-http-headers-format). ([PR #4712](https://github.com/Azure/azure-sdk-for-js/pull/4712)). +- Adds `text/plain` as an accepted MIME type for JSON output. +([PR #4975](https://github.com/Azure/azure-sdk-for-js/pull/4975)). +- Exposes `ProxySettings` type. ([PR #5043](https://github.com/Azure/azure-sdk-for-js/pull/5043)). +- Fixes bug where `WebResource.clone` would not copy `proxySettings` or `keepAlive` settings. +([PR #5047](https://github.com/Azure/azure-sdk-for-js/pull/5047)). ## 1.0.0-preview.2 - 2019-08-05