5.0.1 (2023-09-11)
- hub connection: convert
openConnection
retryWhen
(deprecated) toretry
5.0.0 (2023-09-08)
- hub connection: expose
HubConnection.connectionId
- deps: export
DesiredConnectionStatus
- hub connection: concurrent
connect()
remain in invalid state causing connecting/disconnecting
- deps: changed
@microsoft/signalr: ^7.0.0
aspeerDependency
- build: output as
esm
andcjs
4.1.0 (2022-11-24)
- deps: update
@microsoft/signalr: ^7.0.0
4.0.0 (2022-11-24)
- deps: update
@microsoft/signalr: ^6.0.11
- angular: KNOWN ISSUE: usage directly with angular when listening to changes seems to require zone now (usage with state works fine, and its suggested)
this.connection.on<Hero>("HeroChanged").pipe(
// ... change ui
// tap(() => this.cdr.markForCheck()), // used to work
tap(() => this.ngZone.run(() => this.cdr.markForCheck())), // with @microsoft/signalr 6.x is not working without zone
).subscribe();
3.1.0 (2022-11-22)
- hub connection: ability to configure microsoft
HubConnection
directly viaconfigureSignalRHubConnection
- hub connection: correctly close the websocket connection when
disconnect
is called right afterconnect
- hub connection:
connectionState$
connecting
will also be set when connecting not only when reconnecting
3.0.0 (2021-04-30)
- signalr: update from
@microsoft/signalr v3.0.0
to@microsoft/signalr v5.0.5
- deps: add dependency on
tslib: ^2.1.0
- lint: fix all lint errors
- all: remove rxjs deprecations
- deps: update all dev dependencies
- ci: update node version
- lint: migrate from tslint to eslint
2.0.0 (2019-10-22)
- deps: update from
@aspnet/signalr 1.1.4
to@microsoft/signalr 3.0.0
(new package)
1.1.2 (2019-10-22)
- build: fix rel build to be correctly as
rel
1.1.1 (2019-06-11)
No new fixes/features in this release
- deps: update dev dependencies
- ci: update node version
1.1.0 (2019-03-06)
- hub connection: connect now will throw error after being exhausted
- hub connection: add
dispose
which will complete all subscriptions - hub connection: when retry limit reached now throws error
- hub connection: when connecting and fails, during retring if
disconnect
is triggered was being ignored and will keep connecting
1.0.1 (2019-02-05)
- build: revert build output - no features were added
1.0.0 (2019-01-24)
- build: change build output - no features were added
- deps: Update ASPNET SignalR version from
~1.0.0
to~1.1.0
0.8.1 (2018-10-26)
- build: update CI and build tasks
- all: cleanup and update changes breaking changes
- deps: update all dependencies
0.8.0 (2018-06-08)
- hub connection: rework
data
now requires to pass a function to refresh data upon every connect. (f1566d9)
- hub connection:
connect
method now acceptsfunction
which returnsDictionary<string>
insteadDictionary<string>
- hub connection:
setData
method now acceptsfunction
which returnsDictionary<string>
insteadDictionary<string>
- hub connection:
clearData
method has been removed.
0.7.1 (2018-06-05)
- hub connection: expose signalr connection protocol (63c2993)
0.7.0 (2018-05-31)
- packages: upgrade signalr from
1.0.0-rc1-update1
to1.0.0
(de1a927)
0.6.0 (2018-05-23)
- packages: upgrade rxjs from
5.5.0
to6.2.0
(61db6fc)
0.5.0 (2018-05-11)
- signalr: upgrade from
^1.0.0-alpha2-final
to1.0.0-rc1-update1
(2838c0b)
0.4.3 (2018-01-03)
- references: switched
rxjs
reference fromdependencies
topeerDependencies
(ccaa7cf)
0.4.2 (2017-12-16)
- hub connection: disconnects only when the connection status is set to
Connected
(84cde61)
- hub connection:
connect
has an optional parameter tosetData
before it connects (99a6b8e) - hub connection:
clearData
has an optional parameter remove by keys or it will remove all (99a6b8e)
0.4.1 (2017-12-10)
- hub connection:: now
on
andstream
share same process to activate stream with retries
0.4.0 (2017-12-08)
- hub connection: rework connection status + spit into two states. (37aece7)
- hub connection: rework internal flow
- hub connection: ConnectionStatus
ready
has been renamed toconnecting
- hub connection: fix
stream
dipose
0.3.8 (2017-12-08)
- packages: cleaned up dependencies
0.3.7 (2017-12-08)
- reconnection strategy: fix calculation in
randomBackOffStrategyDelay
(3d58a12)
0.3.6 (2017-12-07)
- hub connection: auto re-subscriptions after getting disconnected and re-connected (94102ae)
0.3.5 (2017-12-06)
- package: rxjs reference now uses
caret
insteadtilde
(0b03f63)
0.3.4 (2017-12-05)
- hub connection: reconnection now triggers after server fails (b8e369c)
0.3.3 (2017-12-05)
- reconnection strategy: add
randomBackOffStrategy
(3bd046c)
0.3.2 (2017-12-04)
- hub connection: implemented reconnection strategies (12cd84d)
0.3.1 (2017-12-02)
- HubConnectionFactory: implemented
connectAll
(3a1d7f1)
- readme: update features, usages, angular adapter.
- api: add api documentation.
- contribution: add development guidelines.
0.3.0 (2017-12-02)
- hub connection: allow to
send
orclear
extra data with connection (6c5fea5)
- hub connection: fix
connect
&disconnect
to validate connect state accordingly.
0.2.0 (2017-11-26)
- hub connection: fix import namespace (ce72b66)
- hub connection: implemented
HubConnection
basic features (1e49510) - hub connection factory: implemented
HubConnectionFactory
basic features (ad7c7b7)
initial release