v2.2.0
Diff
CHANGELOG.md | 19 +++++++++++++++++++
Cargo.lock | 2 +-
Cargo.toml | 2 +-
3 files changed, 21 insertions(+), 2 deletions(-)
@@ -7,6 +7,25 @@ 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.2.0 - 2021-11-04
__Fixes__
- [c264f2f](https://github.com/joseluisq/static-web-server/commit/c264f2f) Update dependencies (also [e127a1f](https://github.com/joseluisq/static-web-server/commit/e127a1f)).
__Features__
- [0a02da3](https://github.com/joseluisq/static-web-server/commit/0a02da3) [Graceful Shutdown](https://cloud.google.com/blog/products/containers-kubernetes/kubernetes-best-practices-terminating-with-grace) support for HTTP/1 - HTTP/2 servers by default. PR [#62](https://github.com/joseluisq/static-web-server/pull/62) resolves [#61](https://github.com/joseluisq/static-web-server/issues/53) suggested by [@pdfrod](https://github.com/pdfrod).
__Refactorings__
- [6f10ef1](https://github.com/joseluisq/static-web-server/commit/6f10ef1) Disable ANSI for tracing logs on Windows in order to display characters correctly.
- [17ceec0](https://github.com/joseluisq/static-web-server/commit/17ceec0) Log Basic Authentication info.
__Docs__
- [b501c40](https://github.com/joseluisq/static-web-server/commit/b501c40) Project Website - [sws.joseluisq.net](https://sws.joseluisq.net). PR [#56](https://github.com/joseluisq/static-web-server/pull/56).
## v2.1.0 - 2021-10-23
__Fixes__
@@ -796,7 +796,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "static-web-server"
version = "2.1.0"
version = "2.2.0"
dependencies = [
"anyhow",
"async-compression",
@@ -1,6 +1,6 @@
[package]
name = "static-web-server"
version = "2.1.0"
version = "2.2.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."