Skip to content

Commit

Permalink
chore: update CHANGELOG for 2.0.0-beta.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
owenpearson committed Mar 1, 2023
1 parent 8298aae commit c4f96d1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [v2.0.0-beta.4](https://github.com/ably/ably-python/tree/v2.0.0-beta.4)

This new beta release of the ably-python realtime client implements token authentication for realtime connections, allowing you to use all currently supported token options to authenticate a realtime client (auth_url, auth_callback, jwt, etc). The client will reauthenticate when the token expires or otherwise becomes invalid.

[Full Changelog](https://github.com/ably/ably-python/compare/v2.0.0-beta.3...v2.0.0-beta.4)

- Allow token auth methods for realtime constructor [\#425](https://github.com/ably/ably-python/issues/425)
- Send `AUTH` protocol message when `Auth.authorize` called on realtime client [\#427](https://github.com/ably/ably-python/issues/427)
- Reauth upon inbound `AUTH` protocol message [\#428](https://github.com/ably/ably-python/issues/428)
- Handle connection request failure due to token error [\#445](https://github.com/ably/ably-python/issues/445)
- Handle token `ERROR` response to a resume request [\#444](https://github.com/ably/ably-python/issues/444)
- Handle `DISCONNECTED` messages containing token errors [\#443](https://github.com/ably/ably-python/issues/443)
- Pass `clientId` as query string param when opening a new connection [\#449](https://github.com/ably/ably-python/issues/449)
- Validate `clientId` in `ClientOptions` [\#448](https://github.com/ably/ably-python/issues/448)
- Apply `Auth#clientId` only after a realtime connection has been established [\#409](https://github.com/ably/ably-python/issues/409)
- Channels should transition to `INITIALIZED` if `Connection.connect` called from terminal state [\#411](https://github.com/ably/ably-python/issues/411)
- Calling connect while `CLOSING` should start connect on a new transport [\#410](https://github.com/ably/ably-python/issues/410)
- Handle realtime channel errors [\#455](https://github.com/ably/ably-python/issues/455)

## [v2.0.0-beta.3](https://github.com/ably/ably-python/tree/v2.0.0-beta.3)

This new beta release of the ably-python realtime client implements a number of new features to improve the stability of realtime connections, allowing the client to reconnect during a temporary disconnection, use fallback hosts when necessary, and catch up on messages missed while the client was disconnected.
Expand Down

0 comments on commit c4f96d1

Please sign in to comment.