Skip to content

Commit b87ac65

Browse files
authored
Merge pull request #1481 from ably/release/1.2.47
Release 1.2.47
2 parents 5857e59 + edd50b0 commit b87ac65

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

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

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

5+
## [1.2.47](https://github.com/ably/ably-js/tree/1.2.47) (2023-11-02)
6+
7+
- fix(react): fix issue where useChannel would error upon router navigation or hmr [\#1478](https://github.com/ably/ably-js/pull/1478)
8+
59
## [1.2.46](https://github.com/ably/ably-js/tree/1.2.46) (2023-10-24)
610

711
- fix: avoid directly exporting Ably.ErrorInfo from promises.js [\#1463](https://github.com/ably/ably-js/pull/1463)

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": "1.2.46",
4+
"version": "1.2.47",
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
@@ -17,7 +17,7 @@ export type ChannelNameAndId = {
1717
};
1818
export type ChannelParameters = string | ChannelNameAndOptions;
1919

20-
export const version = '1.2.46';
20+
export const version = '1.2.47';
2121

2222
export function channelOptionsWithAgent(options?: Types.ChannelOptions) {
2323
return {

0 commit comments

Comments
 (0)