Skip to content

Commit eef6354

Browse files
committed
Fixes in migration guides.
1 parent d75666b commit eef6354

File tree

3 files changed

+24
-8
lines changed

3 files changed

+24
-8
lines changed

Migration-6_1-7.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,8 @@ Common changes:
88

99
Changes 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

1513
Changes 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.

Migration-6_1-8.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ some optional functionality:
3030
There is a [migration guide](Migration-5-6.md) between versions 5 and 6.0.x.
3131
There is a [migration guide](Migration-6-6_1.md) between versions 6.0.x and 6.1.x.
3232
There 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

0 commit comments

Comments
 (0)