Releases: gotham-rs/gotham
Releases · gotham-rs/gotham
gotham 0.7.4
Crates
- gotham 0.7.4
Changelog
Notable changes:
- assets: Add support for configurable bufsize for
FileHandler
(#649)
Full Changelog: gotham-0.7.2...gotham-0.7.3
gotham 0.7.3
Crates
- gotham 0.7.3
Changelog
Notable changes:
Minor changes:
Full Changelog: gotham-0.7.2...gotham-0.7.3
gotham 0.7.2
Crates
- gotham 0.7.2
- gotham_middleware_diesel 0.5.1
- borrow-bag 1.1.1
Changelog
Notable changes:
Minor changes:
- Bump minimal versions of dependencies (#623)
- Update uuid requirement from 0.8 to 1.0 (#594)
- Update base64 requirement from 0.13 to 0.21 (#608)
Full Changelog: gotham-0.7.1...gotham-0.7.2
gotham_derive 0.7.1
gotham_middleware_jwt 0.8.0
Crates:
- gotham_middleware_jwt 0.8.0
Changelog:
- Update jsonwebtoken requirement from 7.0 to 8.0 (#586)
gotham_middleware_diesel 0.5.0
gotham 0.7.1
gotham 0.7.0
Crates:
- gotham 0.7.0
- gotham_derive 0.7.0
- gotham_middleware_jwt 0.7.0
- gotham_middleware_diesel 0.4.0
Starting with this version, directly importing the derive macros from the gotham_derive
crate is deprecated. Use gotham::prelude::*
instead.
Changelog:
- Send state to the session backend and allow it to return futures (#468)
- Re-export the mime crate and all gotham_derive macros
- Add AsyncTestServer (#552, #553, #555)
- Introduce new features session, http2 and testing (all enabled by default)
- Remove rustls feature from the default features
- Start functions now return a result (#568, #571)
- Allow access to the inner error of a HandlerError (#575)
- Add a prelude module that re-exports traits and derive macros (#567)
gotham 0.6.1
Crates:
- gotham_middleware_jwt 0.6.1
- gotham_middleware_diesel 0.3.1
Changelog:
- Rename JWTMiddleware to JwtMiddleware
- Update outdated documentation
gotham 0.6.0
Crates:
- gotham 0.6.0
- gotham_derive 0.6.0
- gotham_middleware_jwt 0.6.0
- gotham_middleware_diesel 0.3.0
Changelog:
- Update hyper to 0.14 and tokio to 1.0
- Update cookie to 0.15
- Implement
Into<Response>
forTestResponse
- Add
downcast_cause_ref
anddowncast_cause_mut
forHandlerError
- Add
add_route_matcher
toDelegateRouteBuilder
- Add
State::from_request
to allow using gotham with a custom hyper service - Fix spurious Not Connected errors (#461)
- Remove
PathExtractor
andQueryStringExtractor
derive macros, they've been replaced byStateData
andStaticResponseExtender
a few releases ago