Skip to content

Commit 0bd7aa5

Browse files
authored
Merge pull request #1885 from ably/release/2.4.1
Release 2.4.1
2 parents 5bfb32f + b3af19a commit 0bd7aa5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This contains only the most important and/or user-facing changes; for a full changelog, see the commit history.
44

5+
## [2.4.1](https://github.com/ably/ably-js/tree/2.4.1) (2024-10-04)
6+
7+
- Fix `usePresence` hook wasn't leaving presence if component unmounted during channel attaching state [\#1884](https://github.com/ably/ably-js/pull/1884)
8+
59
## [2.4.0](https://github.com/ably/ably-js/tree/2.4.0) (2024-09-11)
610

711
- Add `wsConnectivityCheckUrl` client option [\#1862](https://github.com/ably/ably-js/pull/1862)

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ably",
33
"description": "Realtime client library for Ably, the realtime messaging service",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"license": "Apache-2.0",
66
"bugs": {
77
"url": "https://github.com/ably/ably-js/issues",

src/platform/react-hooks/src/AblyReactHooks.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export type ChannelNameAndOptions = {
1212
export type ChannelNameAndAblyId = Pick<ChannelNameAndOptions, 'channelName' | 'ablyId'>;
1313
export type ChannelParameters = string | ChannelNameAndOptions;
1414

15-
export const version = '2.4.0';
15+
export const version = '2.4.1';
1616

1717
export function channelOptionsWithAgent(options?: Ably.ChannelOptions) {
1818
return {

0 commit comments

Comments
 (0)