mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
Update release notes.
This commit is contained in:
21
README.md
21
README.md
@@ -678,25 +678,32 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
|
||||
|
||||
### Boost 1.87
|
||||
|
||||
* ([Issue 205](https://github.com/boostorg/redis/issues/205))
|
||||
* (Issue [205](https://github.com/boostorg/redis/issues/205))
|
||||
Improves reaction time to disconnection by using `wait_for_one_error`
|
||||
instead of `wait_for_all`. The function `connection::async_run` was
|
||||
also changed to return EOF to the user when that error is received
|
||||
from the server. That is a breaking change.
|
||||
|
||||
* ([Issue 210](https://github.com/boostorg/redis/issues/210))
|
||||
* (Issue [210](https://github.com/boostorg/redis/issues/210))
|
||||
Fixes the adapter of empty nested reposponses.
|
||||
|
||||
* (Issues [211](https://github.com/boostorg/redis/issues/211) and [212](https://github.com/boostorg/redis/issues/212))
|
||||
Fixes the reconnect loop that would hang under certain conditions,
|
||||
see the linked issues for more details.
|
||||
|
||||
* (Issue [219](https://github.com/boostorg/redis/issues/219))
|
||||
Changes the default log level from `disabled` to `debug`.
|
||||
|
||||
### Boost 1.85
|
||||
|
||||
* ([Issue 170](https://github.com/boostorg/redis/issues/170))
|
||||
* (Issue [170](https://github.com/boostorg/redis/issues/170))
|
||||
Under load and on low-latency networks it is possible to start
|
||||
receiving responses before the write operation completed and while
|
||||
the request is still marked as staged and not written. This messes
|
||||
up with the heuristics that classifies responses as unsolicied or
|
||||
not.
|
||||
|
||||
* ([Issue 168](https://github.com/boostorg/redis/issues/168)).
|
||||
* (Issue [168](https://github.com/boostorg/redis/issues/168)).
|
||||
Provides a way of passing a custom SSL context to the connection.
|
||||
The design here differs from that of Boost.Beast and Boost.MySql
|
||||
since in Boost.Redis the connection owns the context instead of only
|
||||
@@ -704,16 +711,16 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
|
||||
apps need only one connection for their entire application, which
|
||||
makes the overhead of one ssl-context per connection negligible.
|
||||
|
||||
* ([Issue 181](https://github.com/boostorg/redis/issues/181)).
|
||||
* (Issue [181](https://github.com/boostorg/redis/issues/181)).
|
||||
See a detailed description of this bug in
|
||||
[this](https://github.com/boostorg/redis/issues/181#issuecomment-1913346983)
|
||||
comment.
|
||||
|
||||
* ([Issue 182](https://github.com/boostorg/redis/issues/182)).
|
||||
* (Issue [182](https://github.com/boostorg/redis/issues/182)).
|
||||
Sets `"default"` as the default value of `config::username`. This
|
||||
makes it simpler to use the `requirepass` configuration in Redis.
|
||||
|
||||
* ([Issue 189](https://github.com/boostorg/redis/issues/189)).
|
||||
* (Issue [189](https://github.com/boostorg/redis/issues/189)).
|
||||
Fixes narrowing convertion by using `std::size_t` instead of
|
||||
`std::uint64_t` for the sizes of bulks and aggregates. The code
|
||||
relies now on `std::from_chars` returning an error if a value
|
||||
|
||||
Reference in New Issue
Block a user