Skip to content

Commit 9f4939c

Browse files
emerkle826adutra
andauthored
JAVA-2396: Support Protocol V6 (#1546)
Co-authored-by: Alexandre Dutra <[email protected]>
1 parent b7e384e commit 9f4939c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

changelog/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
<!-- Note: contrary to 3.x, insert new entries *first* in their section -->
44

5-
### 4.12.0 (in progress)
5+
### 4.11.1
66

7+
- [bug] JAVA-2936: Support Protocol V6
78
- [bug] JAVA-2934: Handle empty non-final pages in ReactiveResultSetSubscription
89

910
### 4.11.0

core/src/main/java/com/datastax/oss/driver/internal/core/context/DefaultDriverContext.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
import com.datastax.oss.protocol.internal.PrimitiveCodec;
9292
import com.datastax.oss.protocol.internal.ProtocolV3ClientCodecs;
9393
import com.datastax.oss.protocol.internal.ProtocolV5ClientCodecs;
94+
import com.datastax.oss.protocol.internal.ProtocolV6ClientCodecs;
9495
import com.datastax.oss.protocol.internal.SegmentCodec;
9596
import edu.umd.cs.findbugs.annotations.NonNull;
9697
import edu.umd.cs.findbugs.annotations.Nullable;
@@ -435,6 +436,7 @@ protected FrameCodec<ByteBuf> buildFrameCodec() {
435436
new ProtocolV3ClientCodecs(),
436437
new ProtocolV4ClientCodecsForDse(),
437438
new ProtocolV5ClientCodecs(),
439+
new ProtocolV6ClientCodecs(),
438440
new DseProtocolV1ClientCodecs(),
439441
new DseProtocolV2ClientCodecs());
440442
}

0 commit comments

Comments
 (0)