Skip to content

Releases: permitio/fastapi_websocket_pubsub

v0.3.8

04 Oct 11:04
c3376a8
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.3.1...0.3.8

v0.3.1

04 Sep 14:00
a7fae62
Compare
Choose a tag to compare

What's Changed

  • fixed project requirements (uvicorn version was unnecessarily limited which caused problems with OPAL) by @asafc in #48

Full Changelog: 0.3.0...0.3.1

v0.3.0

20 Aug 12:29
Compare
Choose a tag to compare
  • Replaced the broadcaster requirement with permit-broadcaster (a fork, since mainline package is not actively maintained)
  • Fixed a bug in broadcaster where disconnections from the backbone service were ignored by the library

v0.2.1

06 Jun 13:06
Compare
Choose a tag to compare

patch version: unpinned project dependencies so that minor and patch versions can auto update correctly.

v0.2.0

22 Feb 13:14
Compare
Choose a tag to compare

Added a new small feature (non-breaking change):

The event notifier now has topic restriction:
it means it's possible to enforce a permission whether a client can publish to a topic, or subscribe to a topic.

The server can typically enforce a channel restriction by specifying some claims in a JWT token used for HTTP Authorization.

thanks @idan-ben-ami for this new feature!

v0.1.20

03 Nov 13:10
Compare
Choose a tag to compare
  • Added callbacks upon clients subscribing and unsubscribing from EventNotifier
  • Added an option to fetch the remote RPC channel id, and use it as the subscriber id in event notifier

v0.1.19

10 Oct 17:26
b37ed79
Compare
Choose a tag to compare

Increased log verbosity: added more log messages in critical parts

v0.1.18

11 Apr 15:21
Compare
Choose a tag to compare
solve issue #16

Make sure publish_lock is created on the right loop by creating it JIT

v0.1.16

25 Mar 15:22
bbf63f9
Compare
Choose a tag to compare
Merge pull request #11 from authorizon/raise_invalid_code

PubSubClient: if InvalidStatusCode is raised, do not try to reconnect.

v0.1.15

22 Mar 09:44
Compare
Choose a tag to compare

Add Support fo client-side ALL_TOPICS subscribing.