index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2022-10-12 21:02:19.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2022-10-12 21:02:19.0 +00:00:00
commit
289240f571fb768f097ca1d94979910e12837d01 [patch]
tree
c49f6e76bddf3ee770ebd5bf242ec2da5484456c
parent
27feacf8e2f69afd3edd758d131eb17b32f21c54
download
289240f571fb768f097ca1d94979910e12837d01.tar.gz

v2.13.0



Diff

 CHANGELOG.md                                         | 24 +++++++++++++++++++++-
 Cargo.lock                                           |  2 +-
 Cargo.toml                                           |  2 +-
 docs/content/configuration/command-line-arguments.md |  2 +-
 4 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c212e5..3fc9e15 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.13.0 - 2022-10-12

__Fixes__

- [cce7a85]https://github.com/joseluisq/static-web-server/commit/cce7a85 Bugfix/security dependency updates including jemallocator, http headers, async-compression, rustls-pemfile, tracing and other crates (also [ed8dec3]https://github.com/joseluisq/static-web-server/commit/ed8dec3, [ea0facd]https://github.com/joseluisq/static-web-server/commit/ea0facd).
- [3c863fd]https://github.com/joseluisq/static-web-server/commit/3c863fd Directory listing links not encoded properly. PR [#150]https://github.com/joseluisq/static-web-server/issues/150 fixes [#149]https://github.com/joseluisq/static-web-server/issues/149 reported by [@nestor-custodio]https://github.com/nestor-custodio.

__Features__

- [f369c80]https://github.com/joseluisq/static-web-server/commit/f369c80 CORS exposed headers support via new `--cors-expose-headers` option. PR [#144]https://github.com/joseluisq/static-web-server/pull/144 by [@nelsonjchen]https://github.com/nelsonjchen. See [docs]https://sws.joseluisq.net/features/cors/#exposed-headers.
- [997e493]https://github.com/joseluisq/static-web-server/commit/997e493 HTML/JSON support for directory listing entries via new `--directory-listing-format` option. PR [#151]https://github.com/joseluisq/static-web-server/pull/151. See [docs]https://sws.joseluisq.net/features/directory-listing/#output-format.

__Refactorings__

- [61d4bb2]https://github.com/joseluisq/static-web-server/commit/61d4bb2 Restore ANSI terminal colors for Unix systems previously disabled.

__Docs__

- [3d8c74b]https://github.com/joseluisq/static-web-server/commit/3d8c74b Directory listing format description.

__Codebase__
 
- [6a5ed83]https://github.com/joseluisq/static-web-server/commit/6a5ed83 Update CI workflow dependencies.

## v2.12.0 - 2022-09-27

__Fixes__
diff --git a/Cargo.lock b/Cargo.lock
index f3e57f9..ddf6bc6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1111,7 +1111,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"

[[package]]
name = "static-web-server"
version = "2.12.0"
version = "2.13.0"
dependencies = [
 "anyhow",
 "async-compression",
diff --git a/Cargo.toml b/Cargo.toml
index 3ff5f3a..8237830 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "static-web-server"
version = "2.12.0"
version = "2.13.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 6890a33..9ae0f52 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.12.0
static-web-server 2.13.0
Jose Quintana <https://joseluisq.net>
A blazing fast and asynchronous web server for static files-serving.