Skip to content

Commit

Permalink
Add changelog notes for v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
the-mikedavis committed Jun 13, 2023
1 parent a123492 commit 8487de4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ The format is based on [Keep a
Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.1.0 - 2023-06-12

### Added

- Added configuration for a serializer module with the default module
implementing `Phoenix.Socket.V2.JSONSerializer` (Phoenix's default
serializer).
- Added support for sending and receiving binary data.

### Changed

- The `:json_parser` key previously required a module that exported
`encode!/1` and `decode/1`. This key now requires a module that
implements `encode!/1` and `decode!/1`.
- This was previously documented as requiring `encode/1` but this
was a typo in the documentation.
- Note that many popular JSON parser/generator libraries share
these function signatures (`encode/1`, `encode!/1`, `decode/1` and
`decode!/1`), so it is unlikely that you will need to make any
changes in your code.

## 1.0.4 - 2023-04-02

### Fixed
Expand Down

0 comments on commit 8487de4

Please sign in to comment.