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

update changelog #1222

Merged
merged 1 commit into from
Mar 6, 2025
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
3 changes: 3 additions & 0 deletions server/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# unreleased 0.5.0
## Add
- add `net::Listen` trait for customizable connection accepting

## Change
- bump MSRV to `1.85` and Rust edition 2024
- rename `net::AsListener` trait to `IntoListener`. improve it's interface and reduce possibility of panicing
Expand Down
1 change: 1 addition & 0 deletions web/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
}
}
```
- `HttpServer::listen` accepts generic type impl `xitca_server::net::IntoListener` trait. The concrete type must be known before received by said function
- change `codegen::error_impl` marco to coop with the change to `Error` type. the impl method must receive `error::Request` type as `WebContext`'s type param. Example:
```rust
struct CustomError;
Expand Down
Loading