index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2021-10-23 19:45:34.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2021-10-23 19:45:34.0 +00:00:00
commit
f9b2c9874e12fb10d238b9d1e7613e63c6d93f14 [patch]
tree
6b191ea6796c4ae3cc4f39714fbde21d964cac50
parent
dc98fbb2f514e640a81e7f03529f4b29a5515225
download
f9b2c9874e12fb10d238b9d1e7613e63c6d93f14.tar.gz

v2.1.0



Diff

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 12539a6..273a1a9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,27 @@ 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.1.0 - 2021-10-23

__Fixes__

* [5f3842b]https://github.com/joseluisq/static-web-server/commit/5f3842b Update dependencies including Hyper, Tokio, h2, futures, tracing bug/security fixes and related crates (also [5528bcb]https://github.com/joseluisq/static-web-server/commit/5528bcb, [dc98fbb]https://github.com/joseluisq/static-web-server/commit/dc98fbb).
* [62e98c6]https://github.com/joseluisq/static-web-server/commit/62e98c6 `aarch64-unknown-linux-musl` build fails using Rust nightly.

__Features__

- [abc76a8]https://github.com/joseluisq/static-web-server/commit/abc76a8 Basic HTTP Authentication support via the new `--basic-auth` option. PR [#55]https://github.com/joseluisq/static-web-server/pull/55 resolves [#53]https://github.com/joseluisq/static-web-server/issues/53 suggested by [@bjornharrtell]https://github.com/bjornharrtell.

__Refactorings__

- [0273611]https://github.com/joseluisq/static-web-server/commit/0273611 Prefer `futures-util` over `futures` dependency.
- [c3bfa68]https://github.com/joseluisq/static-web-server/commit/c3bfa68 Use [Rust 1.56.0 (2021 Edition)]https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html on CI.

__Docs__

- [f89c5c9]https://github.com/joseluisq/static-web-server/commit/f89c5c9 Describe Basic HTTP Authentication feature.
- [a6d0e53]https://github.com/joseluisq/static-web-server/commit/a6d0e53 Minor general description improvements.

## v2.0.3 - 2021-09-29

__Fixes__
diff --git a/Cargo.lock b/Cargo.lock
index 0ad7384..c17be3b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -883,7 +883,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"

[[package]]
name = "static-web-server"
version = "2.0.3"
version = "2.1.0"
dependencies = [
 "anyhow",
 "async-compression",
diff --git a/Cargo.toml b/Cargo.toml
index 6adfe49..f99ac8a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "static-web-server"
version = "2.0.3"
version = "2.1.0"
authors = ["Jose Quintana <https://git.io/joseluisq>"]
license = "MIT OR Apache-2.0"
description = "A blazing fast and asynchronous web server for static files-serving."
diff --git a/README.md b/README.md
index 63cf2b7..978dc81 100644
--- a/README.md
+++ b/README.md
@@ -132,7 +132,7 @@ Server can be configured either via environment variables or their equivalent co
CLI arguments listed with `static-web-server -h`.

```
static-web-server 2.0.3
static-web-server 2.1.0
Jose Quintana <https://git.io/joseluisq>
A blazing fast and asynchronous web server for static files-serving.