2019-11-27 1.1.1
- Fix bug 5757 where
receiveMessages
used inReceiveAndDelete
mode results in data loss. PR 6265. - Updated network status detection to treat DNS timeouts as a
ConnectionLostError
by using the latest version
of the@azure/amqp-common
package. - We do not have retries for errors during receiver set up. User is expected to retry on their own.
There was a misleading retry due to a failed receiver being cached which is now fixed. Related to
bug 5541. - Errors that arise from receivers failing to automatically reconnect after encountering a transient issue now trigger the user-provided
onError
callback passed toreceiver.registerMessageHandler
. Related to bug 2540 - Update jsdocs for the
receiveMessages
method to include a note that the number of messages that can
be received inPeekLock
mode is capped at 2047. PR 5758. - Update jsdocs for user facing apis to include information on possible errors that can be thrown.
PR 6088