14.0.0
14.0.0 (2022-08-16)
Dependencies
- solace-message-client: update @solace-community/angular-solace-message-client to Angular 14 (6c48828), closes #49
Features
- tryme: use Solace sponsored broker as default broker (f4879be)
Chore
- solace-message-client: remove deprecated API
ObserveOptions#requestTimeout
(813cf2d) - solace-message-client: remove deprecated API
SolaceMessageClient#enqueue
(7f9125c)
BREAKING CHANGES
-
solace-message-client: Updating
@solace-community/angular-solace-message-client
to Angular 14 introduced a breaking change.To migrate:
- update your application to Angular 14; for detailed migration instructions, refer to https://v14.angular.io/guide/update-to-latest-version;
- update @scion/toolkit to version 1.0.0 using the following command:
npm install @scion/toolkit@latest --save
. Note that the toolkit was previously released as pre-releases of version13.0.0
or older; for detailed migration instructions, refer to https://github.com/SchweizerischeBundesbahnen/scion-toolkit/blob/master/CHANGELOG_TOOLKIT.md
-
solace-message-client: Removing the deprecated API
ObserveOptions#requestTimeout
introduced a breaking change.To migrate, use
ObserveOptions#subscribeTimeout
instead. -
solace-message-client: Removing the deprecated API
SolaceMessageClient#enqueue
introduced a breaking change.To send a message to a queue, use
SolaceMessageClient#publish
instead and pass the queue destination. The queue destination can be constructed usingSolclientFactory
as follows:SolclientFactory.createDurableQueueDestination('queue')
.