Releases: sebadob/redhac
v0.10.5
v0.10.4
v0.10.3
- lower default values for:
CACHE_RECONNECT_TIMEOUT_LOWER=500
CACHE_RECONNECT_TIMEOUT_UPPER=2000
CACHE_ELECTION_TIMEOUT=2
to have quicker recoveries in case of a broken pipe or other errors
- additionally reduced tracing output on the
info
level - the
insert
functions have been made more resilient during graceful leader switches and fail-overs
v0.10.2
v0.10.1
v0.10.0
v0.9.1
v0.9.0
The TLS setup has been changed a bit to make it more flexible.
The only mandatory values with CACHE_TLS=true
are now:
CACHE_TLS_SERVER_CERT
with new default: tls/redhac.cert-chain.pemCACHE_TLS_SERVER_KEY
with new default: tls/redhac.key.pem
While the following ones are now optional and do not have a default anymore:CACHE_TLS_CLIENT_CERT
CACHE_TLS_CLIENT_KEY
CACHE_TLS_CA_SERVER
CACHE_TLS_CA_CLIENT
This makes it possible to use redhac
with TLS without providing a private CA file, which you
would never need, if you certificates can be validated on system level anyway already. Also, the
mTLS setup is now optional with this change.
Additionally, the TLS certificate generation in the Readme and Docs have been updated and use
Nioca for this task now, which is a lot more comfortable.
The test TLS certificates are checked into git as well for a faster start and evaluation.
Do not use them in production!
v0.8.0
Features
This update introduces a small new feature.
It is now possible to use the redhac::quorum::QuorumHealthState
nicely externally.
The quorum
module has been exported as pub
and the QuorumHealthState
has been added as
a pub use
to the redhac main crate. This makes it possible for applications to actually use
the QuorumHealthState
and pass it around to functions without the need to always pass the
whole CacheConfig
each time.
This is especially useful if you want to have your CacheConfig.rx_health_state
in parts of
your application.
Changes
- make
redhac::quorum::QuorumHealthState
pub usable pub mod
of thequorum
crate (with some newpub(crate)
exceptions)- bump versions or core dependencies
- fix minimal versions for new dependencies