Skip to content

Commit 5150d7b

Browse files
authored
Increment version for servicebus releases (Azure#14642)
Increment package version after release of azure-service-bus
1 parent 469bfb4 commit 5150d7b

File tree

4 files changed

+64
-6
lines changed

4 files changed

+64
-6
lines changed

common/config/rush/pnpm-lock.yaml

Lines changed: 59 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/servicebus/service-bus/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Release History
22

3+
## 7.1.0-beta.1 (Unreleased)
4+
35
## 7.0.4 (2021-03-31)
46

57
### Bug fixes
68

79
- `ServiceBusSessionReceiver.receiveMessages` and `ServiceBusSessionReceiver.subscribe` methods are updated to handle errors on the AMQP connection like a network disconnect in [#13956](https://github.com/Azure/azure-sdk-for-js/pull/13956). Previously, these methods only handled errors on the AMQP link or session.
10+
811
- This previously resulted in the promise returned by the `receiveMessages` method never getting fulfilled and the `subscribe` method not calling the user provided error handler.
912
- The `receiveMessages` method will now throw `SessionLockLostError` when used in `peekLock` mode and return messages collected so far when used in `receiveAndDelete` mode to avoid data loss if errors on the AMQP connection are encountered.
1013
- When using the `subscribe`, the user provided `processError` callback will now be called with `SessionLockLostError` if errors on the AMQP connection are encountered.

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.0.4",
5+
"version": "7.1.0-beta.1",
66
"license": "MIT",
77
"description": "Azure Service Bus SDK for JavaScript",
88
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/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.0.4"
9+
version: "7.1.0-beta.1"
1010
};
1111

1212
/**

0 commit comments

Comments
 (0)