diff --git a/CHANGELOG.md b/CHANGELOG.md index 58ab56005..ab4b6c7ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This contains only the most important and/or user-facing changes; for a full changelog, see the commit history. +## [2.3.0](https://github.com/ably/ably-js/tree/2.3.0) (2024-07-10) + +With this release, ably-js clients can now be activated as a target for push notifications. See our [official docs](https://ably.com/docs/push/configure/web) for instructions on how to start publishing web push notifications using Ably. + +- Add support for web push activation [\#1775](https://github.com/ably/ably-js/pull/1775) + ## [2.2.1](https://github.com/ably/ably-js/tree/2.2.1) (2024-07-02) - Fix an occasion whereby a channel would attempt to automatically reattach from an inappropriate state [\#1802](https://github.com/ably/ably-js/pull/1802) diff --git a/package-lock.json b/package-lock.json index 2cee606de..9eebc6046 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ably", - "version": "2.2.1", + "version": "2.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ably", - "version": "2.2.1", + "version": "2.3.0", "license": "Apache-2.0", "dependencies": { "@ably/msgpack-js": "^0.4.0", diff --git a/package.json b/package.json index dc41b0465..ccee09e06 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ably", "description": "Realtime client library for Ably, the realtime messaging service", - "version": "2.2.1", + "version": "2.3.0", "license": "Apache-2.0", "bugs": { "url": "https://github.com/ably/ably-js/issues", diff --git a/src/platform/react-hooks/src/AblyReactHooks.ts b/src/platform/react-hooks/src/AblyReactHooks.ts index ea2d59b78..81ae957e6 100644 --- a/src/platform/react-hooks/src/AblyReactHooks.ts +++ b/src/platform/react-hooks/src/AblyReactHooks.ts @@ -12,7 +12,7 @@ export type ChannelNameAndOptions = { export type ChannelNameAndAblyId = Pick; export type ChannelParameters = string | ChannelNameAndOptions; -export const version = '2.2.1'; +export const version = '2.3.0'; export function channelOptionsWithAgent(options?: Ably.ChannelOptions) { return {