Skip to content

Commit 6be3947

Browse files
authored
[ServiceBus] Prepare for February 2022 release (Azure#20239)
* update version number * update CHANGLOG
1 parent c9dcb43 commit 6be3947

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

sdk/servicebus/service-bus/CHANGELOG.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
# Release History
22

3-
## 7.5.0-beta.1 (Unreleased)
3+
## 7.5.0 (2022-02-08)
44

55
### Features Added
66

77
- Add `state` property to `ServiceBusReceivedMessage`. Its value is one of `"active"`, `"deferred"`, or `"scheduled"`. [PR #18938](https://github.com/Azure/azure-sdk-for-js/pull/18938)
88
- Add optional boolean `skipParsingBodyAsJson` property to `ServiceBusReceiverOptions` and `ServiceBusSessionReceiverOptions`. By default, the client attempts to parse message body as JSON object, and this new parameter controls whether the client should skip performing this parsing. [PR #18692](https://github.com/Azure/azure-sdk-for-js/pull/18692)
99

10-
### Breaking Changes
11-
1210
### Bugs Fixed
1311

1412
- The `processError` callback to `subscribe()` was previously called only for errors on setting up the receiver, errors on message settlement or message lock renewal and not for errors on AMQP link or session. This is now fixed. [PR #19189](https://github.com/Azure/azure-sdk-for-js/pull/19189)
1513

16-
### Other Changes
17-
1814
## 7.4.0 (2021-11-08)
1915

2016
### Features Added

sdk/servicebus/service-bus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@azure/service-bus",
33
"sdk-type": "client",
44
"author": "Microsoft Corporation",
5-
"version": "7.5.0-beta.1",
5+
"version": "7.5.0",
66
"license": "MIT",
77
"description": "Azure Service Bus SDK for JavaScript",
88
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/servicebus/service-bus/",

sdk/servicebus/service-bus/src/util/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
export const packageJsonInfo = {
88
name: "@azure/service-bus",
9-
version: "7.5.0-beta.1",
9+
version: "7.5.0",
1010
};
1111

1212
/**

0 commit comments

Comments
 (0)