Skip to content

Latest commit

 

History

History
94 lines (61 loc) · 1.74 KB

CHANGELOG.md

File metadata and controls

94 lines (61 loc) · 1.74 KB

Changelog

All notable changes to this project will be documented in this file.

[unreleased]

Features

  • Support custom websocket request (#52)
  • Use rust 2021 edition (#54)
  • Add support for wss (TLS) connections for clients (#62)

Miscellaneous Tasks

  • Use dependabot (#56)
  • Make clippy happy (#55)

[0.7.2] - 2021-09-01

Bug Fixes

  • Check send error

Features

  • Use cfg_if and once_cell
  • Add some macros
  • Implemented cancel frame handling (#49)

Miscellaneous Tasks

  • Upgrade version to 0.7.1
  • Update examples
  • Upgrade deps
  • Update dependencies for readme (#46)
  • Update example code in readme (#47)
  • Upgrade to 0.7.2 (#50)

[0.7.0] - 2021-01-14

Bug Fixes

  • Remove useless examples
  • Simplify Option convert
  • Register client-side responder correctly (#36)

Features

  • Redesign RSocket trait based on async_trait
  • Handle empty response correctly
  • Implment tls transport (#31)
  • Change transport api (#35)
  • Migrate to tokio v1
  • Close connection correctly when client is dropped (#40)

Miscellaneous Tasks

  • Bump tokio to v0.3.6
  • Fix readme
  • Add RSocket trait example in readme
  • Use mkcert to generate TLS example certificates and keys (#38)
  • Optimize import (#39)
  • Config chglog (#41)
  • Update deps (#42)

[0.6.0] - 2020-12-13

Bug Fixes

  • Optimize bytes write action (#24)
  • Convert bytes to utf8 safely (#27)

Features

  • Support tokio v0.3.x (#23)
  • Implement client-side keepalive (#25)

Miscellaneous Tasks

  • Use gh actions instead of travis (#22)
  • Upgrade deps
  • Prelease 0.6

Refactor

  • Use thiserror & anyhow as error struct (#20)

[0.4.0] - 2019-12-24

Bugfix

  • Response payload of REQUEST_RESPONSE will be sent with NEXT|COMPLETE flag.