From ed456dac41e738181eacc03cae188f07b8103ec5 Mon Sep 17 00:00:00 2001 From: Richard Park Date: Thu, 3 Jun 2021 14:51:37 -0700 Subject: [PATCH 1/3] Updating changelog for 7.2.0 GA release with AMQP body type encoding. --- sdk/servicebus/service-bus/CHANGELOG.md | 6 +++++- sdk/servicebus/service-bus/package.json | 2 +- sdk/servicebus/service-bus/src/util/constants.ts | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sdk/servicebus/service-bus/CHANGELOG.md b/sdk/servicebus/service-bus/CHANGELOG.md index df0663d964cd..fa372f43d54c 100644 --- a/sdk/servicebus/service-bus/CHANGELOG.md +++ b/sdk/servicebus/service-bus/CHANGELOG.md @@ -1,6 +1,10 @@ # Release History -## 7.2.0-beta.2 (Unreleased) +## 7.2.0 (2021-06-08) + +### 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. ### Bug fixes diff --git a/sdk/servicebus/service-bus/package.json b/sdk/servicebus/service-bus/package.json index 0d958668e33d..a01085743bf4 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" }; /** From 42297d2bef95c05ee20ff7cb1d233edb309aec6d Mon Sep 17 00:00:00 2001 From: richardpark-msft Date: Wed, 9 Jun 2021 10:45:32 -0700 Subject: [PATCH 2/3] Updating changelog with a link to the AMQP spec that describes the body type in more detail. --- sdk/servicebus/service-bus/CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sdk/servicebus/service-bus/CHANGELOG.md b/sdk/servicebus/service-bus/CHANGELOG.md index fa372f43d54c..6c706f815378 100644 --- a/sdk/servicebus/service-bus/CHANGELOG.md +++ b/sdk/servicebus/service-bus/CHANGELOG.md @@ -1,10 +1,12 @@ # Release History -## 7.2.0 (2021-06-08) +## 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. +- 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](http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#section-message-format) ### Bug fixes From 9283da879af4ea53afd1b12004cf73b655d2b3e8 Mon Sep 17 00:00:00 2001 From: richardpark-msft Date: Wed, 9 Jun 2021 11:04:57 -0700 Subject: [PATCH 3/3] updating link to be https --- sdk/servicebus/service-bus/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/servicebus/service-bus/CHANGELOG.md b/sdk/servicebus/service-bus/CHANGELOG.md index 6c706f815378..11f2b1477889 100644 --- a/sdk/servicebus/service-bus/CHANGELOG.md +++ b/sdk/servicebus/service-bus/CHANGELOG.md @@ -6,7 +6,7 @@ - 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](http://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#section-message-format) + 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) ### Bug fixes