index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2022-05-28 20:41:28.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2022-05-28 20:41:28.0 +00:00:00
commit
d0464a7c2fe3201a1d6bd52dece8efb6ad65df3a [patch]
tree
b2be4a7405a89343b5431b3ebb61eb0ac7a7cd27
parent
2d71de67f4990a3808a938f207b314bf17a3de56
download
d0464a7c2fe3201a1d6bd52dece8efb6ad65df3a.tar.gz

v2.9.0



Diff

 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 <https://joseluisq.net>"]
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 <https://joseluisq.net>
A blazing fast and asynchronous web server for static files-serving.