index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2022-05-04 20:30:55.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2022-05-04 20:30:55.0 +00:00:00
commit
ef41a16ffd05dda5525f703f58c59d40cb5dda2d [patch]
tree
a89164c36bd0a8e673f30bebbf339f2f0a5007e9
parent
959c3258453ae44f333d3c147bb480b9a9404479
download
ef41a16ffd05dda5525f703f58c59d40cb5dda2d.tar.gz

v2.8.0



Diff

 CHANGELOG.md | 22 ++++++++++++++++++++++
 Cargo.lock   |  2 +-
 Cargo.toml   |  2 +-
 3 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0f16df9..1b467b7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,28 @@ 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.8.0 - 2022-05-04

__Fixes__

- [446576a]https://github.com/joseluisq/static-web-server/commit/446576a Bugfix/security dependency updates including http, tokio, httparse, windows-rs, serde, log and other crates.

__Features__

- [1fd3e48]https://github.com/joseluisq/static-web-server/commit/1fd3e48 Configuration file support. PR [#101]https://github.com/joseluisq/static-web-server/pull/101. See [docs]https://sws.joseluisq.net/configuration/config-file/.
- [62ebe52]https://github.com/joseluisq/static-web-server/commit/62ebe52 Custom HTTP headers via config file. See [docs]https://sws.joseluisq.net/features/custom-http-headers/.

__Refactorings__

- [9f4bbd7]https://github.com/joseluisq/static-web-server/commit/9f4bbd7 Update `tokio-rustls` to `v0.23`.
- [024531c]https://github.com/joseluisq/static-web-server/commit/024531c Move to maintained jemallocator (`tikv-jemallocator`) on Linux (Musl libc).
- [3e40153]https://github.com/joseluisq/static-web-server/commit/3e40153 Remove deprecated `git.io` link. PR [#103]https://github.com/joseluisq/static-web-server/pull/103 by [@renbaoshuo]https://github.com/renbaoshuo.
- [959c325]https://github.com/joseluisq/static-web-server/commit/959c325 `PathBuf` data type for cli/file config path options.

__Docs__

- [7dda2ea]https://github.com/joseluisq/static-web-server/commit/7dda2ea Config file and custom http headers.

## v2.7.1 - 2022-04-17

__Fixes__
diff --git a/Cargo.lock b/Cargo.lock
index d5f5eec..d084fc9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -943,7 +943,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"

[[package]]
name = "static-web-server"
version = "2.7.1"
version = "2.8.0"
dependencies = [
 "anyhow",
 "async-compression",
diff --git a/Cargo.toml b/Cargo.toml
index 400d9a1..4e0bbfe 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "static-web-server"
version = "2.7.1"
version = "2.8.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."