Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Release 3.0.0-rc.0 #87

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [v3.0.0-rc.0]

- feat(usePresence): add `subscribeOnly` [\#41](https://github.com/ably-labs/react-hooks/pull/41)
- feat!: add `<AblyProvider>` and `useAbly` [\#57](https://github.com/ably-labs/react-hooks/pull/57)
- feat: add `useChannelStateListener` and `useConnectionStateListener` [\#65](https://github.com/ably-labs/react-hooks/pull/65)
- fix: `useChannel` hook with `ChannelOptions` throws error [\#66](https://github.com/ably-labs/react-hooks/pull/66)
- feat!: channel/connection error handling APIs [\#71](https://github.com/ably-labs/react-hooks/pull/71)
- feat!: add React 16.8+ support for the library [\#75](https://github.com/ably-labs/react-hooks/pull/75)
- feat: skip param for usePresence and useChannel [\#81](https://github.com/ably-labs/react-hooks/pull/81)
- feat: allow useChannel without message callback [\#85](https://github.com/ably-labs/react-hooks/pull/85)
- make ably-js a peerDependency [\#86](https://github.com/ably-labs/react-hooks/pull/86)

## [v2.1.1](https://github.com/ably-labs/react-hooks/tree/v2.1.1)

[Full Changelog](https://github.com/ably-labs/react-hooks/compare/934c32cb9af7e0b0aa4732c373294c632423f584...v2.1.1)
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ The hooks provide a simplified syntax for interacting with Ably, and manage the

The hooks ship as an ES6 module, so you can use the `import` syntax in your react code.

In order to install the latest 3.0 release candidate,

```bash
npm install --save @ably-labs/react-hooks
npm install --save @ably-labs/react-hooks@rc ably
```

This works out of the box using `create-react-app` - and you can use the package immediately.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ably-labs/react-hooks",
"version": "2.1.1",
"version": "3.0.0-rc.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
Expand Down
Loading