Skip to content

Commit 8a3552d

Browse files
committed
chore: add release information for 2.6.0
1 parent 7984d55 commit 8a3552d

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.6.0](https://github.com/ably/ably-js/tree/2.6.0) (2024-12-09)
6+
7+
- Removed a build check that prevented referencing branch builds in `package.json`. It is now possible to point npm at specific branches of ably-js.
8+
- Presence will now only emit a `LEAVE` event if a member was present in the presence set to begin with.
9+
- The experimental attributes on the `Message` type to support edits and deletes have been updated and renamed.
10+
511
## [2.5.0](https://github.com/ably/ably-js/tree/2.5.0) (2024-11-06)
612

713
With this release, ably-js will now expose the new `Message` attributes needed to support upcoming features,

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

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

0 commit comments

Comments
 (0)