This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
Releases: Azure/azure-event-hubs-node
Releases · Azure/azure-event-hubs-node
0.2.10 - EH
- Added support to provide custom user-agent string that will be appended to the default user agent string.
0.2.9 - EH
- Updated examples and content in README.md
0.2.8 - EH
- Fixed issue
- Added error handlers to the $management sender/receiver links.
- Added error handlers to the amqp session of the $management and $cbs sender/receiver links.
- Exported
AadTokenProvider
andSasTokenProvider
from the client.
0.2.7 - EH
- Improved logging statements to the connection context.
- Added timeout to promisifed creation/closing of rhea sender, receiver, session, connection.
- Fixed a bug in the EventData deserialization logic by checking for
!= undefined
check rather than the!
check. - While handling disconnects we retry for 150 times at an interval of 15 seconds as long the error is
retryable
. - Minimum dependency on
"rhea": "^0.3.1"
0.2.6 - EH
- Improved log statements.
- Documented different mechanisms of getting the debug logs in README.
- Minimum dependency on
"rhea": "^0.2.20"
. - Fixed bugs in recovery logic
- Added support to recover from session close for sender and receiver
- Added a new property
isConnecting
that provides information whether a linkEntity is currently in the process of establishing itself. - Using
is_closed()
method of sender, receiver and session in rhea to determine whether the sdk initiated the close. - MessagingError is retryable by default.
- Added support to translate node.js
SystemError
into AmqpError. - Added a new static method
createFromTokenProvider()
on the EventHubClient where customers can provide their own TokenProvider.
0.2.5 - EH
- Improved log statements
- Updated README.md
- Updated dependency rhea to "^0.2.16" instead of github dependency.
0.2.4 - EH
- Added support to handle disconnects and link timeout errors.
- Fixed client examples link in README.
- Updated issue templates
- Improvised the example structure
- Moved the common stuff to
amqp-common
and addedConnection
,Session
,Sender
,Receiver
objects torhea-promise
. - Improved tsconfig.json and tslint.json config files.
- Added
import "mocha"
to all the test files, inorder to get rid of red squiggles in vscode. - Replaced crypto with jssha which is browser compatible
0.1.4 - EPH
- Added an option
autoCheckpoint: false
to not checkpoint the received messages by default.
0.1.3 - EPH
- _storageBlobPrefix is set if provided in the options, #91.
0.2.3 - EH
- Minor doc fixes and sample updates.
- Add a listener for the disconnected event after opening the connection.