Alexander Tkachev
Alexander Tkachev
This PR improves the performance of the CI verification from 20 minutes to 20 seconds (60 times faster!) In addition to that, it fixes some bugs which existed in the...
From the wording right now, it is not obvious that `datacontenttype` MAY exist without the `data` value. But the [dataref](https://github.com/cloudevents/spec/blob/main/cloudevents/extensions/dataref.md) spec assumes that this is a possibility.
[CloudEvents](https://cloudevents.io/) integration for FastAPI See the PR from one year ago https://github.com/mjhea0/awesome-fastapi/pull/140
From the [authid definition](https://github.com/cloudevents/spec/blob/main/cloudevents/extensions/authcontext.md#authid) > This might, for example, be a unique ID in an identity database (userID), an email of a platform user or service account, or the label...
``` CloudEvent(..., data=CloudEvent(...)).json() ``` will not work I will fix it myself
CloudEvent equality is incorrect on none attributes ``` from cloudevents.http import CloudEvent CloudEvent(attributes={"type": "a", "source": "a", "a": None}) == CloudEvent({"type": "a", "source":"a"}) ``` expected `True` actual `False` the spec says...