Releases: ably/ably-js
Releases · ably/ably-js
v1.1.0 - Push notification support - beta v1
See https://www.ably.io/documentation/realtime/push for details on how to use Ably's native push notifications.
This PR adds push notification support to the Ably JS library.
Note that Push notifications support is currently in public beta. The API may change before the final release. Please report any bugs or feedback to support@ably.io
Installation instructions
- Clone the repository (
git clone https://github.com/ably/ably-js.git
) - Check out the
push
branch (git fetch origin push && git checkout push
) - For node: require
nodejs/index.js
from your code (e.g.const Ably = require('relative/path/to/ably-js/nodejs/index.js');
) - For browsers:
- For webpack: require
browser/static/ably.js
from your code (e.g.const Ably = require('relative/path/to/ably-js/browser/static/ably.js');
) - For use with a
script
tag: uploadbrowser/static/ably.js
somewhere accessible and source it as normal
- For webpack: require
1.0.7
1.0.6
- Fix issue where presence updates sent immediately after a recover can be ignored https://www.github.com/ably/ably-js/pull/412
- Fix authMethod being ignored if there are no authParams: https://www.github.com/ably/ably-js/pull/415
- Combine authParams with querystring params given in an authUrl, rather than replace: https://www.github.com/ably/ably-js/pull/418
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0 Major update
Major update to this client library with some breaking changes. See https://blog.ably.io/v1-0-client-libraries-released-8a375dca7a26 for a summary of important, breaking changes and upgrade notes. Alteranatively, see the full changelog here.