Skip to content

Commit 7f9ac6f

Browse files
committed
Update release notes.
1 parent d68c458 commit 7f9ac6f

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

README.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -678,42 +678,49 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
678678

679679
### Boost 1.87
680680

681-
* ([Issue 205](https://github.com/boostorg/redis/issues/205))
681+
* (Issue [205](https://github.com/boostorg/redis/issues/205))
682682
Improves reaction time to disconnection by using `wait_for_one_error`
683683
instead of `wait_for_all`. The function `connection::async_run` was
684684
also changed to return EOF to the user when that error is received
685685
from the server. That is a breaking change.
686686

687-
* ([Issue 210](https://github.com/boostorg/redis/issues/210))
687+
* (Issue [210](https://github.com/boostorg/redis/issues/210))
688688
Fixes the adapter of empty nested reposponses.
689689

690+
* (Issues [211](https://github.com/boostorg/redis/issues/211) and [212](https://github.com/boostorg/redis/issues/212))
691+
Fixes the reconnect loop that would hang under certain conditions,
692+
see the linked issues for more details.
693+
694+
* (Issue [219](https://github.com/boostorg/redis/issues/219))
695+
Changes the default log level from `disabled` to `debug`.
696+
690697
### Boost 1.85
691698

692-
* ([Issue 170](https://github.com/boostorg/redis/issues/170))
699+
* (Issue [170](https://github.com/boostorg/redis/issues/170))
693700
Under load and on low-latency networks it is possible to start
694701
receiving responses before the write operation completed and while
695702
the request is still marked as staged and not written. This messes
696703
up with the heuristics that classifies responses as unsolicied or
697704
not.
698705

699-
* ([Issue 168](https://github.com/boostorg/redis/issues/168)).
706+
* (Issue [168](https://github.com/boostorg/redis/issues/168)).
700707
Provides a way of passing a custom SSL context to the connection.
701708
The design here differs from that of Boost.Beast and Boost.MySql
702709
since in Boost.Redis the connection owns the context instead of only
703710
storing a reference to a user provided one. This is ok so because
704711
apps need only one connection for their entire application, which
705712
makes the overhead of one ssl-context per connection negligible.
706713

707-
* ([Issue 181](https://github.com/boostorg/redis/issues/181)).
714+
* (Issue [181](https://github.com/boostorg/redis/issues/181)).
708715
See a detailed description of this bug in
709716
[this](https://github.com/boostorg/redis/issues/181#issuecomment-1913346983)
710717
comment.
711718

712-
* ([Issue 182](https://github.com/boostorg/redis/issues/182)).
719+
* (Issue [182](https://github.com/boostorg/redis/issues/182)).
713720
Sets `"default"` as the default value of `config::username`. This
714721
makes it simpler to use the `requirepass` configuration in Redis.
715722

716-
* ([Issue 189](https://github.com/boostorg/redis/issues/189)).
723+
* (Issue [189](https://github.com/boostorg/redis/issues/189)).
717724
Fixes narrowing convertion by using `std::size_t` instead of
718725
`std::uint64_t` for the sizes of bulks and aggregates. The code
719726
relies now on `std::from_chars` returning an error if a value

0 commit comments

Comments
 (0)