Skip to content

Commit 9d102e6

Browse files
committed
Update changelog and package version for 2.17.1 release
1 parent d32c3d9 commit 9d102e6

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

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

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

5+
## [2.17.1](https://github.com/ably/ably-js/tree/2.17.1) (2026-01-30)
6+
7+
- Fix non-monotonic `msgSerial` on stale connection reset [\#2153](https://github.com/ably/ably-js/pull/2153)
8+
- Fix missing capabilities in `CapabilityOp` type [\#2160](https://github.com/ably/ably-js/pull/2160)
9+
510
## [2.17.0](https://github.com/ably/ably-js/tree/2.17.0) (2026-01-06)
611

712
- Support update and delete operations over realtime connections [\#2127](https://github.com/ably/ably-js/pull/2127)

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

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

0 commit comments

Comments
 (0)