diff --git a/CHANGELOG.md b/CHANGELOG.md index 152a66c2b..8592ab888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,6 +88,15 @@ The Types namespace has been removed. All types it contained are now exported at [Full Changelog](https://github.com/ably/ably-js/compare/1.2.50...2.0.0) +## [1.2.50](https://github.com/ably/ably-js/tree/1.2.50) (2024-03-21) + +- Add new logging API to `ClientOptions` and add a deprecation warning for the old one [\#1671](https://github.com/ably/ably-js/pull/1671) +- Add `ClientOptions.maxMessageSize` to the public API [\#1678](https://github.com/ably/ably-js/pull/1678) +- Add a deprecation warning for the `headers` client option [\#1681](https://github.com/ably/ably-js/pull/1681) +- Improve deprecation log messages [\#1683](https://github.com/ably/ably-js/pull/1683), [\#1685](https://github.com/ably/ably-js/pull/1685) +- Handle 204 status code in `PaginatedResource` [\#1631](https://github.com/ably/ably-js/pull/1631) +- Fix typing and deprecation warning for `Crypto.getDefaultParams()` [\#1693](https://github.com/ably/ably-js/pull/1693) + ## [1.2.49](https://github.com/ably/ably-js/tree/1.2.49) (2024-02-07) - \[React-Hooks\] `usePresence` unsubscribes all listeners on unmount and run `Presence.leave` even if connection has been terminated [\#1610](https://github.com/ably/ably-js/issues/1610) diff --git a/package-lock.json b/package-lock.json index 96ff9a92f..d87d019bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ably", - "version": "1.2.49", + "version": "1.2.50", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ably", - "version": "1.2.49", + "version": "1.2.50", "license": "Apache-2.0", "dependencies": { "@ably/msgpack-js": "^0.4.0", diff --git a/package.json b/package.json index 9b976a7c0..b214c1cb4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ably", "description": "Realtime client library for Ably, the realtime messaging service", - "version": "1.2.49", + "version": "1.2.50", "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 6933dfec0..40c83b8b6 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 = '1.2.49'; +export const version = '1.2.50'; export function channelOptionsWithAgent(options?: Ably.ChannelOptions) { return {