@@ -678,42 +678,49 @@ https://lists.boost.org/Archives/boost/2023/01/253944.php.
678
678
679
679
### Boost 1.87
680
680
681
- * ([ Issue 205] ( https://github.com/boostorg/redis/issues/205 ) )
681
+ * (Issue [ 205] ( https://github.com/boostorg/redis/issues/205 ) )
682
682
Improves reaction time to disconnection by using ` wait_for_one_error `
683
683
instead of ` wait_for_all ` . The function ` connection::async_run ` was
684
684
also changed to return EOF to the user when that error is received
685
685
from the server. That is a breaking change.
686
686
687
- * ([ Issue 210] ( https://github.com/boostorg/redis/issues/210 ) )
687
+ * (Issue [ 210] ( https://github.com/boostorg/redis/issues/210 ) )
688
688
Fixes the adapter of empty nested reposponses.
689
689
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
+
690
697
### Boost 1.85
691
698
692
- * ([ Issue 170] ( https://github.com/boostorg/redis/issues/170 ) )
699
+ * (Issue [ 170] ( https://github.com/boostorg/redis/issues/170 ) )
693
700
Under load and on low-latency networks it is possible to start
694
701
receiving responses before the write operation completed and while
695
702
the request is still marked as staged and not written. This messes
696
703
up with the heuristics that classifies responses as unsolicied or
697
704
not.
698
705
699
- * ([ Issue 168] ( https://github.com/boostorg/redis/issues/168 ) ).
706
+ * (Issue [ 168] ( https://github.com/boostorg/redis/issues/168 ) ).
700
707
Provides a way of passing a custom SSL context to the connection.
701
708
The design here differs from that of Boost.Beast and Boost.MySql
702
709
since in Boost.Redis the connection owns the context instead of only
703
710
storing a reference to a user provided one. This is ok so because
704
711
apps need only one connection for their entire application, which
705
712
makes the overhead of one ssl-context per connection negligible.
706
713
707
- * ([ Issue 181] ( https://github.com/boostorg/redis/issues/181 ) ).
714
+ * (Issue [ 181] ( https://github.com/boostorg/redis/issues/181 ) ).
708
715
See a detailed description of this bug in
709
716
[ this] ( https://github.com/boostorg/redis/issues/181#issuecomment-1913346983 )
710
717
comment.
711
718
712
- * ([ Issue 182] ( https://github.com/boostorg/redis/issues/182 ) ).
719
+ * (Issue [ 182] ( https://github.com/boostorg/redis/issues/182 ) ).
713
720
Sets ` "default" ` as the default value of ` config::username ` . This
714
721
makes it simpler to use the ` requirepass ` configuration in Redis.
715
722
716
- * ([ Issue 189] ( https://github.com/boostorg/redis/issues/189 ) ).
723
+ * (Issue [ 189] ( https://github.com/boostorg/redis/issues/189 ) ).
717
724
Fixes narrowing convertion by using ` std::size_t ` instead of
718
725
` std::uint64_t ` for the sizes of bulks and aggregates. The code
719
726
relies now on ` std::from_chars ` returning an error if a value
0 commit comments