All Versions
21
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v3.5 Changes
- Replaced our use of the
brotli2
crate with the alternative pure Rust implementationbrotli
. This removes Rouille's vulnerability to RUSTSEC-2021-0131, which existed due tobrotli-sys
bundling a vulnerable version of the underlying C library. - ๐ Unpinned
time-rs
and as a result increased our MSRV to 1.51, we don't have a formal MSRV policy and the ecosystem is making it more and more difficult to support compiler versions more than about 6 months old.
- Replaced our use of the
-
v3.4 Changes
- ๐จ Resolved a number of cleanup & refactoring TODOs
- Correctly identify non-lowercase content types as text (e.g.
text/JSON
would be incorrectly identified as non-text). - ๐ Pinned
time-rs
to 0.3.2 to avoid a semver-breaking change in their MSRV. - โฌ๏ธ Bumped
chrono
to 0.4.19 and disabled their default feature set to avoid warnings aboutRUSTSEC-2020-0071
(Rouille was never vulnerable, but used a vulnerable version ofchrono
).
-
v3.3.1 Changes
- Use
.strip_prefix
in place of.starts_with
where appropriate, this stops a Clippy lint from leaking out of ourrouter!
macro and into downstream code.
- Use
-
v3.3.0 Changes
- โฌ๏ธ Bumped minimum supported Rust version to 1.48
- โ Added module-level documentation for
rouille::content_encoding
- โก๏ธ Updated
time
dependency to0.3
andpostgres
to0.19
to fix a compile failure due to a yanked version ofsha1
. - ๐ Fixed numerous typos in the crate documentation.
-
v3.2.1 Changes
- โ Removed unused dependency
term
and updatedrand
,multipart
,deflate
andtime
to latest supported versions.
- โ Removed unused dependency
-
v3.2 Changes
- Add
ResponseBody::from_reader_and_size
for constructing aResponseBody
from aReader
and an already known size such thatContent-Length
may be set on the response.
- Add
-
v3.1.1 Changes
- ๐ Replace all uses of deprecated
try!
with?
to suppress warnings that can leak out of macro contexts.
- ๐ Replace all uses of deprecated
-
v3.1.0 Changes
- โ Add
Server::poll_timeout()
for polling more efficiently. - โ Add
Server::stoppable()
for running a single, cancellable server thread. - โ Add
Server::join()
for finalising all in-flight requests before shutting down. - Prevent infinite loop on Websocket EOF
- โก๏ธ Update
tiny-http
to 0.8.1 containing fixes for:- HTTPS deadlock where one request holds a locked resource while another is attempting HTTPS negotiation
- Fix RUSTSEC-2020-0031
- Don't set
Transfer-Encoding: chunked
on 1xx or 204 responses (which can lead to clients hanging).
- โฌ๏ธ Bump minimum support Rust version to 1.41.1
- โ Add
-
v3.0.0 Changes
- โฌ๏ธ Bump minimum supported Rust version to 1.34.2
- embedded, exposed
url
version increased to 2.0 - ๐ Don't use deprecated
Error::description()
-
v2.2.0 Changes
- โฌ๏ธ Bump minimum supported Rust version to 1.20.0.
- ๐ฆ Expose that the
Request
body (accessible withrequest.data()
) has aSend
bound.