Skip to content

Releases: cloudwego/volo

Volo-cli 0.10.3

29 Aug 06:37
225090e
Compare
Choose a tag to compare
volo-cli-0.10.3

fix: faststr compile needs to enable serde feature && update dep to l…

Volo-build 0.10.14

29 Aug 06:36
225090e
Compare
Choose a tag to compare

Volo 0.10.3

29 Aug 06:34
225090e
Compare
Choose a tag to compare

Volo-HTTP 0.2.13

14 Aug 07:26
b7b1884
Compare
Choose a tag to compare

What's Changed

We yanked Volo-HTTP 0.2.12 because it introduces unnecessary breaking changes that impact the user experience. If you encounter any problems during using it, please upgrade to the latest version.

New Features

Chores

Full Changelog: volo-http-0.2.11...volo-http-0.2.13

Volo-HTTP 0.2.11

14 Aug 07:19
b438e65
Compare
Choose a tag to compare

What's Changed

Full Changelog: volo-http-0.2.10...volo-http-0.2.11

Volo-HTTP 0.2.10

18 Jul 08:21
77e35bb
Compare
Choose a tag to compare

What's Changed

Full Changelog: volo-http-0.2.9...volo-http-0.2.10

Volo-HTTP 0.2.9

10 Jul 07:13
8c16dc1
Compare
Choose a tag to compare

What's Changed

The documentation on docs.rs is ready: https://docs.rs/volo-http/latest/volo_http/.

In addition, we supported nested router and nested service.

Full Changelog

  • feat(volo-http): support nested router and nested service by @wfly1998 in #453
  • chore: adjust doc config and improve doc readability by @wfly1998 in #463
  • chore(volo-http): fix incorrect usage of docs by @wfly1998 in #468

Volo-HTTP 0.2.8

24 Jun 06:25
f6f6394
Compare
Choose a tag to compare

What's Changed

  • chore(volo-http): add some unit tests and helpers for server by @wfly1998 in #451
  • feat(volo-http): support SSE for HTTP server by @wfly1998 in #452

Full Changelog: volo-http-0.2.7...volo-http-0.2.8

Volo-HTTP 0.2.7

24 Jun 06:24
9f4950d
Compare
Choose a tag to compare

What's Changed

  • feat: support catch panic in service by @PureWhiteWu in #445
  • feat(volo-http): add Redirect for http server by @wfly1998 in #447

Full Changelog: volo-http-0.2.6...volo-http-0.2.7

Volo-HTTP 0.2.6

11 Jun 04:33
9a6d4e6
Compare
Choose a tag to compare

What's Changed

Bugfix

Fix the problem that Json has the wrong Content-Type

In the previous code, Json only implemented TryInto<Body>, but not IntoResponse. IntoResponse is derived from impl IntoResponse for T where T: TryInto<Body>, which can convert Json to ServerResponse, but lacks Content-Type.

To solve this problem, we removed TryInto<Body> of Json, used IntoResponse of Json instead with inserting Content-Type into ServerResponse. In addition, we also implemented IntoResponse for Form with inserting Content-Type.

  • feat(volo-http): impl IntoResponse for Json and Form by @wfly1998 in #441

Full Changelog: volo-http-0.2.5...volo-http-0.2.6