Releases: gdamjan/http-server-rs
Releases · gdamjan/http-server-rs
v0.13.3
version v0.13.2
testing cosign
v0.13.1
bump dependencies and version
v0.13.0: Upgrade to actix-web 4.0
Updated to:
- actix-web 4.0.0
- actix-files 0.6.0
- clap 3.1.0
- rust edition 2021
v0.12.0: Upgrade to actix-web 3.0
Apart from upgrading to actix-web 3.0, the CI had been moved from Travis to GitHub Actions. Finally Windows builds should be more reliable.
Actix-web 3.0 (as was 2.0) is based on futures 0.3, and async/await. I couldn't migrate earlier since early 2.0 versions and the corresponding actix-files crate were not fully usable.
v0.10.2
v0.10.1: travis: windows releases work now
* on windows the target has a .exe suffix we need the file name to add to the release zip * install zip on windows with choco * also remove tests - since there aren't any no code changes
v0.10.0: refactor with actix-web 1.0.0
* actix-web 1.0.0 brought some changes in how associated data is accessed, and how handlers are written. * static files are now a separate crate `actix-files`. * web::run now creates the App and the Server and runs the server. they really want to have HttpServer::new and App::new in the same scope (I couldn't find a proper signature for the create_app function) * replace .trim_right_matches (depreceated in rust 1.33) with .trim_end_matches https://github.com/actix/actix-web/blob/web-v1.0.0/MIGRATION.md
v0.9.0
v0.8.5: update travis setup
only make release builds on tags, but don't build twice