From 9cdaf8e6743d6d331921ba5ce0cf2494d2a7b252 Mon Sep 17 00:00:00 2001 From: Richard Park <51494936+richardpark-msft@users.noreply.github.com> Date: Wed, 9 Jun 2021 11:19:26 -0700 Subject: [PATCH] [service-bus] Updating changelog with proper date and features for 7.2.0 GA release (#15548) Updating changelog for 7.2.0 GA release with AMQP body type encoding. --- sdk/servicebus/service-bus/CHANGELOG.md | 8 +++++++- sdk/servicebus/service-bus/package.json | 2 +- sdk/servicebus/service-bus/src/util/constants.ts | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sdk/servicebus/service-bus/CHANGELOG.md b/sdk/servicebus/service-bus/CHANGELOG.md index caa95b003ee9..04e7a6b27582 100644 --- a/sdk/servicebus/service-bus/CHANGELOG.md +++ b/sdk/servicebus/service-bus/CHANGELOG.md @@ -1,6 +1,12 @@ # Release History -## 7.2.0-beta.2 (Unreleased) +## 7.2.0 (2021-06-10) + +### New Features + +- Enable encoding the body of a message to the 'value' or 'sequence' sections (via AmqpAnnotatedMessage.bodyType). Using this encoding is not required but does allow you to take advantage of native AMQP serialization for supported primitives or sequences. + + More information about the AMQP message body type can be found in the AMQP specification: [link](https://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#section-message-format) - Improves cancellation support when sending messages or initializing a connection to the service. Resolves [#15311](https://github.com/Azure/azure-sdk-for-js/issues/15311) and [#13504](https://github.com/Azure/azure-sdk-for-js/issues/13504). diff --git a/sdk/servicebus/service-bus/package.json b/sdk/servicebus/service-bus/package.json index b62aa9e5303b..b09c2a06b34d 100644 --- a/sdk/servicebus/service-bus/package.json +++ b/sdk/servicebus/service-bus/package.json @@ -2,7 +2,7 @@ "name": "@azure/service-bus", "sdk-type": "client", "author": "Microsoft Corporation", - "version": "7.2.0-beta.2", + "version": "7.2.0", "license": "MIT", "description": "Azure Service Bus SDK for JavaScript", "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/servicebus/service-bus/", diff --git a/sdk/servicebus/service-bus/src/util/constants.ts b/sdk/servicebus/service-bus/src/util/constants.ts index 9ce16c63b9e2..3a5b553a2446 100644 --- a/sdk/servicebus/service-bus/src/util/constants.ts +++ b/sdk/servicebus/service-bus/src/util/constants.ts @@ -6,7 +6,7 @@ */ export const packageJsonInfo = { name: "@azure/service-bus", - version: "7.2.0-beta.2" + version: "7.2.0" }; /**