Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.2.0]

### Changed

- Updated dev and build-time dependencies.

### Fixed

- Fixed an issue where setting a non-JSON datacontenttype (e.g., application/octet-stream) with dict data produced non-JSON-decodable output; now best-effort json-encoding is applied regardless of datacontenttype. ([#291])
- Updated behavior when datacontenttype is unset: now treats events as application/json in line with spec recommendation. ([#291])
- Fixed an issue where setting a non-JSON datacontenttype (e.g.,
application/octet-stream) with dict data produced non-JSON-decodable output; now
best-effort json-encoding is applied regardless of datacontenttype. ([#291])
- Updated behavior when datacontenttype is unset: now treats events as application/json
in line with spec recommendation. ([#291])

## [2.1.0]

Expand Down Expand Up @@ -362,3 +367,4 @@ CloudEvents v2 is a rewrite with ongoing development ([#271])
[#278]: https://github.com/cloudevents/sdk-python/pull/278
[#279]: https://github.com/cloudevents/sdk-python/pull/279
[#284]: https://github.com/cloudevents/sdk-python/pull/284
[#291]: https://github.com/cloudevents/sdk-python/pull/291
2 changes: 1 addition & 1 deletion src/cloudevents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# License for the specific language governing permissions and limitations
# under the License.

__version__ = "2.1.0"
__version__ = "2.2.0"
Loading