index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2022-02-28 0:02:17.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2022-02-28 0:02:17.0 +00:00:00
commit
a661b385a3557ab652b208b7a5732ba7e964e8ec [patch]
tree
5fdeb5dc72b3dff97fa61bd60ce73553a312bf1a
parent
e6d05d592099caf02cb3c64b456868be37ff51d9
download
a661b385a3557ab652b208b7a5732ba7e964e8ec.tar.gz

v2.6.0



Diff

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

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c0b4114..42f1075 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,30 @@ 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.6.0 - 2022-02-28

__Fixes__

- [fb84c0b]https://github.com/joseluisq/static-web-server/commit/fb84c0b Bugfix/security dependency updates including hyper, tokio, httparse, futures, tracing, headers and other crates (also [7f70a13]https://github.com/joseluisq/static-web-server/commit/7f70a13, [d3fb137]https://github.com/joseluisq/static-web-server/commit/d3fb137).

__Features__

- [7d32a67]https://github.com/joseluisq/static-web-server/commit/7d32a67 Multi-arch Docker images (Scratch/Alpine). PR [#82]https://github.com/joseluisq/static-web-server/pull/82 resolves [#54]https://github.com/joseluisq/static-web-server/issues/54.
  - New `armv7-unknown-linux-musleabihf` (armv7) and `arm-unknown-linux-musleabihf` (armv6) binary targets.
  - New Docker images for `linux/arm64`, `linux/386`, `linux/arm/v7` and `linux/arm/v6` platforms.
- [50974fe]https://github.com/joseluisq/static-web-server/commit/50974fe Compress WebAssembly (`application/wasm`) files. PR [#84]https://github.com/joseluisq/static-web-server/pull/84 by [@acelot]https://github.com/acelot. See [docs]https://sws.joseluisq.net/features/compression/.
- [70ec60c]https://github.com/joseluisq/static-web-server/commit/70ec60c Arch Linux [AUR package]https://aur.archlinux.org/packages/static-web-server-bin support. See [docs]https://sws.joseluisq.net/download-and-install/.

__Refactorings__

- [e109b77]https://github.com/joseluisq/static-web-server/commit/e109b77 Improve startup server error messages providing context.
- [c085147]https://github.com/joseluisq/static-web-server/commit/c085147 Prefer `cfg(unix)` instead of `cfg(not(windows))`.

__Docs__

- [eb482a4]https://github.com/joseluisq/static-web-server/commit/eb482a4 Documentation for Multi-arch Docker images. See [docs]https://sws.joseluisq.net/features/docker/.
- [70ec60c]https://github.com/joseluisq/static-web-server/commit/70ec60c Documentation for Arch Linux support. See [docs]https://sws.joseluisq.net/download-and-install/.

## v2.6.0-beta.2 - 2022-02-08

__Fixes__
diff --git a/Cargo.lock b/Cargo.lock
index abada3c..74ab0f2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -820,7 +820,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"

[[package]]
name = "static-web-server"
version = "2.6.0-beta.2"
version = "2.6.0"
dependencies = [
 "anyhow",
 "async-compression",
diff --git a/Cargo.toml b/Cargo.toml
index e77b015..8776283 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "static-web-server"
version = "2.6.0-beta.2"
version = "2.6.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."