Skip to content

Releases: gdamjan/http-server-rs

v0.15.0

Choose a tag to compare

@gdamjan gdamjan released this 16 Jun 16:48
v0.15.0
535c8b8
bump version with the latest fixes

v0.14.0

Choose a tag to compare

@github-actions github-actions released this 22 Feb 23:57
v0.14.0
450d469
make a new release

v0.13.3

Choose a tag to compare

@github-actions github-actions released this 30 Mar 23:02
v0.13.3
97d01ab
v0.13.3

version v0.13.2

Choose a tag to compare

@github-actions github-actions released this 30 Mar 22:34
v0.13.2
3fcc5e3
testing cosign

v0.13.1

Choose a tag to compare

@github-actions github-actions released this 09 Sep 12:57
bump dependencies and version

v0.13.0: Upgrade to actix-web 4.0

Choose a tag to compare

@gdamjan gdamjan released this 01 Mar 13:35
24ee4f3

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

Choose a tag to compare

@github-actions github-actions released this 20 Sep 02:47

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

Choose a tag to compare

@gdamjan gdamjan released this 21 Sep 19:37
let's actually commit Cargo.lock

v0.10.1: travis: windows releases work now

Choose a tag to compare

@gdamjan gdamjan released this 16 Jun 21:37
* 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

Choose a tag to compare

@gdamjan gdamjan released this 16 Jun 15:48
* 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