1.0.0 (2024-01-18)
Features Added
WebPubSubClient
implementsCloseable
interface. User can use the "try-with-resources" statement on the client.
Breaking Changes
- Renamed
WebPubSubDataType
toWebPubSubDataFormat
. - Removed
WebPubSubProtocol
class and its subclasses. - Parameter type changed from
WebPubSubProtocol
toWebPubSubProtocolType
onWebPubSubClientBuilder
protocol
method.
Please call.protocol(WebPubSubProtocolType.JSON_PROTOCOL)
or.protocol(WebPubSubProtocolType.JSON_RELIABLE_PROTOCOL)
. - Parameter type change from
Mono<String>
toSupplier<String>
on constructor ofWebPubSubClientCredential
.
Please call e.g.new WebPubSubClientCredential(() -> serviceClient.getClientAccessToken(...).getUrl())
. - Renamed
setNoEcho
method inSendToGroupOptions
tosetEchoDisabled
. - Renamed
isNoEcho
method inSendToGroupOptions
toisEchoDisabled
.
Other Changes
- Upgraded
azure-core
from1.38.0
to version1.45.1
. - Upgraded
netty-codec-http
from4.1.89.Final
to version4.1.101.Final
.