Skip to content

Commit 0bb8be2

Browse files
committed
Update to version 2.6.2 with minor bugfix for experimental message fields.
1 parent 94d676b commit 0bb8be2

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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.6.2](https://github.com/ably/ably-js/tree/2.6.2) (2025-01-14)
6+
7+
- Minor bugfix for experimental message fields.
8+
59
## [2.6.1](https://github.com/ably/ably-js/tree/2.6.1) (2025-01-13)
610

711
- Removed an incorrect channel mode `ATTACH_RESUME` from the `ChannelModes` enum.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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.6.1",
4+
"version": "2.6.2",
55
"license": "Apache-2.0",
66
"bugs": {
77
"url": "https://github.com/ably/ably-js/issues",

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

Lines changed: 1 addition & 1 deletion
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.6.1';
15+
export const version = '2.6.2';
1616

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

0 commit comments

Comments
 (0)