Skip to content
This repository has been archived by the owner on Jul 25, 2020. It is now read-only.

Latest commit

 

History

History
58 lines (37 loc) · 1.26 KB

CHANGELOG.md

File metadata and controls

58 lines (37 loc) · 1.26 KB

1.1.0

  • Django 2.0 compatibility - see #6

1.0.0

  • support for Centrifugo 1.0.0

This means that no more project key required.

Just set:

CENTRIFUGE_ADDRESS = 'http://centrifuge.example.com'
CENTRIFUGE_SECRET = 'your secret key from Centrifugo'
CENTRIFUGE_TIMEOUT = 10

And you are done.

0.3.0

  • support channels command (Centrifugo >= 0.3.0 required)

0.2.1

  • fix for default info for generated connection parameters – use empty string instead of None

0.2.0

Changes to reflect Centrifuge 0.8.0 changes

  • project_id renamed to key when creating Client instance
  • secret_key renamed to secret when creating Client instance
  • rename CENTRIFUGE_PROJECT_ID setting to CENTRIFUGE_PROJECT_KEY

How to migrate:


* change kwargs names if you use `Client` from `adjacent`
* change `CENTRIFUGE_PROJECT_ID` setting name to `CENTRIFUGE_PROJECT_KEY`


0.1.0
=====

* use cent>=0.3.0 to work with Centrifuge>=0.7.0
* `user_info` kwarg in `get_connection_parameters` function renamed to `info`

0.0.5
=====

* Added `json_encoder` keyword argument to use custom JsonEncoder