File tree Expand file tree Collapse file tree 3 files changed +24
-8
lines changed Expand file tree Collapse file tree 3 files changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,8 @@ Common changes:
88
99Changes in Scala API:
1010
11- 1 . API is fully effectful.
12- * Init methods return [ ` cats.effect.Resource ` ] ( https://typelevel.org/cats-effect/datatypes/resource.html ) for easy resource management.
13- * Declaration methods return ` F[Unit] ` .
11+ 1 . API is fully effectful; all methods return ` F[_] ` instance (including initialization and closing)
1412
1513Changes in Java API.:
1614
17- 1 . You can specify ` timeout ` in the connection builder. It's used during initialization and closing of the client.
18-
19- ---
20-
21- The client now uses circe 0.11, Monix 3.0 RC2, cats 1+ and cats-effect 1+.
15+ 1 . You can specify ` initTimeout ` in the connection builder.
Original file line number Diff line number Diff line change 1+ ## Migration from 6.1.x to 8.0.x
2+
3+ Common changes:
4+
5+ 1 . Additional declarations: ` bindQueue ` now has more consistent API. The only change is ` bindArguments ` were renamed to ` arguments ` .
6+ 1 . You are able to specify network recovery strategy.
7+ 1 . You are able to specify timeout log level.
8+
9+ Changes in Scala API:
10+
11+ 1 . API is fully effectful.
12+ * Init methods return [ ` cats.effect.Resource ` ] ( https://typelevel.org/cats-effect/datatypes/resource.html ) for easy resource management.
13+ * Declaration methods return ` F[Unit] ` .
14+
15+ Changes in Java API.:
16+
17+ 1 . You can specify ` timeout ` in the connection builder. It's used during initialization and closing of the client.
18+
19+ ---
20+
21+ The client now uses circe 0.11, Monix 3.0 RC2, cats 1+ and cats-effect 1+.
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ some optional functionality:
3030There is a [ migration guide] ( Migration-5-6.md ) between versions 5 and 6.0.x.
3131There is a [ migration guide] ( Migration-6-6_1.md ) between versions 6.0.x and 6.1.x.
3232There is a [ migration guide] ( Migration-6_1-7.md ) between versions 6.1.x and 7.0.x.
33+ There is a [ migration guide] ( Migration-6_1-8.md ) between versions 6.1.x and 8.0.x.
3334
3435## Usage
3536
You can’t perform that action at this time.
0 commit comments