From d0464a7c2fe3201a1d6bd52dece8efb6ad65df3a Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Sat, 28 May 2022 22:41:28 +0200 Subject: [PATCH] v2.9.0 --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- docs/content/configuration/command-line-arguments.md | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b467b7..dbfe7fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _**Note:** See changelog for v1 under the [1.x](https://github.com/joseluisq/static-web-server/blob/1.x/CHANGELOG.md) branch._ +## v2.9.0 - 2022-05-28 + +__Fixes__ + +- [446576a](https://github.com/joseluisq/static-web-server/commit/446576a) Bugfix/security dependency updates including tokio, hyper, rustls, compression, windows-rs, serde, log and other crates (also [fa531a0](https://github.com/joseluisq/static-web-server/commit/fa531a0), [0879c84](https://github.com/joseluisq/static-web-server/commit/0879c84)). + +__Features__ + +- [3d1776d](https://github.com/joseluisq/static-web-server/commit/3d1776d) Windows Service support via new `--windows-service` option. PR [#110](https://github.com/joseluisq/static-web-server/pull/110) resolves [#65](https://github.com/joseluisq/static-web-server/issues/65) suggested by [@bubnenkoff](https://github.com/bubnenkoff). See [docs](https://sws.joseluisq.net/features/windows-service/). +- [bd78034](https://github.com/joseluisq/static-web-server/commit/bd78034) Include request URI on tracing log for 404/50x errors. [#108](https://github.com/joseluisq/static-web-server/issues/108) suggested by [@stappersg](https://github.com/stappersg). +- [b49395a](https://github.com/joseluisq/static-web-server/commit/b49395a) Log request file with its remote address (IP) via new `--log-remote-address` option. PR [#112](https://github.com/joseluisq/static-web-server/pull/112) resolves [#111](https://github.com/joseluisq/static-web-server/issues/111) suggested by [@nicheath](https://github.com/nicheath). See [docs](https://sws.joseluisq.net/features/logging/#log-remote-addresses). + +__Docs__ + +- [a793b58](https://github.com/joseluisq/static-web-server/commit/a793b58) Improve basic auth feature page. See [docs](https://sws.joseluisq.net/features/basic-authentication/). +- [ae0dcfd](https://github.com/joseluisq/static-web-server/commit/ae0dcfd) Windows Service feature page. See [docs](https://sws.joseluisq.net/features/windows-service/). +- [2d71de6](https://github.com/joseluisq/static-web-server/commit/2d71de6) Log remote address feature. See [docs](https://sws.joseluisq.net/features/logging/#log-remote-addresses). + ## v2.8.0 - 2022-05-04 __Fixes__ diff --git a/Cargo.lock b/Cargo.lock index e3b9948..032cb36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -943,7 +943,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "static-web-server" -version = "2.8.0" +version = "2.9.0" dependencies = [ "anyhow", "async-compression", diff --git a/Cargo.toml b/Cargo.toml index 98bf276..1cfc6c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "static-web-server" -version = "2.8.0" +version = "2.9.0" authors = ["Jose Quintana "] license = "MIT OR Apache-2.0" description = "A blazing fast and asynchronous web server for static files-serving." diff --git a/docs/content/configuration/command-line-arguments.md b/docs/content/configuration/command-line-arguments.md index a494823..ffb3e56 100644 --- a/docs/content/configuration/command-line-arguments.md +++ b/docs/content/configuration/command-line-arguments.md @@ -10,7 +10,7 @@ The server can be configured via the following command-line arguments. ``` $ static-web-server -h -static-web-server 2.8.0 +static-web-server 2.9.0 Jose Quintana A blazing fast and asynchronous web server for static files-serving. -- libgit2 1.7.2