Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump crux_http version to 0.8.0 #212

Merged
merged 1 commit into from
Feb 26, 2024
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions crux_http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,32 @@ and this project adheres to

## [Unreleased]

## [0.7.1](https://github.com/redbadger/crux/compare/crux_http-v0.7.0...crux_http-v0.7.1) - 2024-02-23
## [0.8.0](https://github.com/redbadger/crux/compare/crux_http-v0.7.0...crux_http-v0.8.0) - 2024-02-26

### Changes
- Fixes a type generation problem with the newly exposed `HttpResult` and `HttpError`
### Breaking Changes

- Fixes a type generation problem with the newly exposed `HttpResult` and
`HttpError`
- **Requires explicit tracing of crux_http::HttpError when using typegen**

## [0.7.0](https://github.com/redbadger/crux/compare/crux_http-v0.6.0...crux_http-v0.7.0) - 2024-02-21

### Breaking changes
- **The protocol between shell and core has changed. Core now expects a `HttpResult` rather than a `HttpResponse`**

- **The protocol between shell and core has changed. Core now expects a
`HttpResult` rather than a `HttpResponse`**

## [0.6.0](https://github.com/redbadger/crux/compare/crux_http-v0.5.1...crux_http-v0.6.0) - 2024-02-06

### Breaking changes

- **When using the (sync) APIs which return response in an Event, HTTP responses
with status code in the 4xx and 5xx range are now considered an error.**
- Better Error type with more detail, allowing apps to handle HTTP errors with more specificity
with status code in the 4xx and 5xx range are now considered an error.**
- Better Error type with more detail, allowing apps to handle HTTP errors with
more specificity
- When handling error such error responses, `crux_http` won't attempt to
deserialize the body into the expected type, which would almost certainly fail
and obscure the actual cause of the error with a serde error
deserialize the body into the expected type, which would almost certainly fail
and obscure the actual cause of the error with a serde error
- Http errors now contain the body bytes if present

## [0.5.1](https://github.com/redbadger/crux/compare/crux_http-v0.5.0...crux_http-v0.5.1) - 2024-02-02
Expand Down
2 changes: 1 addition & 1 deletion crux_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "crux_http"
description = "HTTP capability for use with crux_core"
version = "0.7.1"
version = "0.8.0"
readme = "README.md"
authors.workspace = true
repository.workspace = true
Expand Down
Loading