Skip to content

Commit 4ea97b5

Browse files
committed
Update changelog and package version for 2.21.0 release
1 parent daac21c commit 4ea97b5

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [2.21.0](https://github.com/ably/ably-js/tree/2.21.0) (2026-03-19)
6+
7+
### New features
8+
9+
- Add LiveObjects REST client: `channel.object` is now available on REST channel instances, exposing `get()` to read object state, `publish()` to send object operations, and `generateObjectId()` to create object IDs on the client side for atomic batch operations with cross-references between newly created objects [#2109](https://github.com/ably/ably-js/pull/2109)
10+
511
## [2.20.0](https://github.com/ably/ably-js/tree/2.20.0) (2026-03-13)
612

713
With this release, the ably-js LiveObjects API is no longer in Public Preview and is now generally available.

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.20.0",
4+
"version": "2.21.0",
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.20.0';
15+
export const version = '2.21.0';
1616

1717
/**
1818
* channel options for react-hooks

0 commit comments

Comments
 (0)